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γ¨γγ«γγΌγγγοΌγ€&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