Merge pull request #2628 from TerraFirmaGreg-Team/dev

Release: 0.11.16
This commit is contained in:
Xikaro 2026-01-05 19:26:04 +05:00 committed by GitHub
commit ac330fe9d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
359 changed files with 7561 additions and 3089 deletions

View file

@ -327,19 +327,23 @@ 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
- name: 📝 Cache Pakku
uses: actions/cache@v5.0.1
id: cache
with:
@ -347,7 +351,7 @@ jobs:
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,7 +360,7 @@ 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
@ -368,54 +372,81 @@ jobs:
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
- 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
# 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
- 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
- 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]
@ -449,6 +480,9 @@ 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
@ -476,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 }}

17
.gitignore vendored
View file

@ -23,6 +23,10 @@ build/
!.pakku/**/*
!pakku.jar
# Docker
/.github/docker/data
/.github/docker/backups
# Configs
config/jei/world/
config/gregtech/terminal/
@ -62,9 +66,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
@ -93,6 +99,9 @@ defaultconfigs/ftbranks/players.snbt
/gtceu/prospection_cache
/data
/ESM
/schematics
/scripts
/gtceu
# Client data
bansoukou
@ -128,7 +137,3 @@ libEffekseerNativeForJava.so
# .pakku/server-overrides/scripts
# .pakku/server-overrides/mods
# .pakku/server-overrides/user_jvm_args.txt

View file

@ -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:

View file

@ -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

View file

@ -5,6 +5,55 @@
### 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

View file

@ -14,7 +14,7 @@
* 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": "",
// Disables oxygen damage.

View file

@ -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"]

View file

@ -224,11 +224,11 @@
"venus": {
"overall": 1,
"cricket": 1,
"cricket-night": 1,
"cricket-night": 0.7,
"cicadas": 1,
"cicadas-desert": 1,
"cicadas-night": 1,
"cricket-warm-night": 1
"cicadas-night": 0.7,
"cricket-warm-night": 0.7
},
"warden": {
"overall": 1,

View file

@ -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

View file

@ -1263,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}"

View file

@ -64,6 +64,7 @@
{
id: "2151F8AA263F1D6E"
linked_quest: "6ECAD339C91EF194"
shape: "heart"
x: 4.0d
y: -5.5d
}
@ -1778,6 +1779,7 @@
dependencies: ["3A2E442E4D84C891"]
description: ["{quests.extreme_voltage.cracker.desc}"]
id: "36B9B5024356C53C"
shape: "octagon"
size: 1.5d
subtitle: "{quests.extreme_voltage.cracker.subtitle}"
tasks: [{
@ -2138,7 +2140,7 @@
id: "4AD96212525517CD"
rewards: [{
id: "1F7C92A8EF2F84A0"
item: "gtceu:rad_away_pill"
item: "tfg:rad_away_pill"
type: "item"
}]
shape: "diamond"

View file

@ -241,6 +241,7 @@
description: ["{quests.gregtech_energy.transformer.desc}"]
icon: "tfg:active_power_transformer"
id: "6ECAD339C91EF194"
optional: true
subtitle: "{quests.gregtech_energy.transformer.subtitle}"
tasks: [
{

View file

@ -188,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"
@ -255,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: [
{
@ -285,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"
@ -441,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"
@ -917,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"
@ -1294,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: [
{
@ -1358,7 +1359,7 @@
]
title: "{quests.high_voltage.gun.title}"
x: 10.0d
y: -4.5d
y: -4.0d
}
{
dependencies: ["00A2566109144D7F"]
@ -1619,7 +1620,7 @@
]
title: "{quests.medium_voltage.mv_long_pipe.title}"
x: 5.0d
y: -8.0d
y: -7.5d
}
{
dependencies: ["7FA0ACB7F161F378"]
@ -1658,6 +1659,7 @@
"{quests.gregtech_energy.reformate_gas.desc.2}"
]
id: "3E4E63D5B8CB6860"
optional: true
shape: "heart"
subtitle: "{quests.gregtech_energy.reformate_gas.subtitle}"
tasks: [{

View file

@ -7,20 +7,24 @@
id: "7D50771C3FE033D7"
order_index: 0
quest_links: [
{
id: "13EDC87034A162DE"
linked_quest: "2CDB9778C7A30044"
shape: "octagon"
size: 2.0d
x: 5.5d
y: 8.5d
}
{
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: [
{
@ -108,7 +112,7 @@
y: -4.5d
}
{
dependencies: ["2CDB9778C7A30044"]
dependencies: ["7FA1525D681C4B4A"]
description: [
"{quests.low_voltage.lv_steam_turbine.desc.1}"
"{@pagebreak}"
@ -129,7 +133,7 @@
y: 9.5d
}
{
dependencies: ["2CDB9778C7A30044"]
dependencies: ["7FA1525D681C4B4A"]
description: ["{quests.low_voltage.lv_amp_explanation.desc}"]
id: "7B0FF43022F6C2EC"
optional: true
@ -191,7 +195,7 @@
]
title: "{quests.low_voltage.lv_battery_preparation.title}"
x: 7.5d
y: 0.0d
y: -0.5d
}
{
dependencies: [
@ -338,11 +342,15 @@
type: "item"
}]
title: "{quests.low_voltage.lv_polariser.title}"
x: 5.5d
y: 2.5d
x: -1.0d
y: -0.5d
}
{
dependencies: ["6E186F9C57155BFA"]
dependencies: [
"6E186F9C57155BFA"
"46FA9DD4755A5548"
]
dependency_requirement: "one_completed"
description: [
"{quests.low_voltage.lbb.desc.1}"
"{@pagebreak}"
@ -474,7 +482,7 @@
}]
title: "{quests.low_voltage.lv_battery.title}"
x: 7.5d
y: 1.5d
y: 1.0d
}
{
dependencies: ["3E6DC423FE4A99F7"]
@ -504,7 +512,7 @@
}]
title: "{quests.low_voltage.lv_battery_buffer_4x.title}"
x: 7.5d
y: 3.0d
y: 2.5d
}
{
dependencies: ["1646BF9194100E57"]
@ -594,6 +602,7 @@
"02FDECC931B5E8EF"
]
description: ["{quests.low_voltage.lv_ore_prospector.desc}"]
icon: "gtceu:prospector.lv"
id: "2E36E5755B2F551C"
optional: true
shape: "heart"
@ -612,7 +621,7 @@
}]
title: "{quests.low_voltage.lv_ore_prospector.title}"
x: 9.0d
y: 1.5d
y: 1.0d
}
{
dependencies: [
@ -1217,7 +1226,7 @@
}]
title: "{quests.low_voltage.lv_turbo_charge.title}"
x: 9.0d
y: 0.0d
y: -0.5d
}
{
dependencies: ["22510C5F2386B453"]
@ -1378,10 +1387,10 @@
type: "item"
}]
x: 9.0d
y: 3.0d
y: 2.5d
}
{
dependencies: ["2CDB9778C7A30044"]
dependencies: ["7FA1525D681C4B4A"]
description: ["{quests.steam_age.alternator.desc.1}"]
id: "2DC24661CAD557B0"
optional: true
@ -1496,9 +1505,9 @@
}
{
dependencies: [
"2CDB9778C7A30044"
"522E08B1592136D5"
"36FED1B6CFF7C60A"
"7FA1525D681C4B4A"
]
dependency_requirement: "one_completed"
description: ["{quests.low_voltage.lv_combuston_gen.desc}"]
@ -1516,10 +1525,10 @@
y: 11.0d
}
{
dependencies: ["2CDB9778C7A30044"]
dependencies: ["22510C5F2386B453"]
description: [
"{quests.low_voltage.link_chapter.desc}:"
"{ \"text\": \"▶▶▶▶▶▶▶\", \"underlined\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"2CDB9778C7A30044\" } }"
"{ \"text\": \"▶▶▶▶▶▶▶\", \"underlined\": \"true\", \"clickEvent\": { \"action\": \"change_page\", \"value\": \"06B2E38F7DCF2678\" } }"
]
icon: "createdeco:decal_electrical"
id: "7FA1525D681C4B4A"
@ -1533,7 +1542,7 @@
}]
title: "{quests.low_voltage.link_chapter.title}"
x: 5.5d
y: 6.5d
y: 8.5d
}
{
dependencies: ["5F3063C539C9CBBF"]
@ -1660,8 +1669,8 @@
}
{
dependencies: [
"2CDB9778C7A30044"
"0404FBCC34011053"
"7FA1525D681C4B4A"
]
description: ["{quests.low_voltage.lv_gas_turbine.desc}"]
id: "1AD51E2B66EA7F67"
@ -1744,6 +1753,28 @@
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}"

View file

@ -318,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: [
{
@ -1116,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: [
@ -1561,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}"
@ -1650,7 +1649,6 @@
description: ["{quests.medium_voltage.reformate_gas.desc}"]
id: "10292F9B1DD743EB"
optional: true
shape: "heart"
subtitle: "{quests.medium_voltage.reformate_gas.subtitle}"
tasks: [{
id: "717ABF30F29D12CD"
@ -1670,7 +1668,6 @@
]
id: "54A255C1C6E33165"
optional: true
shape: "heart"
subtitle: "{quests.medium_voltage.coal_tower.subtitle}"
tasks: [{
id: "348CD63DC537BB9A"
@ -1692,7 +1689,6 @@
icon: "gtceu:diesel_bucket"
id: "45769156F4253C86"
optional: true
shape: "heart"
size: 1.0d
subtitle: "{quests.medium_voltage.mv_diesel.subtitle}"
tasks: [{

View file

@ -19,7 +19,7 @@
image: "ftblibrary:icons/star"
rotation: 0.0d
width: 2.0d
x: -0.5d
x: -2.5d
y: -6.5d
}
{
@ -484,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
@ -496,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}"
@ -507,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
@ -519,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}"

View file

@ -26,14 +26,14 @@
id: "0CE64B9914191C56"
linked_quest: "6FFD4990FF07078A"
shape: "diamond"
x: -11.5d
y: 9.5d
x: -9.5d
y: 11.5d
}
{
id: "23A27702FF816291"
linked_quest: "6903C72A254A7B08"
x: -14.5d
y: 6.0d
x: -12.5d
y: 8.0d
}
{
id: "1F1E7097C015BE33"
@ -47,8 +47,8 @@
id: "7C03FE015586C652"
linked_quest: "55213ACBF5F5D398"
shape: "heart"
x: -15.0d
y: 13.0d
x: -12.0d
y: 16.0d
}
{
id: "65E0B13E245D2E5F"
@ -60,15 +60,22 @@
id: "68F5E521F2DB0A86"
linked_quest: "0404FBCC34011053"
shape: "heart"
x: -14.0d
y: 13.0d
x: -13.0d
y: 16.0d
}
{
id: "38ECA3FEC2B6A6A6"
linked_quest: "533F32CCAD9D5B51"
shape: "heart"
x: -19.5d
y: 11.5d
x: -18.5d
y: 12.5d
}
{
id: "61DCD50394B7FF0E"
linked_quest: "33263404ED38C6D2"
shape: "heart"
x: -22.5d
y: 4.0d
}
]
quests: [
@ -251,7 +258,8 @@
"{quests.steam_age.boilers.desc.2}"
]
id: "46FA9DD4755A5548"
size: 1.5d
shape: "octagon"
size: 2.0d
subtitle: "{quests.steam_age.boilers.subtitle}"
tasks: [{
id: "07FFA9C76EE39D36"
@ -267,7 +275,7 @@
}]
title: "{quests.steam_age.boilers.title}"
x: -19.5d
y: 7.5d
y: 6.75d
}
{
dependencies: ["32046292AA5B0E30"]
@ -436,8 +444,8 @@
type: "item"
}]
title: "{quests.steam_age.crushing_wheel.title}"
x: -21.5d
y: 11.5d
x: -20.5d
y: 12.5d
}
{
dependencies: ["7DB7AB5349218605"]
@ -460,10 +468,16 @@
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: -20.5d
y: 9.5d
x: -19.5d
y: 10.5d
}
{
dependencies: [
@ -483,7 +497,7 @@
}]
title: "{quests.steam_age.electron_tube.title}"
x: -19.5d
y: 14.5d
y: 15.0d
}
{
dependencies: ["2C35D4E01AEC02AA"]
@ -509,14 +523,13 @@
}
]
title: "{quests.steam_age.miner.title}"
x: -12.0d
y: 15.0d
x: -10.0d
y: 17.0d
}
{
dependencies: [
"22E604DB7E7E87FB"
"09E12A399EE0A628"
"1912758422EEB006"
]
dependency_requirement: "one_completed"
description: ["{quests.steam_age.glass_tube.desc}"]
@ -528,8 +541,8 @@
type: "item"
}]
title: "{quests.steam_age.glass_tube.title}"
x: -25.0d
y: 14.5d
x: -23.5d
y: 15.0d
}
{
dependencies: ["033E74BC588E7EAD"]
@ -551,8 +564,8 @@
}
]
title: "{quests.steam_age.deployers.title}"
x: -16.5d
y: 12.0d
x: -15.5d
y: 15.0d
}
{
dependencies: ["1912758422EEB006"]
@ -574,8 +587,8 @@
}
]
title: "{quests.steam_age.molding.title}"
x: -25.0d
y: 9.5d
x: -23.5d
y: 12.5d
}
{
dependencies: ["033E74BC588E7EAD"]
@ -589,22 +602,22 @@
type: "item"
}]
title: "{quests.steam_age.mech_crafter.title}"
x: -20.5d
y: 12.0d
x: -19.5d
y: 12.5d
}
{
dependencies: ["46FA9DD4755A5548"]
description: ["{quests.steam_age.steam_bloomery.desc}"]
icon: "gtceu:steam_bloomery"
icon: "tfg:steam_bloomery"
id: "0805CCABC8E7F6CF"
optional: true
shape: "heart"
size: 1.5d
size: 1.0d
subtitle: "{quests.steam_age.steam_bloomery.subtitle}"
tasks: [
{
id: "72D748120CACABE2"
item: "gtceu:steam_bloomery"
item: "tfg:steam_bloomery"
type: "item"
}
{
@ -630,8 +643,8 @@
}
]
title: "{quests.steam_age.steam_bloomery.title}"
x: -22.5d
y: 4.0d
x: -16.5d
y: 5.5d
}
{
dependencies: ["05CC8C5E63CD1DB8"]
@ -684,8 +697,8 @@
type: "item"
}]
title: "{quests.steam_age.circuit_boards.title}"
x: -11.5d
y: 8.5d
x: -9.5d
y: 10.5d
}
{
dependencies: ["46FA9DD4755A5548"]
@ -699,8 +712,8 @@
type: "item"
}]
title: "{quests.steam_age.compressor.title}"
x: -19.5d
y: 9.5d
x: -16.5d
y: 8.5d
}
{
dependencies: ["46FA9DD4755A5548"]
@ -716,7 +729,7 @@
}]
title: "{quests.steam_age.alloy_smelter.title}"
x: -22.5d
y: 9.5d
y: 8.5d
}
{
dependencies: [
@ -735,7 +748,7 @@
}]
title: "{quests.steam_age.forge_hammer.title}"
x: -22.5d
y: 8.0d
y: 6.5d
}
{
dependencies: [
@ -753,8 +766,8 @@
type: "item"
}]
title: "{quests.steam_age.vacuum_tubes.title}"
x: -10.0d
y: 12.0d
x: -8.0d
y: 14.0d
}
{
dependencies: ["7DB7AB5349218605"]
@ -768,7 +781,7 @@
}]
title: "{quests.steam_age.wood_plank.title}"
x: -16.5d
y: 9.5d
y: 11.5d
}
{
dependencies: ["46FA9DD4755A5548"]
@ -785,7 +798,7 @@
}]
title: "{quests.steam_age.extractor.title}"
x: -16.5d
y: 7.5d
y: 6.5d
}
{
dependencies: [
@ -804,8 +817,8 @@
type: "item"
}]
title: "{quests.steam_age.resistors.title}"
x: -7.0d
y: 9.5d
x: -5.0d
y: 11.5d
}
{
dependencies: ["2C35D4E01AEC02AA"]
@ -820,8 +833,8 @@
type: "item"
}]
title: "{quests.steam_age.coiling_machine.title}"
x: -7.0d
y: 14.0d
x: -5.0d
y: 16.0d
}
{
dependencies: ["2C35D4E01AEC02AA"]
@ -836,8 +849,8 @@
type: "item"
}]
title: "{quests.steam_age.steel_mixer.title}"
x: -7.0d
y: 12.5d
x: -5.0d
y: 14.5d
}
{
dependencies: ["2C35D4E01AEC02AA"]
@ -851,8 +864,8 @@
type: "item"
}]
title: "{quests.steam_age.lathe.title}"
x: -8.0d
y: 15.0d
x: -6.0d
y: 17.0d
}
{
dependencies: [
@ -871,8 +884,8 @@
type: "item"
}]
title: "{quests.steam_age.centrifuge.title}"
x: -20.5d
y: 11.0d
x: -19.5d
y: 11.5d
}
{
dependencies: [
@ -889,8 +902,8 @@
type: "item"
}]
title: "{quests.steam_age.vibrating_table.title}"
x: -10.0d
y: 15.0d
x: -8.0d
y: 17.0d
}
{
dependencies: ["2C35D4E01AEC02AA"]
@ -909,8 +922,8 @@
type: "item"
}]
title: "{quests.steam_age.rolling_mill.title}"
x: -7.0d
y: 11.0d
x: -5.0d
y: 13.0d
}
{
dependencies: ["2C35D4E01AEC02AA"]
@ -924,8 +937,8 @@
type: "item"
}]
title: "{quests.steam_age.steel_saw.title}"
x: -9.0d
y: 15.0d
x: -7.0d
y: 17.0d
}
{
dependencies: ["2C35D4E01AEC02AA"]
@ -939,8 +952,8 @@
type: "item"
}]
title: "{quests.steam_age.curving_press.title}"
x: -11.0d
y: 15.0d
x: -9.0d
y: 17.0d
}
{
dependencies: [
@ -956,7 +969,7 @@
type: "item"
}]
title: "{quests.steam_age.steam_furnace.title}"
x: -16.5d
x: -22.5d
y: 5.5d
}
{
@ -1007,14 +1020,15 @@
}
]
title: "{quests.steam_age.steam_oven.title}"
x: -16.5d
y: 4.0d
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"
@ -1022,8 +1036,8 @@
type: "item"
}]
title: "{quests.steam_age.rock_crusher.title}"
x: -22.5d
y: 7.0d
x: -16.5d
y: 7.5d
}
{
dependencies: [
@ -1060,7 +1074,7 @@
]
title: "{quests.steam_age.red_alloy.title}"
x: -22.5d
y: 13.5d
y: 12.5d
}
{
dependencies: ["51CBF7378FFAD514"]
@ -1149,8 +1163,8 @@
type: "item"
}]
title: "{quests.steam_age.potin.title}"
x: -5.5d
y: 12.5d
x: -3.5d
y: 14.5d
}
{
dependencies: ["6F1BC99BE641B671"]
@ -1206,8 +1220,8 @@
}
]
title: "{quests.steam_age.trains.title}"
x: -16.5d
y: 13.0d
x: -15.5d
y: 16.0d
}
{
dependencies: ["6AA07588374B59AB"]
@ -1220,8 +1234,8 @@
type: "item"
}]
title: "{quests.steam_age.vacuum_chamber.title}"
x: -14.5d
y: 12.0d
x: -12.5d
y: 15.0d
}
{
description: ["{quests.metal_age.black_steel_goodies.desc}"]
@ -1423,8 +1437,8 @@
type: "item"
}]
title: "{quests.steam_age.lv_circuit.title}"
x: -10.0d
y: 6.0d
x: -8.0d
y: 8.0d
}
{
description: ["{quests.steam_age.paper.desc}"]
@ -1438,8 +1452,8 @@
type: "item"
}]
title: "{quests.steam_age.paper.title}"
x: -5.5d
y: 9.5d
x: -3.5d
y: 11.5d
}
{
description: ["{quests.metal_age.bronze_goodies.desc}"]
@ -1520,6 +1534,7 @@
description: ["{quests.steam_age.steam_macerator.desc}"]
id: "6CF7DCC996BACBFA"
optional: true
shape: "heart"
subtitle: "{quests.steam_age.steam_macerator.subtitle}"
tasks: [{
id: "19146D7510558652"
@ -1528,7 +1543,7 @@
}]
title: "{quests.steam_age.steam_macerator.title}"
x: -22.5d
y: 6.0d
y: 7.5d
}
{
dependencies: [
@ -1537,18 +1552,42 @@
]
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"
}]
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: -25.0d
y: 6.0d
x: -24.5d
y: 7.5d
}
{
dependencies: ["32046292AA5B0E30"]
@ -1579,8 +1618,8 @@
type: "item"
}]
title: "{quests.steam_age.resin_boards.title}"
x: -13.5d
y: 9.5d
x: -11.5d
y: 11.5d
}
{
dependencies: ["6E8CEE02CB5B678B"]
@ -1630,7 +1669,7 @@
}]
title: "{quests.steam_age.packager.title}"
x: -19.5d
y: 17.0d
y: 17.5d
}
{
dependencies: [
@ -1722,8 +1761,8 @@
type: "item"
}]
title: "{quests.steam_age.supers.title}"
x: -12.0d
y: 13.0d
x: -10.5d
y: 13.5d
}
{
dependencies: ["0D0D461AE3A3F7BF"]
@ -1755,6 +1794,156 @@
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}"

View file

@ -2746,6 +2746,7 @@
type: "item"
}
{
disable_toast: true
id: "2BF805FFBA137197"
item: {
Count: 1

View file

@ -1,14 +1,29 @@
enabled: true
debugMode: false
coloredAtoms: true
useMaterialColors: false
onlyShowOnShift: true
defaultColor: §e
color:
colors: true
scale: 20
useMaterialColors: false
defaultColor: §e
minimumBrightness: 0.1
molecule:
showMolecules: true
moleculeScale: 20
alloy:
showAlloys: true
pieChartRadius: 32
recursive: true
partsByMass: false
debugMode: false

View file

@ -8,5 +8,7 @@
"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К"
"block.ae2.256k_crafting_storage": "Хранилище для изготовления на 256К",
"item.ae2.pattern_box": "Коробка для шаблонов",
"block.ae2.controller": "МЭ контроллер"
}

View file

@ -10,7 +10,8 @@
"geysers",
"salt_flats",
"sulfuric_ravine",
"fumaroles"
"fumaroles",
"jagged_tablelands"
],
"sounds": [
{

View file

@ -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"
}

View file

@ -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": "瓦片几丁质墙"
}

View file

@ -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" }
]
}
}

View file

@ -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": "" }
}
}

View file

@ -87,6 +87,7 @@
"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",
@ -98,7 +99,7 @@
"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",

View file

@ -87,6 +87,7 @@
"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": "天然熔灰岩",
@ -98,7 +99,7 @@
"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": "幽蓝蕨",

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/shadow_plant"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_inverted",
"textures": {
"cross": "betterend:block/shadow_plant"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/shadow_plant_potted"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_inverted",
"textures": {
"cross": "betterend:block/shadow_plant_potted"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_inverted",
"textures": {
"cross": "betterend:block/tail_moss"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cross",
"textures": {
"cross": "betterend:block/tail_moss"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_no_distortion",
"textures": {
"texture": "betterend:block/twisted_vine_bottom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_no_distortion_inverted",
"textures": {
"texture": "betterend:block/twisted_vine_bottom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_no_distortion",
"textures": {
"texture": "betterend:block/twisted_vine"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "betterend:block/cross_no_distortion_inverted",
"textures": {
"texture": "betterend:block/twisted_vine"
}
}

View file

@ -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" }
}
}
]
}

View file

@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "betterend:block/shadow_plant"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 328 B

After

Width:  |  Height:  |  Size: 368 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 B

After

Width:  |  Height:  |  Size: 299 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 370 B

Before After
Before After

View file

@ -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",

View file

@ -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": "灰烬末影人:低鸣",

View file

@ -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": "МЭ Сверхразмерный интерфейс"
}

View file

@ -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": "垂直"
}

View file

@ -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",
@ -66,7 +70,7 @@
"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_bloomery_4": "§7Can process up to 8 recipes at once, which changes how much Steam is required.§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",
@ -143,6 +147,7 @@
"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",
@ -188,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",

View file

@ -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 Surface Bud",
"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",
@ -66,7 +66,7 @@
"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_bloomery_4": "§7Can process up to 8 recipes at once, which changes how much Steam is required.§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": "極小の木のパルプ",
@ -188,6 +188,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": "重質オストラム粉塵",

View file

@ -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": "§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",
@ -166,6 +166,9 @@
"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",

View file

@ -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",
@ -66,7 +66,7 @@
"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_bloomery_4": "§7Може обробляти до 8 рецептів одночасно, що змінює кількість необхідної пари.§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": "Маленька купа хвойної целюлози",
@ -179,6 +179,9 @@
"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": "Легке Випаровування Острому",

View file

@ -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",
@ -66,7 +70,7 @@
"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_bloomery_4": "§7支持最多8组配方并行处理相应调整蒸汽需求。§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": "小撮软木浆",
@ -143,6 +147,7 @@
"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 钛合金火箭合金",
@ -188,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": "致密紫金蒸气",

View file

@ -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": "Заказчик пытается экспортировать результаты обработки в систему. Если запросчик находится в этом статусе долгое время, то для экспорта нет свободного места."
}

View file

@ -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"
}

View file

@ -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",
@ -99,5 +99,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"
}

View file

@ -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": "平滑赤铁矿砂岩楼梯",
@ -99,5 +99,7 @@
"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时被毒死了"
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "minecraft:block/red_sandstone_bottom"
}
}

View file

@ -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"
}
}

View file

@ -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"
}
}

View file

@ -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"
}
}

View file

@ -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"
}
}

View file

@ -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"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/wall_inventory",
"textures": {
"wall": "minecraft:block/red_sandstone_bottom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_wall_post",
"textures": {
"wall": "minecraft:block/red_sandstone_bottom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_wall_side",
"textures": {
"wall": "minecraft:block/red_sandstone_bottom"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/template_wall_side_tall",
"textures": {
"wall": "minecraft:block/red_sandstone_bottom"
}
}

View file

@ -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"
}

View file

@ -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": "沙虫躯体"
}

View file

@ -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"
}

View file

@ -354,12 +354,8 @@
"block.species.wicked_candle": "邪火蜡烛",
"effect.species.tanked": "厚躯",
"effect.species.tanked.description": "邪火效果。随着等级提升,赋予更多生命值、更多伤害,并降低移动速度。使受影响的实体从外观上看起来更宽。",
"effect.species.snatched": "夺躯",
"effect.species.snatched.description": "邪火效果。根据等级提升移动速度。使受影响的实体从外观上看起来更高更瘦。",
"effect.species.combustion": "燃躯",
"effect.species.combustion.description": "邪火效果。使受影响的实体在死亡时爆炸。爆炸范围和方块破坏强度随等级增加。",
"effect.species.iron_will": "坚毅",
"effect.species.iron_will.description": "邪火效果。免疫一切击退。",
"item.species.wicked_wax": "邪火蜡",
"item.species.monster_meal": "混沌食品",
"item.species.monster_meal.desc.effect": "使食用的实体获得一个随机的邪火效果",
@ -374,8 +370,6 @@
"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.snatched": "夺躯 II (0:45)",
"item.species.wicked_treat.desc.iron_will": "坚毅 (0:45)",
"item.species.wicked_treat.desc.regeneration": "生命恢复 (0:45)",
"item.species.wicked_treat.desc.strength": "力量 (0:20)",
"subtitles.entity.species.wicked.death": "邪火法师:死亡",
@ -507,11 +501,16 @@
"subtitles.item.species.wicked_swapper.throw": "换位珠:掷空",
"subtitles.item.species.wicked_swapper.fail": "换位珠:落地",
"subtitles.item.species.wicked_swapper.teleport": "换位珠:换位",
"advancements.species.wicked_mask_wither.description": "使用伪装工具包伪装成凋零",
"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": "硫力怕:扎根"
"subtitles.entity.species.trooper.plant": "硫力怕:扎根",
"effect.species.iron_will": "击退抗性",
"effect.species.iron_will.description": "免疫一切击退。",
"effect.species.snatched": "超级迅捷",
"effect.species.snatched.description": "根据等级提升移动速度。使受影响的实体从外观上看起来更高更瘦。"
}

View file

@ -27,6 +27,7 @@
"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",

View file

@ -27,6 +27,7 @@
"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": "钙铁榴石",

View file

@ -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$()"
}
]
}

View file

@ -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
}
}

View file

@ -44,7 +44,7 @@
},
{
"Type": "patchouli:text",
"text": "$(li)Sphalerite: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Spodumene: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Stibnite: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Talc: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)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)Thorium: $(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)$()",
"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"
},
{

View file

@ -1107,7 +1107,7 @@
},
{
"Type": "patchouli:multiblock",
"name": "Thorium",
"name": "Thorianite",
"multiblock": {
"mapping": {
"0": "#forge:ores/thorium"
@ -1122,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"
},
{
@ -3915,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"
},
{
@ -3935,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"
},
{

View file

@ -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"
}
],

View file

@ -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"
},
{

View file

@ -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"
}
],

View file

@ -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"
},
{

View file

@ -44,7 +44,7 @@
},
{
"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)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)$()",
"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"
},
{

View file

@ -799,7 +799,7 @@
},
{
"Type": "patchouli:multiblock",
"name": "Thorium",
"name": "Thorianite",
"multiblock": {
"mapping": {
"0": "#forge:ores/thorium"
@ -814,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"
},
{
@ -2744,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"
},
{
@ -2764,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"
},
{

View file

@ -1,7 +1,7 @@
{
"__credits__": "This page was automatically generated by OresToFieldGuide.",
"name": "Venus Ore Index",
"icon": "gtceu:sulfur_dust",
"icon": "vintageimprovements:sulfur",
"category": "tfc:tfg_ores",
"read_by_default": true,
"secret": false,
@ -14,7 +14,7 @@
},
{
"Type": "patchouli:text",
"text": "$(li)Lepidolite: $(l:tfg_ores/venus_vein_index#venus_manual_salt)15%$(/l)$()$(li)Pyrite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)35%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)20%$(/l)$()$(li)Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)50%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()$(li)Spodumene: $(l:tfg_ores/venus_vein_index#venus_manual_salt)15%$(/l)$()$(li)Sulfur: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)50%$(/l)$()",
"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"
}
],

View file

@ -19,7 +19,7 @@
},
{
"Type": "patchouli:text",
"text": "$(thing)Rarity$(): 100$(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.",
"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"
@ -41,7 +41,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Sodium, Chlorine$(br)$(thing)Formula$(): NaCl",
"text": "$(thing)Percentage$(): 80%$(br)$(thing)Source of$(): Sodium, Chlorine$(br)$(thing)Formula$(): NaCl",
"type": "patchouli:multiblock"
},
{
@ -61,7 +61,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Potassium, Chlorine$(br)$(thing)Formula$(): KCl",
"text": "$(thing)Percentage$(): 10%$(br)$(thing)Source of$(): Potassium, Chlorine$(br)$(thing)Formula$(): KCl",
"type": "patchouli:multiblock"
},
{
@ -81,7 +81,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Al₄F₂O₁₀",
"text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Al₄F₂O₁₀",
"type": "patchouli:multiblock"
},
{
@ -101,7 +101,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSi₂O₆",
"text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSi₂O₆",
"type": "patchouli:multiblock"
},
{
@ -111,7 +111,7 @@
},
{
"Type": "patchouli:text",
"text": "$(thing)Rarity$(): 100$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 40 — 65$(br)$(thing)Size$(): 15$(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.",
"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"
@ -133,7 +133,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S",
"text": "$(thing)Percentage$(): 80%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S",
"type": "patchouli:multiblock"
},
{
@ -153,7 +153,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeS₂",
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeS₂",
"type": "patchouli:multiblock"
},
{
@ -173,7 +173,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS",
"text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS",
"type": "patchouli:multiblock"
}
],

View file

@ -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."
}
]
}

View file

@ -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",

View file

@ -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,

View file

@ -44,7 +44,7 @@
},
{
"Type": "patchouli:text",
"text": "$(li)Sphalerite: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Spodumene: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Stibnite: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Talc: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)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)Thorium: $(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)$()",
"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"
},
{

View file

@ -1107,7 +1107,7 @@
},
{
"Type": "patchouli:multiblock",
"name": "Thorium",
"name": "Thorianite",
"multiblock": {
"mapping": {
"0": "#forge:ores/thorium"
@ -1122,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"
},
{
@ -3915,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"
},
{
@ -3935,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"
},
{

View file

@ -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"
}
],

View file

@ -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"
},
{

View file

@ -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"
}
],

View file

@ -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"
},
{

View file

@ -44,7 +44,7 @@
},
{
"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)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)$()",
"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"
},
{

View file

@ -799,7 +799,7 @@
},
{
"Type": "patchouli:multiblock",
"name": "Thorium",
"name": "Thorianite",
"multiblock": {
"mapping": {
"0": "#forge:ores/thorium"
@ -814,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"
},
{
@ -2744,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"
},
{
@ -2764,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"
},
{

View file

@ -1,7 +1,7 @@
{
"__credits__": "This page was automatically generated by OresToFieldGuide.",
"name": "Venus Ore Index",
"icon": "gtceu:sulfur_dust",
"icon": "vintageimprovements:sulfur",
"category": "tfc:tfg_ores",
"read_by_default": true,
"secret": false,
@ -14,7 +14,7 @@
},
{
"Type": "patchouli:text",
"text": "$(li)Lepidolite: $(l:tfg_ores/venus_vein_index#venus_manual_salt)15%$(/l)$()$(li)Pyrite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)35%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)20%$(/l)$()$(li)Salt: $(l:tfg_ores/venus_vein_index#venus_manual_salt)50%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)15%$(/l)$()$(li)Spodumene: $(l:tfg_ores/venus_vein_index#venus_manual_salt)15%$(/l)$()$(li)Sulfur: $(l:tfg_ores/venus_vein_index#venus_manual_sulfur)50%$(/l)$()",
"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"
}
],

View file

@ -19,7 +19,7 @@
},
{
"Type": "patchouli:text",
"text": "$(thing)Rarity$(): 100$(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.",
"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"
@ -41,7 +41,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Sodium, Chlorine$(br)$(thing)Formula$(): NaCl",
"text": "$(thing)Percentage$(): 80%$(br)$(thing)Source of$(): Sodium, Chlorine$(br)$(thing)Formula$(): NaCl",
"type": "patchouli:multiblock"
},
{
@ -61,7 +61,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Potassium, Chlorine$(br)$(thing)Formula$(): KCl",
"text": "$(thing)Percentage$(): 10%$(br)$(thing)Source of$(): Potassium, Chlorine$(br)$(thing)Formula$(): KCl",
"type": "patchouli:multiblock"
},
{
@ -81,7 +81,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Al₄F₂O₁₀",
"text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Al₄F₂O₁₀",
"type": "patchouli:multiblock"
},
{
@ -101,7 +101,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSi₂O₆",
"text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSi₂O₆",
"type": "patchouli:multiblock"
},
{
@ -111,7 +111,7 @@
},
{
"Type": "patchouli:text",
"text": "$(thing)Rarity$(): 100$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 40 — 65$(br)$(thing)Size$(): 15$(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.",
"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"
@ -133,7 +133,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S",
"text": "$(thing)Percentage$(): 80%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S",
"type": "patchouli:multiblock"
},
{
@ -153,7 +153,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeS₂",
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeS₂",
"type": "patchouli:multiblock"
},
{
@ -173,7 +173,7 @@
]
},
"enable_visualize": false,
"text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS",
"text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS",
"type": "patchouli:multiblock"
}
],

View file

@ -49,7 +49,7 @@
},
{
"Type": "patchouli:text",
"text": "$(li)Tório: $(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)$()",
"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"
}
],

View file

@ -1519,7 +1519,7 @@
},
{
"Type": "patchouli:multiblock",
"name": "Tório",
"name": "Torianita",
"multiblock": {
"mapping": {
"0": "#forge:ores/thorium"
@ -1534,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"
},
{

View file

@ -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"
}
],

View file

@ -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"
},
{

Some files were not shown because too many files have changed in this diff Show more