merge
This commit is contained in:
commit
6bf68d1cd0
704 changed files with 39819 additions and 29946 deletions
4
.github/README.md
vendored
4
.github/README.md
vendored
|
|
@ -59,6 +59,10 @@ Interested in contributing? For detailed setup instructions, coding standards, a
|
|||
|
||||

|
||||
|
||||
### External Credits
|
||||
- WithersChat from the Monifactory team for the universal circuit textures
|
||||
- GregTech Community Pack Modern for most of their quest text
|
||||
|
||||
<!-- Links: -->
|
||||
[TerraFirmaCraft]: https://www.curseforge.com/minecraft/mc-mods/terrafirmacraft
|
||||
[GregTech Modern]: https://www.curseforge.com/minecraft/mc-mods/gregtechceu-modern
|
||||
|
|
|
|||
50
.github/workflows/build.yml
vendored
50
.github/workflows/build.yml
vendored
|
|
@ -20,13 +20,13 @@ jobs:
|
|||
name: 🖥️ Project Info
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
project_version: ${{ steps.check.outputs.version }}
|
||||
project_name: ${{ steps.pakku_info.outputs.name }}
|
||||
project_full_name: ${{ steps.pakku_info.outputs.name }}-${{ steps.check.outputs.version }}
|
||||
project_version: ${{ steps.check.outputs.project_version }}
|
||||
project_name: ${{ steps.check.outputs.project_name }}
|
||||
project_full_name: ${{ steps.check.outputs.project_name }}-${{ steps.check.outputs.project_version }}
|
||||
changelog: ${{ steps.changelog.outputs.description }}
|
||||
diff: ${{ steps.read_diff.outputs.diff }}
|
||||
exists: ${{ steps.check_tag.outputs.exists }}
|
||||
make_release: ${{ steps.check_tag.outputs.exists == 'false' && env.DEV_ENVIRONMENT == 'false' }}
|
||||
exists: ${{ steps.check.outputs.exists }}
|
||||
make_release: ${{ steps.check.outputs.make_release }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
|
@ -145,7 +145,7 @@ jobs:
|
|||
id: determine_version
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ${{ env.DEV_ENVIRONMENT }} ]; then
|
||||
if ${{ env.DEV_ENVIRONMENT == 'true' }}; then
|
||||
echo "version=unreleased" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "version=${{ steps.pakku_info.outputs.version }}" >> $GITHUB_OUTPUT
|
||||
|
|
@ -159,16 +159,22 @@ jobs:
|
|||
version: ${{ steps.determine_version.outputs.version }}
|
||||
continue-on-error: true
|
||||
|
||||
- name: 🔍 Check if changelog is empty
|
||||
- name: 🔍 Check
|
||||
id: check
|
||||
shell: bash
|
||||
run: |
|
||||
if [ ${{ env.DEV_ENVIRONMENT || steps.changelog.outcome == 'failure' }} ]; then
|
||||
echo "version=build_#${{ github.run_number }}" >> $GITHUB_OUTPUT
|
||||
echo "status=Unreleased" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "status=${{ env.RELEASE_TYPE }}" >> $GITHUB_OUTPUT
|
||||
echo "version=${{ steps.pakku_info.outputs.version }}" >> $GITHUB_OUTPUT
|
||||
echo "make_release=${{ steps.check_tag.outputs.exists == 'false' && env.DEV_ENVIRONMENT == 'false' }}" >> $GITHUB_OUTPUT
|
||||
echo "exists=${{ steps.check_tag.outputs.exists }}" >> $GITHUB_OUTPUT
|
||||
|
||||
echo "project_name=${{ steps.pakku_info.outputs.name }}" >> $GITHUB_OUTPUT
|
||||
echo "project_version=${{ steps.pakku_info.outputs.version }}" >> $GITHUB_OUTPUT
|
||||
echo "release_type=${{ env.RELEASE_TYPE }}" >> $GITHUB_OUTPUT
|
||||
|
||||
echo "minecraft_version=${{ steps.pakku_lock_info.outputs.mc_versions }}" >> $GITHUB_OUTPUT
|
||||
|
||||
if ${{ env.DEV_ENVIRONMENT == 'true' && steps.changelog.outcome == 'failure' }}; then
|
||||
echo "project_version=build_#${{ github.run_number }}" >> $GITHUB_OUTPUT
|
||||
echo "release_type=Unreleased" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: 📄 Format diff
|
||||
|
|
@ -185,14 +191,14 @@ jobs:
|
|||
uses: WcAServices/markdown-template-action@v1.1.1
|
||||
with:
|
||||
template: |
|
||||
📃 **Name**: ${{ steps.pakku_info.outputs.name }}
|
||||
📃 **Release**: `${{ steps.check.outputs.version }}`
|
||||
📃 **Release Type**: `${{ steps.check.outputs.status }}`
|
||||
📃 **Game Version**: `${{ steps.pakku_lock_info.outputs.mc_versions }}`
|
||||
📃 **Name**: ${{ steps.check.outputs.project_name }}
|
||||
📃 **Release**: `${{ steps.check.outputs.project_version }}`
|
||||
📃 **Release Type**: `${{ steps.check.outputs.release_type }}`
|
||||
📃 **Game Version**: `${{ steps.check.outputs.minecraft_version }}`
|
||||
|
||||
📃 **Dev Environment**: `${{ env.DEV_ENVIRONMENT }}`
|
||||
📃 **Tag Exists**: `${{ steps.check_tag.outputs.exists }}`
|
||||
📃 **Make Release**: `${{ steps.check_tag.outputs.exists == 'false' && env.DEV_ENVIRONMENT == 'false' }}`
|
||||
📃 **Tag Exists**: `${{ steps.check.outputs.exists }}`
|
||||
📃 **Make Release**: `${{ steps.check.outputs.make_release }}`
|
||||
|
||||
|
||||
${{ steps.changelog.outputs.description }}
|
||||
|
|
@ -359,7 +365,7 @@ jobs:
|
|||
uses: actions/checkout@v4.2.2
|
||||
|
||||
- name: 📦 Download artifact
|
||||
uses: actions/download-artifact@v4.2.1
|
||||
uses: actions/download-artifact@v4.3.0
|
||||
with:
|
||||
merge-multiple: true
|
||||
|
||||
|
|
@ -433,7 +439,7 @@ jobs:
|
|||
fi
|
||||
|
||||
- name: 📦 Download artifact
|
||||
uses: actions/download-artifact@v4.2.1
|
||||
uses: actions/download-artifact@v4.3.0
|
||||
with:
|
||||
merge-multiple: true
|
||||
|
||||
|
|
@ -483,7 +489,7 @@ jobs:
|
|||
fi
|
||||
|
||||
- name: 📦 Download artifact
|
||||
uses: actions/download-artifact@v4.2.1
|
||||
uses: actions/download-artifact@v4.3.0
|
||||
with:
|
||||
merge-multiple: true
|
||||
|
||||
|
|
|
|||
12
.pakku/server-overrides/README.md
Normal file
12
.pakku/server-overrides/README.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Running the TerraFirmaGreg Server Pack
|
||||
|
||||
To run the Server Pack:
|
||||
|
||||
1. Install the ServerPack in your server of choice
|
||||
* Doing it manually or utilizing a third party website should work fine
|
||||
2. Start the Server Pack
|
||||
* You can start it by running the "start_server.bat" file
|
||||
* You should be able to run it using the "BASH" command, assuming your server machine has BASH capabilities
|
||||
* ``bash start_server.bat``
|
||||
* Or just open the batch file if on a windows machine.
|
||||
3. The batch file will start the server, install forge on it and then boot up your world.
|
||||
115
CHANGELOG.md
115
CHANGELOG.md
|
|
@ -2,44 +2,83 @@
|
|||
|
||||
## [Unreleased]
|
||||
### Changes
|
||||
- Fixed kaolin clay not generating in the overworld
|
||||
- Changed some quests based on feedback
|
||||
- Added recipes for digger helmet upgrades
|
||||
- Updated field guide for 0.9 (oosyrag)
|
||||
- Added speed boost to nanosuit leggings (SverhRazum-Nah)
|
||||
- Updated max capacity of small vessel and crucible to be multiples of 144 (oosyrag)
|
||||
- You can no longer use a blowpipe to hold hot ingots, but tongs have been buffed 6x instead
|
||||
- Added a temporary fix for the ULS-MV millstones/crushing wheels voiding poor raw ores
|
||||
- Fixed a duping exploit involving metal plated blocks
|
||||
- Fixed some recipes that were using the wrong wrench tag
|
||||
- Fixed mining machines not working
|
||||
- Removed recipes for firmalife sprinklers. Use gt pipes instead, those can go through sprinkler walls now, and put your sprinklers on drums/fluid tanks/barrels
|
||||
- Buffed the mixer glowstone recipe
|
||||
- Nerfed kapok growth speed a little
|
||||
- Added recipes to turn more things into biomass
|
||||
- Added recipe to turn saplings into sticks
|
||||
- Changed mud brick recipes to not require mortar any more
|
||||
- Fixed not being able to pick up spring water or put it in a mixing bowl
|
||||
- Buffed hot or not insulation items by x3
|
||||
- Nerfed rotation speed controller recipe
|
||||
- Now you can put construction wands on tool racks
|
||||
- Buffed nether mob loot tables
|
||||
- The overworld graphite vein now spawns in every stone type
|
||||
- Granitic/basaltic mineral sand is now usable for iron in primitive age
|
||||
- Fixed butchery knives missing anvil recipes
|
||||
- Added recipes to craft GT's marble blocks
|
||||
- Added assembler recipes for create deco's bricks, and made vanilla bricks consistent (4 instead of 1 per craft)
|
||||
- Doubled the amount of train tracks you get per craft
|
||||
- Fixed red alloy/tin alloy double ingots not needing to be heated for anvil recipes
|
||||
- Long distance item/fluid pipes now need HV
|
||||
- Kaolin patches now spawn less often in lush cave biomes
|
||||
- You can no longer pick up regular ice with a saw to prevent moving around water sources, but you can craft packed ice instead if you need to cool off
|
||||
- Hid the xp bar because xp isn't used for anything
|
||||
- Fixed visual workbench not working with tfc workbenches
|
||||
- Removed adjustable chain gearshift and half of create:connected because they let you get around greate's restrictions
|
||||
- Added recipe for vanilla campfire for people who like smoke particles
|
||||
- Removed some more duplicate recipes for vanilla items
|
||||
- Hid some more things in JEI that aren't craftable
|
||||
- Removed Caelum + TFC Caelum because they were causing crashes for MacOS and other graphics issues, but you can re-add them if you'd like
|
||||
- Added recipe to separate fertilizer into pure sources, and mix them back together. (Redeix)
|
||||
- Added recipes to sew hides together and cut them apart. (Redeix)
|
||||
- Update CarryOn so now it works with all TFC chests
|
||||
- Overhauled the TFG Ores section in the field guide, and it's now 100% accurate again!
|
||||
- Large cogwheels are now cheaper
|
||||
- Added recycling recipes for ceramic molds, large vessels, casting channels and tables
|
||||
- Fixed issue where the speed buff from Aged Rum was being removed
|
||||
- Fixed speed of bulk washing
|
||||
- Lowered SU requirements of some more Create machines
|
||||
- Reduced how many sticks were being placed in the nether
|
||||
- Fixed new supports to work correctly
|
||||
|
||||
## [0.9.2]
|
||||
### Changes
|
||||
- Fixed mining machines not working.
|
||||
- Fixed kaolin clay not generating in the overworld.
|
||||
- Updated field guide for 0.9 (oosyrag).
|
||||
- Added speed boost to nanosuit leggings (SverhRazum-Nah).
|
||||
- Updated max capacity of small vessel and crucible to be multiples of 144 (oosyrag).
|
||||
- Added support for more armor trims from gems (Redeix).
|
||||
- Added fishing nets (Redeix).
|
||||
- Added more cloth alternatives (Redeix).
|
||||
- Fixed milk curdling and olive oil recipes to be consistent with barrels/vats (TomPlop).
|
||||
- Added universal circuits (from monifactory) for easier ae2 pattern upgrading (TomPlop).
|
||||
- Added brine and vinegar recipes to GT machines (TomPlop).
|
||||
- Increased Astikor Carts item size limit (Redeix).
|
||||
- Changed some quests based on feedback.
|
||||
- Added recipes for digger helmet upgrades.
|
||||
- You can no longer use a blowpipe to hold hot ingots, but tongs have been buffed 6x instead.
|
||||
- You can no longer pick up regular ice with a saw to prevent moving around water sources, but you can craft packed ice instead if you need to cool off.
|
||||
- Added a temporary fix for the ULS-MV millstones/crushing wheels voiding poor raw ores.
|
||||
- Added a temporary fix for the mechanical mixer needing a programmed circuit item to work (craft them out of sticks).
|
||||
- Fixed a duping exploit involving metal plated blocks.
|
||||
- Fixed some recipes that were using the wrong wrench tag.
|
||||
- Added an earlier way to get paracetamol (cures gregtech hazards).
|
||||
- Removed recipes for firmalife sprinklers. Use GT pipes instead, those count as greenhouse walls now, and put your sprinklers on drums/fluid tanks/barrels.
|
||||
- Buffed the mixer glowstone recipe.
|
||||
- Nerfed kapok growth speed a little.
|
||||
- Added recipes to turn more things into biomass.
|
||||
- Added recipe to turn saplings into sticks.
|
||||
- Changed mud brick recipes to not require mortar any more.
|
||||
- Fixed not being able to pick up spring water or put it in a mixing bowl.
|
||||
- Changed rotation speed controller recipe.
|
||||
- Now you can put many more things on tool racks.
|
||||
- Buffed some nether mob loot tables.
|
||||
- Buffed piglin bartering table.
|
||||
- Buffed string from cobwebs, TFC shears now work on them too.
|
||||
- The overworld graphite vein now spawns in every stone type.
|
||||
- Granitic/basaltic mineral sand is now usable for iron in primitive age.
|
||||
- Fixed butchery knives missing anvil recipes.
|
||||
- Added recipes to craft GT's marble blocks.
|
||||
- Added assembler recipes for create deco's bricks, and made vanilla bricks consistent (4 instead of 1 per craft).
|
||||
- Doubled the amount of train tracks you get per craft.
|
||||
- Fixed red alloy/tin alloy double ingots not needing to be heated for anvil recipes.
|
||||
- Long distance item/fluid pipes now need HV.
|
||||
- Kaolin patches now spawn less often in lush cave biomes.
|
||||
- Hid the xp bar because xp isn't used for anything.
|
||||
- Fixed visual workbench not working with tfc workbenches.
|
||||
- Removed adjustable chain gearshift and half of create:connected because they let you get around greate's restrictions.
|
||||
- Added recipe for vanilla campfire for people who like smoke particles.
|
||||
- Fixed AoE tools in bastion chests not having the AoE property.
|
||||
- Fixed various decorative glass block/pane recipes to be consistent.
|
||||
- Bricks and flagstones now use a cutter instead of an assembler.
|
||||
- Slimeballs now smelt into glue.
|
||||
- Removed some more duplicate recipes for vanilla items.
|
||||
- Hid some more things in JEI that aren't craftable.
|
||||
- Added fishing nets in many tiers for scooping fishies.
|
||||
- Added nylon string and fabric.
|
||||
- Added phantom string and fabric, created from phantom membranes--Replacing them in recipes
|
||||
- Added support for armor trims, fixed some broken textures, added a bunch of materials, and made a helper function.
|
||||
- Added handcart recipe.
|
||||
- Allowed more blocks to be used as oven, forge, and bloomery insulation.
|
||||
- Fixed lang error with treated wood planks recipe.
|
||||
- Fixed bug with mmc package.
|
||||
- Added recipe to separate fertilizer into pure sources, and mix them back together.
|
||||
- Added recipes to sew hides together and cut them apart.
|
||||
|
||||
## [0.9.1] - 18.04.2025
|
||||
### Changes
|
||||
|
|
|
|||
|
|
@ -1 +1,128 @@
|
|||
{"clothes_hat":{"x":20,"y":98,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"gtceu_magnet":{"x":0,"y":40,"enabled":false,"halign":"LEFT","valign":"TOP"},"feet":{"x":0,"y":60,"enabled":false,"halign":"LEFT","valign":"TOP"},"hands":{"x":2,"y":80,"enabled":true,"halign":"LEFT","valign":"TOP"},"belt":{"x":2,"y":62,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"ring":{"x":2,"y":117,"enabled":true,"halign":"LEFT","valign":"TOP"},"back":{"x":2,"y":80,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"bracelet":{"x":2,"y":-3,"enabled":true,"halign":"LEFT","valign":"CENTER"},"necklace":{"x":2,"y":146,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"body":{"x":2,"y":126,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"clothes_torso":{"x":20,"y":80,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"curio":{"x":2,"y":136,"enabled":true,"halign":"LEFT","valign":"TOP"},"head":{"x":2,"y":98,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"charm":{"x":2,"y":99,"enabled":true,"halign":"LEFT","valign":"TOP"},"adv_pattern_encoder":{"x":0,"y":300,"enabled":false,"halign":"LEFT","valign":"TOP"},"clothes_pants":{"x":20,"y":62,"enabled":true,"halign":"LEFT","valign":"BOTTOM"},"clothes_socks":{"x":20,"y":44,"enabled":true,"halign":"LEFT","valign":"BOTTOM"}}
|
||||
{
|
||||
"clothes_hat": {
|
||||
"x": 20,
|
||||
"y": 98,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"gtceu_magnet": {
|
||||
"x": 2,
|
||||
"y": 116,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"hands": {
|
||||
"x": 2,
|
||||
"y": 44,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"belt": {
|
||||
"x": 2,
|
||||
"y": 62,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"ring": {
|
||||
"x": 2,
|
||||
"y": 117,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "TOP"
|
||||
},
|
||||
"back": {
|
||||
"x": 2,
|
||||
"y": 80,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"bracelet": {
|
||||
"x": 2,
|
||||
"y": -3,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "CENTER"
|
||||
},
|
||||
"necklace": {
|
||||
"x": 2,
|
||||
"y": 146,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"body": {
|
||||
"x": 2,
|
||||
"y": 126,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"clothes_torso": {
|
||||
"x": 20,
|
||||
"y": 80,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"example": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"enabled": false,
|
||||
"halign": "LEFT",
|
||||
"valign": "TOP"
|
||||
},
|
||||
"curio": {
|
||||
"x": 2,
|
||||
"y": 136,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "TOP"
|
||||
},
|
||||
"head": {
|
||||
"x": 2,
|
||||
"y": 98,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"charm": {
|
||||
"x": 2,
|
||||
"y": 99,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "TOP"
|
||||
},
|
||||
"clothes_pants": {
|
||||
"x": 20,
|
||||
"y": 62,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"clothes_socks": {
|
||||
"x": 20,
|
||||
"y": 44,
|
||||
"enabled": true,
|
||||
"halign": "LEFT",
|
||||
"valign": "BOTTOM"
|
||||
},
|
||||
"feet": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"enabled": false,
|
||||
"halign": "LEFT",
|
||||
"valign": "TOP"
|
||||
},
|
||||
"adv_pattern_encoder": {
|
||||
"x": 0,
|
||||
"y": 300,
|
||||
"enabled": false,
|
||||
"halign": "LEFT",
|
||||
"valign": "TOP"
|
||||
}
|
||||
}
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
#Entities that CAN be picked up (useWhitelistEntities must be true)
|
||||
allowedEntities = ["tfc:turkey", "tfc:dog", "tfc:isopod", "tfc:lobster", "tfc:frog", "tfc:penguin", "tfc:turtle", "tfc:horseshoe_crab", "tfc:crayfish", "tfc:grouse", "tfc:pheasant", "tfc:peafowl", "tfc:rat", "tfc:cat", "tfc:chicken", "tfc:duck", "tfc:quail", "tfc:rabbit"]
|
||||
#Blocks that CAN be picked up (useWhitelistBlocks must be true)
|
||||
allowedBlocks = ["#forge:chests/wooden", "#storagedrawers:drawers"]
|
||||
allowedBlocks = ["framedblocks:framed_chest", "tfc:wood/chest/*", "tfc:wood/trapped_chest/*", "#forge:chests/wooden"]
|
||||
#Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true)
|
||||
allowedStacking = []
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@
|
|||
rolling_mill_processing_duration = 400
|
||||
#Rolling Mill base stress impact.
|
||||
#Range: 0 ~ 1024
|
||||
rolling_mill_stress = 0.5
|
||||
rolling_mill_stress = 1
|
||||
|
||||
#Wires
|
||||
[wires]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#List of slots to create or modify.
|
||||
#See documentation for syntax: https://docs.illusivesoulworks.com/curios/configuration#slot-configuration
|
||||
#
|
||||
slots = []
|
||||
slots = [ "id=head;add_cosmetic=false", "id=feet;size=0" ]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,220 +0,0 @@
|
|||
{
|
||||
default_hide_dependency_lines: false
|
||||
default_quest_shape: ""
|
||||
filename: "multiblock_dilemma"
|
||||
group: "19428C6E7A36D463"
|
||||
icon: "gtceu:electric_blast_furnace"
|
||||
id: "41FEC6178ABF1998"
|
||||
order_index: 2
|
||||
quest_links: [
|
||||
{
|
||||
id: "787AC5F1A89ABE41"
|
||||
linked_quest: "1E9BE8D3F8A602DC"
|
||||
x: 4.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "5A1F54545034FC9F"
|
||||
linked_quest: "3568BC9742092FC5"
|
||||
x: 6.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "29EFA88DBC897F46"
|
||||
linked_quest: "05ADBAE5B6F38956"
|
||||
x: 7.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "1C71CBF1424099CE"
|
||||
linked_quest: "10987A49F647279E"
|
||||
shape: "rsquare"
|
||||
x: 9.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "421BA5ADC26DFB19"
|
||||
linked_quest: "4AEAC79007790BD8"
|
||||
shape: "rsquare"
|
||||
x: 10.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "27D3C414C3E19143"
|
||||
linked_quest: "1BE779AF4487E3EB"
|
||||
shape: "rsquare"
|
||||
x: 10.5d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
id: "7E75AAD105D31F26"
|
||||
linked_quest: "07906458E1A15683"
|
||||
shape: "rsquare"
|
||||
x: 9.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
id: "321893F87228A360"
|
||||
linked_quest: "16E7CAC7BC8BFD8E"
|
||||
shape: "rsquare"
|
||||
x: 7.5d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
id: "7888064372044AD3"
|
||||
linked_quest: "6DDDE2268B691F74"
|
||||
shape: "rsquare"
|
||||
x: 6.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
id: "5D2C26C1501A2CE1"
|
||||
linked_quest: "2655B72C9FF3B372"
|
||||
shape: "rsquare"
|
||||
x: 4.5d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
id: "2637BCFD9681EABF"
|
||||
linked_quest: "53DC6E32C41C94C3"
|
||||
x: 3.0d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
id: "3003AF60FECF2899"
|
||||
linked_quest: "33263404ED38C6D2"
|
||||
shape: "rsquare"
|
||||
x: 1.5d
|
||||
y: 1.5d
|
||||
}
|
||||
{
|
||||
id: "7D7392009AC28773"
|
||||
linked_quest: "1BB40CCF17D00719"
|
||||
shape: "rsquare"
|
||||
x: 3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "026F45422E5639EB"
|
||||
linked_quest: "48141DBA683F6B5A"
|
||||
x: 4.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
id: "6F23E13DC672A3F5"
|
||||
linked_quest: "24866E83B280C9AB"
|
||||
shape: "rsquare"
|
||||
x: 6.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
id: "0096F2E970A04203"
|
||||
linked_quest: "6958029B5514D4EC"
|
||||
x: 7.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
id: "0205B65B6C2405A2"
|
||||
linked_quest: "528CE69DA4358B2E"
|
||||
x: 9.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
id: "2206AD45E6B2389C"
|
||||
linked_quest: "77B7B1EDD19831E0"
|
||||
x: 10.5d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
icon: {
|
||||
Count: 1
|
||||
id: "gtceu:turbine_rotor"
|
||||
tag: {
|
||||
GT.PartStats: {
|
||||
Material: "neutronium"
|
||||
}
|
||||
}
|
||||
}
|
||||
id: "454772220042D94B"
|
||||
linked_quest: "188A8C3DD38C2762"
|
||||
shape: "rsquare"
|
||||
x: 10.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
id: "7B3367C356023F61"
|
||||
linked_quest: "4E9DED9569AA17F5"
|
||||
x: 9.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
id: "246855660369CA56"
|
||||
linked_quest: "0F539EC8D2361791"
|
||||
shape: "rsquare"
|
||||
x: 7.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
id: "278D7192878C56AC"
|
||||
linked_quest: "189F84D6C76CDC8B"
|
||||
shape: "rsquare"
|
||||
x: 6.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
id: "18F88B89C6DD238E"
|
||||
linked_quest: "1137D2BA7E03D685"
|
||||
x: 4.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
id: "052E542D4D30CC93"
|
||||
linked_quest: "466AC4DD902115EF"
|
||||
shape: "rsquare"
|
||||
x: 3.0d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
id: "6DA657FC3F725B0C"
|
||||
linked_quest: "1AD309112ADD8D8D"
|
||||
shape: "rsquare"
|
||||
x: 1.5d
|
||||
y: 4.5d
|
||||
}
|
||||
{
|
||||
id: "26A69E20AEC61DF1"
|
||||
linked_quest: "249FA99AADAC3710"
|
||||
shape: "rsquare"
|
||||
x: 1.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "7D67FF93BFAF6A4A"
|
||||
linked_quest: "328CFD483C26EA44"
|
||||
shape: "rsquare"
|
||||
x: 1.5d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
id: "1D2DEC9BC14B9F64"
|
||||
linked_quest: "546CC03435E763CF"
|
||||
x: 7.5d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
id: "0BAD33188878F715"
|
||||
linked_quest: "24366846FDA52CE3"
|
||||
x: 9.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
id: "2B1E630DF1ED5624"
|
||||
linked_quest: "023FF9633765A0EB"
|
||||
x: 10.5d
|
||||
y: 6.0d
|
||||
}
|
||||
]
|
||||
quests: [ ]
|
||||
subtitle: ["A handy reference of all the multiblocks"]
|
||||
title: "Multiblock Dilemma"
|
||||
}
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
id: "gtceu:crushed_iron_ore"
|
||||
}
|
||||
id: "24C1683140DBB5F2"
|
||||
order_index: 4
|
||||
order_index: 3
|
||||
quest_links: [ ]
|
||||
quests: [
|
||||
{
|
||||
|
|
@ -585,7 +585,7 @@
|
|||
type: "checkmark"
|
||||
}
|
||||
]
|
||||
title: "{quests.ore_proc.macerator_separator.desc}"
|
||||
title: "{quests.ore_proc.macerator_separator.title}"
|
||||
x: -1.0d
|
||||
y: 1.0d
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
}
|
||||
}
|
||||
id: "28EBC0FF82EFD94B"
|
||||
order_index: 3
|
||||
order_index: 2
|
||||
quest_links: [
|
||||
{
|
||||
id: "77A0335E38D755CA"
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 0.0d
|
||||
y: 1.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
id: "750818879C23F373"
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 1.0d
|
||||
y: 2.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
id: "0074100DE2B5BE5A"
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 2.0d
|
||||
y: 0.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
id: "1C05814535C12FED"
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 1.0d
|
||||
y: 1.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
id: "513A34184609CA31"
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 1.0d
|
||||
y: 0.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
id: "22CF428EE30F5B4B"
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 2.0d
|
||||
y: 1.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
id: "33618A4FD8ED62D7"
|
||||
|
|
@ -68,7 +68,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 2.0d
|
||||
y: 2.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
id: "2B8FBCD290196265"
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 2.0d
|
||||
y: 4.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
id: "0E8AC841C484408C"
|
||||
|
|
@ -84,7 +84,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 2.0d
|
||||
y: -1.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "6ABFBA6855A6E7E9"
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 3.0d
|
||||
y: 2.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
id: "629EAE6BC0519572"
|
||||
|
|
@ -100,7 +100,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 3.0d
|
||||
y: 3.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
id: "59568D32C47265ED"
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 3.0d
|
||||
y: 4.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
id: "42DA2C0B99DB2545"
|
||||
|
|
@ -116,7 +116,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 3.0d
|
||||
y: 5.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
id: "39C4E4082B9B5731"
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 4.0d
|
||||
y: 3.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
id: "346904314F61ABDB"
|
||||
|
|
@ -132,7 +132,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 4.0d
|
||||
y: 4.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
id: "1C0407D7B45603FC"
|
||||
|
|
@ -140,7 +140,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 4.0d
|
||||
y: 5.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
id: "20BCF31B1430ECFC"
|
||||
|
|
@ -148,7 +148,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 4.0d
|
||||
y: 6.0d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
id: "384FE989BF9BD89D"
|
||||
|
|
@ -156,7 +156,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 6.0d
|
||||
y: 5.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
id: "3DD1B0AE6630A8E5"
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 6.0d
|
||||
y: 6.0d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
id: "519774012E47875A"
|
||||
|
|
@ -172,7 +172,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 6.0d
|
||||
y: 7.0d
|
||||
y: 8.0d
|
||||
}
|
||||
{
|
||||
id: "0B488F9F519FBA61"
|
||||
|
|
@ -180,7 +180,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 6.0d
|
||||
y: 8.0d
|
||||
y: 9.0d
|
||||
}
|
||||
{
|
||||
id: "025C3D8C61A9C011"
|
||||
|
|
@ -188,7 +188,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 5.0d
|
||||
y: 4.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
id: "54F1B023BEC98314"
|
||||
|
|
@ -196,7 +196,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 5.0d
|
||||
y: 5.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
id: "4EABE2BF51A06FC8"
|
||||
|
|
@ -204,7 +204,7 @@
|
|||
shape: "rsquare"
|
||||
size: 0.75d
|
||||
x: 5.0d
|
||||
y: 6.0d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
id: "607E9492E895927E"
|
||||
|
|
@ -212,95 +212,95 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 5.0d
|
||||
y: 7.0d
|
||||
y: 8.0d
|
||||
}
|
||||
{
|
||||
id: "709FB8C1561E7BB8"
|
||||
linked_quest: "1646BF9194100E57"
|
||||
x: -1.0d
|
||||
y: -5.0d
|
||||
x: -0.99d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "499941B0EDEFBF54"
|
||||
linked_quest: "1C55AE6AD5BDE304"
|
||||
x: 0.0d
|
||||
y: -5.0d
|
||||
x: 0.010000000000000009d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "10F2DA9FCC5E3860"
|
||||
linked_quest: "6B08799BCFD01D3D"
|
||||
x: 1.0d
|
||||
y: -5.0d
|
||||
x: 1.01d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "72CBEEAD5A41685E"
|
||||
linked_quest: "069FD86133D7D582"
|
||||
x: 2.0d
|
||||
y: -5.0d
|
||||
x: 2.01d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "76C69275A82861C8"
|
||||
linked_quest: "7A1E3C3A2D699C5B"
|
||||
x: 3.0d
|
||||
y: -5.0d
|
||||
x: 3.01d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "6C144735C40EE615"
|
||||
linked_quest: "2FCBA0D780DBDA9E"
|
||||
x: 4.0d
|
||||
y: -5.0d
|
||||
x: 4.01d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "5FDCCB7CE9DACB34"
|
||||
linked_quest: "4C7C0F6A6598BC24"
|
||||
x: 5.0d
|
||||
y: -5.0d
|
||||
x: 5.01d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "4ACE1AFCEDC37A05"
|
||||
linked_quest: "6AF3A40BC9CE7122"
|
||||
x: 6.0d
|
||||
y: -5.0d
|
||||
x: 6.01d
|
||||
y: -5.12d
|
||||
}
|
||||
{
|
||||
id: "1EA07F998161450C"
|
||||
linked_quest: "30A6EDDF25A5E5F8"
|
||||
shape: "rsquare"
|
||||
size: 0.66d
|
||||
x: 2.0d
|
||||
y: -4.0d
|
||||
x: 2.01d
|
||||
y: -4.12d
|
||||
}
|
||||
{
|
||||
id: "532482B324E31386"
|
||||
linked_quest: "1776FA1F3255731E"
|
||||
shape: "rsquare"
|
||||
size: 0.66d
|
||||
x: 3.0d
|
||||
y: -4.0d
|
||||
x: 3.01d
|
||||
y: -4.12d
|
||||
}
|
||||
{
|
||||
id: "0F86FC5CD130B2E1"
|
||||
linked_quest: "78277DBC07D3C45C"
|
||||
shape: "rsquare"
|
||||
size: 0.66d
|
||||
x: 4.0d
|
||||
y: -4.0d
|
||||
x: 4.01d
|
||||
y: -4.12d
|
||||
}
|
||||
{
|
||||
id: "7D227159C48FAB94"
|
||||
linked_quest: "0DC999F79A685194"
|
||||
shape: "rsquare"
|
||||
size: 0.66d
|
||||
x: 5.0d
|
||||
y: -4.0d
|
||||
x: 5.01d
|
||||
y: -4.12d
|
||||
}
|
||||
{
|
||||
id: "718938D16A6098A7"
|
||||
linked_quest: "35F13B6D60361904"
|
||||
shape: "rsquare"
|
||||
size: 0.66d
|
||||
x: 6.0d
|
||||
y: -4.0d
|
||||
x: 6.01d
|
||||
y: -4.12d
|
||||
}
|
||||
{
|
||||
id: "713A4F2E798A8BDB"
|
||||
|
|
@ -308,7 +308,73 @@
|
|||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 2.0d
|
||||
y: 3.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
id: "1E40A675803FC0EE"
|
||||
linked_quest: "033E74BC588E7EAD"
|
||||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 0.0d
|
||||
y: -1.0d
|
||||
}
|
||||
{
|
||||
id: "086F15BC0794B952"
|
||||
linked_quest: "3D8174C64DDC268B"
|
||||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 0.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
id: "3D882E672333DFDB"
|
||||
linked_quest: "2C35D4E01AEC02AA"
|
||||
shape: "rsquare"
|
||||
size: 0.8d
|
||||
x: 0.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
id: "54253615E949F3FD"
|
||||
linked_quest: "48A8E3210B2BAE1C"
|
||||
size: 0.85d
|
||||
x: 0.0d
|
||||
y: -7.6499999999999995d
|
||||
}
|
||||
{
|
||||
id: "6DE3523492F7488F"
|
||||
linked_quest: "3C173357029AB649"
|
||||
size: 0.85d
|
||||
x: 1.0d
|
||||
y: -7.6499999999999995d
|
||||
}
|
||||
{
|
||||
id: "15C67D0A68F367B8"
|
||||
linked_quest: "174DA15847665CF8"
|
||||
size: 0.85d
|
||||
x: 1.9999999999999998d
|
||||
y: -7.6499999999999995d
|
||||
}
|
||||
{
|
||||
id: "3FB2B4E7A1EA2511"
|
||||
linked_quest: "04DE7C58F20B535A"
|
||||
size: 0.85d
|
||||
x: 3.0d
|
||||
y: -7.6499999999999995d
|
||||
}
|
||||
{
|
||||
id: "6DE6915952A42CFE"
|
||||
linked_quest: "52DAF93E2F3D688A"
|
||||
size: 0.85d
|
||||
x: 4.0d
|
||||
y: -7.6499999999999995d
|
||||
}
|
||||
{
|
||||
id: "51370C0C07149D25"
|
||||
linked_quest: "56CA2EB7812529C5"
|
||||
size: 0.85d
|
||||
x: 5.0d
|
||||
y: -7.6499999999999995d
|
||||
}
|
||||
]
|
||||
quests: [
|
||||
|
|
@ -478,7 +544,7 @@
|
|||
size: 0.85d
|
||||
title: "&8ULV&r Circuits"
|
||||
x: -1.0d
|
||||
y: -1.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -501,7 +567,7 @@
|
|||
size: 0.85d
|
||||
title: "&7LV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 0.0d
|
||||
y: 1.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -521,7 +587,7 @@
|
|||
size: 0.85d
|
||||
title: "&bMV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 1.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -541,7 +607,7 @@
|
|||
size: 0.85d
|
||||
title: "&6HV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 2.0d
|
||||
y: 3.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -560,7 +626,7 @@
|
|||
size: 0.85d
|
||||
title: "&5EV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 3.0d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -581,7 +647,7 @@
|
|||
size: 0.85d
|
||||
title: "&1IV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 4.0d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -606,7 +672,7 @@
|
|||
size: 0.85d
|
||||
title: "&dLuV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 5.0d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -622,7 +688,7 @@
|
|||
size: 0.85d
|
||||
title: "&cZPM&r Circuits"
|
||||
x: -1.0d
|
||||
y: 6.0d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -637,7 +703,7 @@
|
|||
size: 0.85d
|
||||
title: "&3UV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 7.0d
|
||||
y: 8.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["3B49BD004F38E1A2"]
|
||||
|
|
@ -653,7 +719,7 @@
|
|||
size: 0.85d
|
||||
title: "&4UHV&r Circuits"
|
||||
x: -1.0d
|
||||
y: 8.0d
|
||||
y: 9.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5B2696206205CB2E"]
|
||||
|
|
@ -665,8 +731,8 @@
|
|||
item: "gtceu:cupronickel_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
x: -1.0d
|
||||
y: -4.0d
|
||||
x: -0.99d
|
||||
y: -4.12d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -681,8 +747,8 @@
|
|||
item: "gtceu:kanthal_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
x: 0.0d
|
||||
y: -4.0d
|
||||
x: 0.010000000000000009d
|
||||
y: -4.12d
|
||||
}
|
||||
{
|
||||
dependencies: ["6958029B5514D4EC"]
|
||||
|
|
@ -694,8 +760,8 @@
|
|||
item: "gtceu:nichrome_ingot"
|
||||
type: "item"
|
||||
}]
|
||||
x: 1.0d
|
||||
y: -4.0d
|
||||
x: 1.01d
|
||||
y: -4.12d
|
||||
}
|
||||
]
|
||||
subtitle: ["A step forward is always rewarding"]
|
||||
|
|
|
|||
|
|
@ -586,7 +586,7 @@
|
|||
tasks: [
|
||||
{
|
||||
dimension: "minecraft:the_nether"
|
||||
icon: "minecraft:netherrack"
|
||||
icon: "minecraft:deepslate"
|
||||
id: "42372A0532A8AEDC"
|
||||
title: "{quests.metal_age.beneath_kaolin.task}"
|
||||
type: "dimension"
|
||||
|
|
@ -858,7 +858,7 @@
|
|||
tasks: [
|
||||
{
|
||||
dimension: "minecraft:the_nether"
|
||||
icon: "minecraft:netherrack"
|
||||
icon: "minecraft:deepslate"
|
||||
id: "77162ADDC8732968"
|
||||
title: "{quests.metal_age.beneath_graphite.task}"
|
||||
type: "dimension"
|
||||
|
|
@ -1308,4 +1308,4 @@
|
|||
]
|
||||
subtitle: ["{quests.metal_age.subtitle}"]
|
||||
title: "{quests.metal_age}"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
{
|
||||
id: "39027CF4DC307D33"
|
||||
linked_quest: "5E186CD5E83BFDF0"
|
||||
x: -27.5d
|
||||
y: -3.0d
|
||||
x: -27.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
id: "0CE64B9914191C56"
|
||||
|
|
@ -31,8 +31,8 @@
|
|||
linked_quest: "48A8E3210B2BAE1C"
|
||||
shape: "octagon"
|
||||
size: 2.0d
|
||||
x: -27.5d
|
||||
y: -5.0d
|
||||
x: -27.0d
|
||||
y: 0.0d
|
||||
}
|
||||
]
|
||||
quests: [
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
}]
|
||||
title: "{quests.steam_age.basic_millstone.title}"
|
||||
x: -18.0d
|
||||
y: -5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6F1BC99BE641B671"]
|
||||
|
|
@ -66,7 +66,7 @@
|
|||
}]
|
||||
title: "{quests.steam_age.horse_crank.title}"
|
||||
x: -22.0d
|
||||
y: -5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7B045998769930F0"]
|
||||
|
|
@ -80,8 +80,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.helve_hammer.title}"
|
||||
x: -20.0d
|
||||
y: -1.0d
|
||||
x: -18.0d
|
||||
y: -4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6F1BC99BE641B671"]
|
||||
|
|
@ -109,7 +109,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.basic_greate.title}"
|
||||
x: -20.0d
|
||||
y: -3.0d
|
||||
y: -4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["0D0D461AE3A3F7BF"]
|
||||
|
|
@ -131,7 +131,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.water_wheel.title}"
|
||||
x: -14.5d
|
||||
y: -3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["0D0D461AE3A3F7BF"]
|
||||
|
|
@ -153,7 +153,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.windmill.title}"
|
||||
x: -14.5d
|
||||
y: -7.0d
|
||||
y: -4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6E8CEE02CB5B678B"]
|
||||
|
|
@ -168,7 +168,7 @@
|
|||
}]
|
||||
title: "{quests.steam_age.metal_casing.title}"
|
||||
x: -9.5d
|
||||
y: -5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["09D913288896A67A"]
|
||||
|
|
@ -181,8 +181,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.steel_encased_fan.title}"
|
||||
x: -4.5d
|
||||
y: -1.0d
|
||||
x: -5.5d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["09D913288896A67A"]
|
||||
|
|
@ -201,8 +201,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.steel_pump.title}"
|
||||
x: -2.5d
|
||||
y: -3.0d
|
||||
x: -3.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["209958FE2EEA5D72"]
|
||||
|
|
@ -265,7 +265,7 @@
|
|||
}]
|
||||
title: "{quests.steam_age.mechanical_saw.title}"
|
||||
x: -9.5d
|
||||
y: -3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["7F14D2A34F480ACA"]
|
||||
|
|
@ -279,7 +279,7 @@
|
|||
}]
|
||||
title: "{quests.steam_age.mechanical_harvester.title}"
|
||||
x: -9.5d
|
||||
y: -7.0d
|
||||
y: -4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6E8CEE02CB5B678B"]
|
||||
|
|
@ -307,7 +307,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.chute.title}"
|
||||
x: -12.0d
|
||||
y: -3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["51CBF7378FFAD514"]
|
||||
|
|
@ -324,8 +324,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.mold_table.title}"
|
||||
x: -2.5d
|
||||
y: -1.0d
|
||||
x: -3.5d
|
||||
y: 4.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["32046292AA5B0E30"]
|
||||
|
|
@ -352,8 +352,8 @@
|
|||
}
|
||||
]
|
||||
title: "{quests.steam_age.steel_greate.title}"
|
||||
x: -4.5d
|
||||
y: -3.0d
|
||||
x: -5.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["09D913288896A67A"]
|
||||
|
|
@ -367,8 +367,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.steel_millstone.title}"
|
||||
x: -6.5d
|
||||
y: -3.0d
|
||||
x: -7.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["5917B0D4708BF534"]
|
||||
|
|
@ -617,7 +617,7 @@
|
|||
}]
|
||||
title: "{quests.steam_age.item_pipes.title}"
|
||||
x: -12.0d
|
||||
y: -1.0d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -1038,8 +1038,8 @@
|
|||
}
|
||||
]
|
||||
title: "{quests.steam_age.fluid_pipes.title}"
|
||||
x: -2.5d
|
||||
y: -5.0d
|
||||
x: -3.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["51CBF7378FFAD514"]
|
||||
|
|
@ -1064,8 +1064,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.steam_age.fluid_drums.title}"
|
||||
x: -0.5d
|
||||
y: -3.0d
|
||||
x: -1.5d
|
||||
y: 2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["49896161B31DB7B4"]
|
||||
|
|
@ -1122,7 +1122,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.create_tools.title}"
|
||||
x: -18.0d
|
||||
y: -3.0d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["6AA07588374B59AB"]
|
||||
|
|
@ -1234,7 +1234,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.poor_paths.title}"
|
||||
x: -23.5d
|
||||
y: -6.5d
|
||||
y: -3.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["1059288C22CB56BB"]
|
||||
|
|
@ -1285,7 +1285,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.normal_paths.title}"
|
||||
x: -24.0d
|
||||
y: -5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["1059288C22CB56BB"]
|
||||
|
|
@ -1338,7 +1338,7 @@
|
|||
]
|
||||
title: "{quests.steam_age.good_paths.title}"
|
||||
x: -23.5d
|
||||
y: -3.5d
|
||||
y: -0.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -1399,7 +1399,7 @@
|
|||
}]
|
||||
title: "{quests.metal_age.bronze_goodies.title}"
|
||||
x: -20.0d
|
||||
y: -5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
description: ["{quests.metal_age.wrought_iron_goodies.desc}"]
|
||||
|
|
@ -1423,7 +1423,7 @@
|
|||
}]
|
||||
title: "{quests.metal_age.wrought_iron_goodies.title}"
|
||||
x: -12.0d
|
||||
y: -5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
description: ["{quests.metal_age.steel_goodies.desc}"]
|
||||
|
|
@ -1446,8 +1446,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.metal_age.steel_goodies.title}"
|
||||
x: -4.5d
|
||||
y: -5.0d
|
||||
x: -5.5d
|
||||
y: 0.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["46FA9DD4755A5548"]
|
||||
|
|
@ -1574,7 +1574,32 @@
|
|||
]
|
||||
title: "{quests.metal_age.coke_oven.title}"
|
||||
x: -14.5d
|
||||
y: -5.0d
|
||||
y: -2.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["49896161B31DB7B4"]
|
||||
description: [
|
||||
"There is currently a bug with the Mechanical Mixer where some recipes want an actual Programmed Circuit item."
|
||||
"For the time being, you can craft these out of Sticks."
|
||||
""
|
||||
"This will be fixed whenever we're able to update Greate to the latest version, which requires Create 6, which requires other Create addons to be updated... hopefully that should be soon."
|
||||
]
|
||||
icon: {
|
||||
Count: 1
|
||||
id: "gtceu:programmed_circuit"
|
||||
tag: {
|
||||
Configuration: 0
|
||||
}
|
||||
}
|
||||
id: "6068BC1F6917A69D"
|
||||
size: 1.0d
|
||||
tasks: [{
|
||||
id: "385A0D77B9B4AA74"
|
||||
type: "checkmark"
|
||||
}]
|
||||
title: "Bug workaround"
|
||||
x: -5.5d
|
||||
y: 13.5d
|
||||
}
|
||||
]
|
||||
subtitle: ["{quests.steam_age.subtitle}"]
|
||||
|
|
|
|||
|
|
@ -2294,4 +2294,4 @@
|
|||
]
|
||||
subtitle: ["{quests.stone_age.subtitle}"]
|
||||
title: "{quests.stone_age}"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@
|
|||
quest_links: [{
|
||||
id: "1AD1F9822B738105"
|
||||
linked_quest: "2E36E5755B2F551C"
|
||||
x: 4.0d
|
||||
y: 6.0d
|
||||
x: 6.0d
|
||||
y: 5.0d
|
||||
}]
|
||||
quests: [
|
||||
{
|
||||
|
|
@ -2069,23 +2069,7 @@
|
|||
subtitle: "{quests.tfg_tips.smoke_meat.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
icon: {
|
||||
Count: 1
|
||||
ForgeCaps: {
|
||||
"tfc:food": {
|
||||
creationDate: -9223372036854775808L
|
||||
traits: [
|
||||
"tfc:brined"
|
||||
"firmalife:smoked"
|
||||
]
|
||||
}
|
||||
"tfc:item_heat": {
|
||||
heat: 0.0f
|
||||
ticks: 0L
|
||||
}
|
||||
}
|
||||
id: "tfc:food/beef"
|
||||
}
|
||||
icon: "minecraft:beef"
|
||||
id: "6F36FAA8AE1E2987"
|
||||
item: {
|
||||
Count: 1
|
||||
|
|
@ -2320,10 +2304,7 @@
|
|||
y: 9.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
"2D959136A5FC5F46"
|
||||
"56CA2EB7812529C5"
|
||||
]
|
||||
dependencies: ["2D959136A5FC5F46"]
|
||||
description: ["{quests.tfg_tips.lamps.desc}"]
|
||||
id: "037CDA933FBE2CBE"
|
||||
subtitle: "{quests.tfg_tips.lamps.subtitle}"
|
||||
|
|
@ -2360,7 +2341,7 @@
|
|||
]
|
||||
title: "{quests.tfg_tips.lamps.title}"
|
||||
x: -5.0d
|
||||
y: 11.0d
|
||||
y: 11.5d
|
||||
}
|
||||
{
|
||||
dependencies: [
|
||||
|
|
@ -2395,7 +2376,7 @@
|
|||
]
|
||||
title: "{quests.tfg_tips.lava_lamp.title}"
|
||||
x: -5.0d
|
||||
y: 12.5d
|
||||
y: 13.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["037CDA933FBE2CBE"]
|
||||
|
|
@ -2416,7 +2397,7 @@
|
|||
}]
|
||||
title: "{quests.tfg_tips.creosote.title}"
|
||||
x: -6.0d
|
||||
y: 12.0d
|
||||
y: 12.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["037CDA933FBE2CBE"]
|
||||
|
|
@ -2437,7 +2418,7 @@
|
|||
}]
|
||||
title: "{quests.tfg_tips.olive_oil.title}"
|
||||
x: -4.0d
|
||||
y: 12.0d
|
||||
y: 12.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["2D959136A5FC5F46"]
|
||||
|
|
@ -2472,7 +2453,7 @@
|
|||
]
|
||||
title: "{quests.tfg_tips.glass_blocks.title}"
|
||||
x: -3.0d
|
||||
y: 11.0d
|
||||
y: 11.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["150B7C5CD152E1BA"]
|
||||
|
|
@ -3275,8 +3256,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.tfg_tips.camera_attachments.title}"
|
||||
x: -9.5d
|
||||
y: 4.5d
|
||||
x: -10.5d
|
||||
y: 5.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["275C8EA942AB49DD"]
|
||||
|
|
@ -3296,11 +3277,11 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.tfg_tips.filters.title}"
|
||||
x: -9.5d
|
||||
y: 5.5d
|
||||
x: -10.5d
|
||||
y: 6.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["4E2C1CAD883EB032"]
|
||||
dependencies: ["275C8EA942AB49DD"]
|
||||
description: ["{quests.tfg_tips.interplanar_projector.desc}"]
|
||||
id: "3952D56556B35FDB"
|
||||
subtitle: "{quests.tfg_tips.interplanar_projector.subtitle}"
|
||||
|
|
@ -3316,8 +3297,8 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "{quests.tfg_tips.interplanar_projector.title}"
|
||||
x: -9.5d
|
||||
y: 6.5d
|
||||
x: -10.5d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["79FA776C414AE8E5"]
|
||||
|
|
@ -3524,7 +3505,7 @@
|
|||
}]
|
||||
title: "{quests.tfg_tips.tallow.title}"
|
||||
x: -6.5d
|
||||
y: 11.0d
|
||||
y: 11.5d
|
||||
}
|
||||
{
|
||||
dependencies: ["150B7C5CD152E1BA"]
|
||||
|
|
@ -4294,9 +4275,9 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["6C64C20FF5DF972A"]
|
||||
description: ["{quests.tfg_tips.grapple_upgrade_length.desc}"]
|
||||
description: ["{quests.tfg_tips.grapple_length.desc}"]
|
||||
id: "105FD1655EEB1921"
|
||||
subtitle: "{quests.tfg_tips.grapple_upgrade_length.subtitle}"
|
||||
subtitle: "{quests.tfg_tips.grapple_length.subtitle}"
|
||||
tasks: [
|
||||
{
|
||||
id: "6BC5AB4D7A479799"
|
||||
|
|
@ -4316,7 +4297,7 @@
|
|||
type: "item"
|
||||
}
|
||||
]
|
||||
title: "{quests.tfg_tips.grapple_upgrade_length.title}"
|
||||
title: "{quests.tfg_tips.grapple_length.title}"
|
||||
x: -17.0d
|
||||
y: 4.5d
|
||||
}
|
||||
|
|
@ -4342,7 +4323,11 @@
|
|||
}
|
||||
{
|
||||
dependencies: ["1F93C858F1D02F7C"]
|
||||
description: ["{quests.tfg_tips.grapple_upgrade_length.desc}"]
|
||||
description: [
|
||||
"{quests.tfg_tips.grapple_upgrades.desc.1}"
|
||||
"{@pagebreak}"
|
||||
"{quests.tfg_tips.grapple_upgrades.desc.2}"
|
||||
]
|
||||
id: "6C64C20FF5DF972A"
|
||||
subtitle: "{quests.tfg_tips.grapple_upgrades.subtitle}"
|
||||
tasks: [{
|
||||
|
|
@ -4710,7 +4695,7 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "GregTech Storage"
|
||||
x: 5.0d
|
||||
x: 6.0d
|
||||
y: 7.0d
|
||||
}
|
||||
{
|
||||
|
|
@ -4727,9 +4712,30 @@
|
|||
type: "item"
|
||||
}]
|
||||
title: "Tape for Crate"
|
||||
x: 5.0d
|
||||
x: 6.0d
|
||||
y: 8.0d
|
||||
}
|
||||
{
|
||||
dependencies: ["47409DED94FCC2BC"]
|
||||
description: ["{quests.tfg_tips.ev_upgrades.desc}"]
|
||||
id: "20905B37111F2ED9"
|
||||
subtitle: "{quests.tfg_tips.ev_upgrades.subtitle}"
|
||||
tasks: [{
|
||||
id: "60C5CDB3EBB706E4"
|
||||
item: {
|
||||
Count: 1
|
||||
id: "ftbfiltersystem:smart_filter"
|
||||
tag: {
|
||||
"ftbfiltersystem:filter": "or(item(tfg:ev_aircraft_engine)item(tfg:titanium_plated_airplane_propeller)item(tfg:titanium_landing_gear)item(tfg:titanium_hull_reinforcement))"
|
||||
}
|
||||
}
|
||||
title: "{quests.tfg_tips.ev_upgrades.task}"
|
||||
type: "item"
|
||||
}]
|
||||
title: "{quests.tfg_tips.ev_upgrades.title}"
|
||||
x: -6.0d
|
||||
y: -14.0d
|
||||
}
|
||||
]
|
||||
subtitle: ["{quests.tfg_tips.subtitle}"]
|
||||
title: "{quests.tfg_tips}"
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
default_reward_team: false
|
||||
detection_delay: 20
|
||||
disable_gui: false
|
||||
drop_book_on_death: false
|
||||
drop_loot_crates: false
|
||||
emergency_items_cooldown: 300
|
||||
grid_scale: 0.5d
|
||||
|
|
@ -24,6 +25,7 @@
|
|||
}
|
||||
pause_game: true
|
||||
progression_mode: "flexible"
|
||||
show_lock_icons: true
|
||||
title: "TerraFirmaGreg"
|
||||
version: 13
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ recipes:
|
|||
|
||||
# Whether to make miscellaneous recipes harder.
|
||||
# Default: false
|
||||
hardMiscRecipes: true
|
||||
hardMiscRecipes: false
|
||||
|
||||
# Whether to make Glass related recipes harder. Default: true
|
||||
hardGlassRecipes: true
|
||||
|
|
|
|||
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
#Inventory sorter modules
|
||||
[modules]
|
||||
#Sorting module
|
||||
sortingmodule = true
|
||||
#Wheel move module
|
||||
wheelmovemodule = true
|
||||
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
|
||||
[General]
|
||||
#Invert the behavior of the shift key for extracting items
|
||||
invertShift = false
|
||||
#Invert left and right click action on drawers
|
||||
invertClick = false
|
||||
|
||||
[Render]
|
||||
#Distance in blocks before item labels stop rendering
|
||||
labelRenderDistance = 25.0
|
||||
#Distance in blocks before quantity numbers stop rendering
|
||||
quantityRenderDistance = 10.0
|
||||
#Distance in blocks before quantity numbers begin to fade out
|
||||
quantityFadeDistance = 4.0
|
||||
|
||||
[Integration]
|
||||
#Enable extended data display in WAILA if present
|
||||
enableWaila = true
|
||||
#Enable extended data display in The One Probe if present
|
||||
enableTheOneProbe = true
|
||||
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
|
||||
[General]
|
||||
#The number of item stacks held in a basic unit of storage.
|
||||
#1x1 drawers hold 8 units, 1x2 drawers hold 4 units, 2x2 drawers hold 2 units.
|
||||
#Half-depth drawers hold half those amounts.
|
||||
baseStackStorage = 4
|
||||
#Controller range defines how far away a drawer can be connected
|
||||
#on X, Y, or Z planes. The default value of 50 gives the controller a very
|
||||
#large range, but not beyond the chunk load distance.
|
||||
#Range: 1 ~ 75
|
||||
controllerRange = 50
|
||||
enableUI = true
|
||||
enableSidedInput = true
|
||||
enableSidedOutput = true
|
||||
enableItemConversion = true
|
||||
enableExtraCompactingRules = true
|
||||
debugTrace = false
|
||||
#List of rules in format "domain:item1, domain:item2, n".
|
||||
#Creates a compacting drawer rule to convert 1 of item1 into n of item2.
|
||||
compactingRules = ["minecraft:clay, minecraft:clay_ball, 4"]
|
||||
|
||||
[StorageUpgrades]
|
||||
#Storage upgrades multiply storage capacity by the given amount.
|
||||
#When multiple storage upgrades are used together, their multipliers are added before being applied.
|
||||
level1Mult = 2
|
||||
level2Mult = 4
|
||||
level3Mult = 8
|
||||
level4Mult = 16
|
||||
level5Mult = 32
|
||||
|
||||
[Integration]
|
||||
#When true, shows quantity as NxS + R (by stack size) rather than count
|
||||
wailaStackRemainder = true
|
||||
#When true, does not show current quantities unless quantify key was used
|
||||
wailaRespectQuantifyKey = false
|
||||
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# The largest (inclusive) size of an item that is allowed in a supply cart.
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
maxItemSize = "VERY_LARGE"
|
||||
maxItemSize = "HUGE"
|
||||
#
|
||||
# Can the animal cart pick up players by pushing it into them?
|
||||
canPushIntoPlayers = true
|
||||
|
|
|
|||
191
config/tfccaelum-common.toml
Normal file
191
config/tfccaelum-common.toml
Normal file
|
|
@ -0,0 +1,191 @@
|
|||
|
||||
[general]
|
||||
#Enable rainbows
|
||||
enableRainbow = true
|
||||
#Enable planets
|
||||
enablePlanets = true
|
||||
#Enable monsters spawning on the surface during a blood moon event? Overwrites TFC's config for surface monsters
|
||||
enableBloodmoonSurfaceMonsters = false
|
||||
#Enable sun blindness? Looking at the sun for too long will make you blind for a period
|
||||
enableSunBlindness = false
|
||||
#Amount of days per real Earth month
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
averageDaysPerMonth = 30.436875
|
||||
#Synodic period of the moon in days
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
moonOrbitalPeriod = 29.530588
|
||||
#Moon scale factor
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
moonScale = 1.0
|
||||
#Sun scale factor
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
sunScale = 0.725
|
||||
#Planet scale factor
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
planetScale = 1.0
|
||||
#Planet distance factor
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
planetDistance = 1.0
|
||||
#Planet orbit velocity factor
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
planetOrbit = 1.0
|
||||
#Seasonal tilt of Earth
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
earthSeasonalTilt = 23.44
|
||||
#Bloodmoon spawn count multiplier
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
bloodmoonSpawnCountMultiplier = 1.0
|
||||
#Average inclination to Earth equator for the Moon (in degrees).
|
||||
#The closer to 0 this value is, the more frequent lunar and solar eclipses will be
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
moonEarthEquatorInclination = 23.43
|
||||
#Diameter of Mercury (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
mercuryDiameter = 4879.0
|
||||
#Diameter of Venus (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
venusDiameter = 12104.0
|
||||
#Diameter of Earth (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
earthDiameter = 12742.0
|
||||
#Diameter of Mars (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
marsDiameter = 6792.0
|
||||
#Diameter of Jupiter (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
jupiterDiameter = 142984.0
|
||||
#Diameter of Saturn (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
saturnDiameter = 120536.0
|
||||
#Diameter of Uranus (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
uranusDiameter = 51118.0
|
||||
#Diameter of Neptune (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
neptuneDiameter = 49528.0
|
||||
#Diameter of Pluto (km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
plutoDiameter = 2376.0
|
||||
#Tropical orbit period for Mercury (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
mercuryOrbitalPeriod = 87.968
|
||||
#Tropical orbit period for Venus (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
venusOrbitalPeriod = 224.695
|
||||
#Tropical orbit period for Earth (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
earthOrbitalPeriod = 365.242
|
||||
#Tropical orbit period for Mars (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
marsOrbitalPeriod = 779.94
|
||||
#Tropical orbit period for Jupiter (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
jupiterOrbitalPeriod = 4330.595
|
||||
#Tropical orbit period for Saturn (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
saturnOrbitalPeriod = 10746.94
|
||||
#Tropical orbit period for Uranus (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
uranusOrbitalPeriod = 30588.74
|
||||
#Tropical orbit period for Neptune (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
neptuneOrbitalPeriod = 59799.9
|
||||
#Sidereal orbit period for Pluto (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
plutoOrbitalPeriod = 90560.0
|
||||
#Semi major axis for Mercury (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
mercurySemiMajorAxis = 57.909
|
||||
#Semi major axis for Venus (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
venusSemiMajorAxis = 108.21
|
||||
#Semi major axis for Earth (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
earthSemiMajorAxis = 149.598
|
||||
#Semi major axis for Mars (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
marsSemiMajorAxis = 227.956
|
||||
#Semi major axis for Jupiter (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
jupiterSemiMajorAxis = 778.479
|
||||
#Semi major axis for Saturn (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
saturnSemiMajorAxis = 1432.041
|
||||
#Semi major axis for Uranus (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
uranusSemiMajorAxis = 2867.043
|
||||
#Semi major axis for Neptune (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
neptuneSemiMajorAxis = 4514.953
|
||||
#Semi major axis for Pluto (10^6 km)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
plutoSemiMajorAxis = 5869.656
|
||||
#Synodic period for Mercury (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
mercurySynodicPeriod = 115.88
|
||||
#Synodic period for Venus (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
venusSynodicPeriod = 583.92
|
||||
#Synodic period for Mars (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
marsSynodicPeriod = 779.94
|
||||
#Synodic period for Jupiter (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
jupiterSynodicPeriod = 4330.595
|
||||
#Synodic period for Saturn (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
saturnSynodicPeriod = 378.09
|
||||
#Synodic period for Uranus (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
uranusSynodicPeriod = 369.66
|
||||
#Synodic period for Neptune (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
neptuneSynodicPeriod = 367.49
|
||||
#Synodic period for Pluto (in real Earth days)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
plutoSynodicPeriod = 366.73
|
||||
#Ecliptic plane for Mercury (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
mercuryEclipticPlane = 7.004
|
||||
#Ecliptic plane for Venus (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
venusEclipticPlane = 3.395
|
||||
#Ecliptic plane for Mars (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
marsEclipticPlane = 1.848
|
||||
#Ecliptic plane for Jupiter (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
jupiterEclipticPlane = 1.304
|
||||
#Ecliptic plane for Saturn (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
saturnEclipticPlane = 2.486
|
||||
#Ecliptic plane for Uranus (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
uranusEclipticPlane = 0.77
|
||||
#Ecliptic plane for Neptune (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
neptuneEclipticPlane = 1.77
|
||||
#Ecliptic plane for Pluto (in degrees)
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
plutoEclipticPlane = 17.16
|
||||
#Enable auroras
|
||||
enableAurora = true
|
||||
#The maximum aurora bands that will be rendered
|
||||
#Range: 0 ~ 3
|
||||
maxBands = 3
|
||||
|
||||
[debug]
|
||||
#When enabled, prints debug values to console.
|
||||
enableDebug = false
|
||||
#x value factor.
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
xFactor = 0.0
|
||||
#y value factor.
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
yFactor = 0.0
|
||||
#z value factor.
|
||||
#Range: -1.7976931348623157E308 ~ 1.7976931348623157E308
|
||||
zFactor = 0.0
|
||||
#Toggle blend.
|
||||
enableBlend = false
|
||||
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
#.
|
||||
#Game ticks required for a Fan-based processing recipe to take effect.
|
||||
#Range: > 0
|
||||
fanProcessingTime = 3200
|
||||
fanProcessingTime = 400
|
||||
|
||||
#.
|
||||
#Moving Contraptions
|
||||
|
|
@ -249,13 +249,13 @@
|
|||
[kinetics.stressValues.v2.impact]
|
||||
display_board = 0.0
|
||||
deployer = 0.25
|
||||
mechanical_piston = 0.5
|
||||
mechanical_piston = 0.25
|
||||
millstone = 65535.0
|
||||
mechanical_bearing = 1.0
|
||||
mechanical_bearing = 0.5
|
||||
clockwork_bearing = 0.5
|
||||
cuckoo_clock = 0.125
|
||||
speedometer = 0.0
|
||||
copper_backtank = 0.5
|
||||
copper_backtank = 0.25
|
||||
mechanical_saw = 65535.0
|
||||
flywheel = 0.0
|
||||
encased_chain_drive = 0.0
|
||||
|
|
@ -266,14 +266,14 @@
|
|||
crushing_wheel = 65535.0
|
||||
mechanical_mixer = 65535.0
|
||||
gantry_shaft = 0.0
|
||||
rope_pulley = 0.5
|
||||
rope_pulley = 0.125
|
||||
rotation_speed_controller = 0.0
|
||||
mechanical_arm = 0.5
|
||||
netherite_backtank = 0.5
|
||||
mechanical_arm = 0.25
|
||||
netherite_backtank = 0.25
|
||||
andesite_encased_shaft = 65535.0
|
||||
mechanical_press = 65535.0
|
||||
large_cogwheel = 65535.0
|
||||
mechanical_drill = 0.5
|
||||
mechanical_drill = 0.25
|
||||
andesite_encased_large_cogwheel = 65535.0
|
||||
brass_encased_large_cogwheel = 65535.0
|
||||
mysterious_cuckoo_clock = 0.125
|
||||
|
|
@ -281,8 +281,8 @@
|
|||
shaft = 65535.0
|
||||
brass_encased_shaft = 65535.0
|
||||
gearshift = 0.0
|
||||
turntable = 0.5
|
||||
sticky_mechanical_piston = 0.5
|
||||
turntable = 0.25
|
||||
sticky_mechanical_piston = 0.25
|
||||
sequenced_gearshift = 0.0
|
||||
weighted_ejector = 0.25
|
||||
cogwheel = 65535.0
|
||||
|
|
@ -290,8 +290,8 @@
|
|||
belt = 65535.0
|
||||
brass_encased_cogwheel = 65535.0
|
||||
gearbox = 0.0
|
||||
hose_pulley = 0.5
|
||||
elevator_pulley = 0.5
|
||||
hose_pulley = 0.25
|
||||
elevator_pulley = 0.125
|
||||
mechanical_crafter = 0.125
|
||||
|
||||
#.
|
||||
|
|
|
|||
28
kubejs/assets/ad_astra/lang/en_us.json
Normal file
28
kubejs/assets/ad_astra/lang/en_us.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.",
|
||||
"block.ad_astra.moon_sand": "Moon Sand",
|
||||
"block.ad_astra.moon_cobblestone": "Anorthosite Cobblestone",
|
||||
"block.ad_astra.moon_cobblestone_slab": "Anorthosite Cobblestone Slab",
|
||||
"block.ad_astra.moon_cobblestone_stairs": "Anorthosite Cobblestone Stairs",
|
||||
"block.ad_astra.moon_pillar": "Anorthosite Pillar",
|
||||
"block.ad_astra.moon_stone_brick_slab": "Anorthosite Brick Slab",
|
||||
"block.ad_astra.moon_stone_brick_stairs": "Anorthosite Brick Stairs",
|
||||
"block.ad_astra.moon_stone_brick_wall": "Anorthosite Brick Wall",
|
||||
"block.ad_astra.moon_stone_bricks": "Anorthosite Bricks",
|
||||
"block.ad_astra.moon_stone_slab": "Anorthosite Slab",
|
||||
"block.ad_astra.moon_stone_stairs": "Anorthosite Stairs",
|
||||
"block.ad_astra.chiseled_moon_stone_bricks": "Chiseled Anorthosite Bricks",
|
||||
"block.ad_astra.chiseled_moon_stone_slab": "Chiseled Anorthosite Slab",
|
||||
"block.ad_astra.chiseled_moon_stone_stairs": "Chiseled Anorthosite Stairs",
|
||||
"block.ad_astra.cracked_moon_stone_bricks": "Cracked Anorthosite Bricks",
|
||||
"block.ad_astra.polished_moon_stone": "Polished Anorthosite",
|
||||
"block.ad_astra.polished_moon_stone_slab": "Polished Anorthosite Slab",
|
||||
"block.ad_astra.polished_moon_stone_stairs": "Polished Anorthosite Stairs",
|
||||
"material.ad_astra.desh": "Desh",
|
||||
"material.ad_astra.ostrum": "Ostrum",
|
||||
"material.ad_astra.calorite": "Calorite",
|
||||
"material.ad_astra.etrium": "Etrium",
|
||||
"tagprefix.anorthosite": "Anorthosite %s Ore",
|
||||
"tagprefix.basanite": "Basanite %s Ore",
|
||||
"tagprefix.syenite": "Syenite %s Ore"
|
||||
}
|
||||
|
|
@ -2,6 +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.beneath.blackstone_pebble": "Loose Pyroxenite",
|
||||
"block.beneath.blackstone_aqueduct": "Pyroxenite Aqueduct",
|
||||
"block.beneath.loose_blackstone": "Loose Pyroxenite",
|
||||
"block.beneath.ore.nether_cursecoal": "Anthracite Ore",
|
||||
"block.beneath.ore.nether_cursecoal.prospected": "Anthracite",
|
||||
"block.beneath.cursecoal_pile": "Anthracite Pile",
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@
|
|||
"item.gtceu.iron_hex_cable": "16x Cast Iron Cable",
|
||||
"item.gtceu.ice_bucket": "Ice Water Bucket",
|
||||
"material.gtceu.ice": "Ice Water",
|
||||
"material.gtceu.cooperite": "Cooperite",
|
||||
"metaitem.dust.tooltip.purify": "Drop in Water to get Clean Dust",
|
||||
"metaitem.crushed.tooltip.purify": "Drop in Water to get Purified Ore",
|
||||
"item.gtceu.tool.behavior.silk_ice": "Silk Harvests Packed Ice",
|
||||
|
|
|
|||
92
kubejs/assets/minecraft/atlases/armor_trims.json
Normal file
92
kubejs/assets/minecraft/atlases/armor_trims.json
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
{
|
||||
"sources": [
|
||||
{
|
||||
"type": "paletted_permutations",
|
||||
"textures": [
|
||||
"trims/models/armor/coast",
|
||||
"trims/models/armor/coast_leggings",
|
||||
"trims/models/armor/sentry",
|
||||
"trims/models/armor/sentry_leggings",
|
||||
"trims/models/armor/dune",
|
||||
"trims/models/armor/dune_leggings",
|
||||
"trims/models/armor/wild",
|
||||
"trims/models/armor/wild_leggings",
|
||||
"trims/models/armor/ward",
|
||||
"trims/models/armor/ward_leggings",
|
||||
"trims/models/armor/eye",
|
||||
"trims/models/armor/eye_leggings",
|
||||
"trims/models/armor/vex",
|
||||
"trims/models/armor/vex_leggings",
|
||||
"trims/models/armor/tide",
|
||||
"trims/models/armor/tide_leggings",
|
||||
"trims/models/armor/snout",
|
||||
"trims/models/armor/snout_leggings",
|
||||
"trims/models/armor/rib",
|
||||
"trims/models/armor/rib_leggings",
|
||||
"trims/models/armor/spire",
|
||||
"trims/models/armor/spire_leggings",
|
||||
"trims/models/armor/wayfinder",
|
||||
"trims/models/armor/wayfinder_leggings",
|
||||
"trims/models/armor/shaper",
|
||||
"trims/models/armor/shaper_leggings",
|
||||
"trims/models/armor/silence",
|
||||
"trims/models/armor/silence_leggings",
|
||||
"trims/models/armor/raiser",
|
||||
"trims/models/armor/raiser_leggings",
|
||||
"trims/models/armor/host",
|
||||
"trims/models/armor/host_leggings"
|
||||
],
|
||||
"palette_key": "trims/color_palettes/trim_palette",
|
||||
"permutations": {
|
||||
"almandine_tfc": "tfc:color_palettes/trims/almandine_tfc",
|
||||
"andradite_tfc": "tfc:color_palettes/trims/andradite_tfc",
|
||||
"blue_topaz_tfc": "tfc:color_palettes/trims/blue_topaz_tfc",
|
||||
"cinnabar_tfc": "tfc:color_palettes/trims/cinnabar_tfc",
|
||||
"coal_tfc": "tfc:color_palettes/trims/coal_tfc",
|
||||
"diamond_tfc": "tfc:color_palettes/trims/diamond_tfc",
|
||||
"emerald_tfc": "tfc:color_palettes/trims/emerald_tfc",
|
||||
"green_sapphire_tfc": "tfc:color_palettes/trims/green_sapphire_tfc",
|
||||
"grossular_tfc": "tfc:color_palettes/trims/grossular_tfc",
|
||||
"rutile_tfc": "tfc:color_palettes/trims/rutile_tfc",
|
||||
"lazurite_tfc": "tfc:color_palettes/trims/lazurite_tfc",
|
||||
"pyrope_tfc": "tfc:color_palettes/trims/pyrope_tfc",
|
||||
"rock_salt_tfc": "tfc:color_palettes/trims/rock_salt_tfc",
|
||||
"ruby_tfc": "tfc:color_palettes/trims/ruby_tfc",
|
||||
"salt_tfc": "tfc:color_palettes/trims/salt_tfc",
|
||||
"sapphire_tfc": "tfc:color_palettes/trims/sapphire_tfc",
|
||||
"sodalite_tfc": "tfc:color_palettes/trims/sodalite_tfc",
|
||||
"coke_tfc": "tfc:color_palettes/trims/coke_tfc",
|
||||
"spessartine_tfc": "tfc:color_palettes/trims/spessartine_tfc",
|
||||
"topaz_tfc": "tfc:color_palettes/trims/topaz_tfc",
|
||||
"uvarovite_tfc": "tfc:color_palettes/trims/uvarovite_tfc",
|
||||
"nether_quartz_tfc": "tfc:color_palettes/trims/nether_quartz_tfc",
|
||||
"certus_quartz_tfc": "tfc:color_palettes/trims/certus_quartz_tfc",
|
||||
"quartzite_tfc": "tfc:color_palettes/trims/quartzite_tfc",
|
||||
"realgar_tfc": "tfc:color_palettes/trims/realgar_tfc",
|
||||
"malachite_tfc": "tfc:color_palettes/trims/malachite_tfc",
|
||||
"glass_tfc": "tfc:color_palettes/trims/glass_tfc",
|
||||
"olivine_tfc": "tfc:color_palettes/trims/olivine_tfc",
|
||||
"opal_tfc": "tfc:color_palettes/trims/opal_tfc",
|
||||
"amethyst_tfc": "tfc:color_palettes/trims/amethyst_tfc",
|
||||
"lapis_tfc": "tfc:color_palettes/trims/lapis_tfc",
|
||||
"apatite_tfc": "tfc:color_palettes/trims/apatite_tfc",
|
||||
"red_garnet_tfc": "tfc:color_palettes/trims/red_garnet_tfc",
|
||||
"yellow_garnet_tfc": "tfc:color_palettes/trims/yellow_garnet_tfc",
|
||||
"monazite_tfc": "tfc:color_palettes/trims/monazite_tfc",
|
||||
"rose_quartz_tfc": "tfc:color_palettes/trims/rose_quartz_tfc",
|
||||
"fluix_tfc": "tfc:color_palettes/trims/fluix_tfc",
|
||||
"silver_tfc": "tfc:color_palettes/trims/silver_tfc",
|
||||
"sterling_silver_tfc": "tfc:color_palettes/trims/sterling_silver_tfc",
|
||||
"gold_tfc": "tfc:color_palettes/trims/gold_tfc",
|
||||
"rose_gold_tfc": "tfc:color_palettes/trims/rose_gold_tfc",
|
||||
"nickel_tfc": "tfc:color_palettes/trims/nickel_tfc",
|
||||
"platinum_tfc": "tfc:color_palettes/trims/platinum_tfc",
|
||||
"titanium_tfc": "tfc:color_palettes/trims/titanium_tfc",
|
||||
"bismuth_tfc": "tfc:color_palettes/trims/bismuth_tfc",
|
||||
"neutronium_tfc": "tfc:color_palettes/trims/neutronium_tfc",
|
||||
"pyrite_tfc": "tfc:color_palettes/trims/pyrite_tfc",
|
||||
"redx_tfc": "tfc:color_palettes/trims/redx_tfc"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
68
kubejs/assets/minecraft/atlases/blocks.json
Normal file
68
kubejs/assets/minecraft/atlases/blocks.json
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"sources": [
|
||||
{
|
||||
"type": "paletted_permutations",
|
||||
"textures": [
|
||||
"trims/items/leggings_trim",
|
||||
"trims/items/chestplate_trim",
|
||||
"trims/items/helmet_trim",
|
||||
"trims/items/boots_trim",
|
||||
"tfc:item/helmet_trim",
|
||||
"tfc:item/chestplate_trim",
|
||||
"tfc:item/greaves_trim",
|
||||
"tfc:item/boots_trim"
|
||||
],
|
||||
"palette_key": "trims/color_palettes/trim_palette",
|
||||
"permutations": {
|
||||
"almandine_tfc": "tfc:color_palettes/trims/almandine_tfc",
|
||||
"andradite_tfc": "tfc:color_palettes/trims/andradite_tfc",
|
||||
"blue_topaz_tfc": "tfc:color_palettes/trims/blue_topaz_tfc",
|
||||
"cinnabar_tfc": "tfc:color_palettes/trims/cinnabar_tfc",
|
||||
"coal_tfc": "tfc:color_palettes/trims/coal_tfc",
|
||||
"diamond_tfc": "tfc:color_palettes/trims/diamond_tfc",
|
||||
"emerald_tfc": "tfc:color_palettes/trims/emerald_tfc",
|
||||
"green_sapphire_tfc": "tfc:color_palettes/trims/green_sapphire_tfc",
|
||||
"grossular_tfc": "tfc:color_palettes/trims/grossular_tfc",
|
||||
"rutile_tfc": "tfc:color_palettes/trims/rutile_tfc",
|
||||
"lazurite_tfc": "tfc:color_palettes/trims/lazurite_tfc",
|
||||
"pyrope_tfc": "tfc:color_palettes/trims/pyrope_tfc",
|
||||
"rock_salt_tfc": "tfc:color_palettes/trims/rock_salt_tfc",
|
||||
"ruby_tfc": "tfc:color_palettes/trims/ruby_tfc",
|
||||
"salt_tfc": "tfc:color_palettes/trims/salt_tfc",
|
||||
"sapphire_tfc": "tfc:color_palettes/trims/sapphire_tfc",
|
||||
"sodalite_tfc": "tfc:color_palettes/trims/sodalite_tfc",
|
||||
"coke_tfc": "tfc:color_palettes/trims/coke_tfc",
|
||||
"spessartine_tfc": "tfc:color_palettes/trims/spessartine_tfc",
|
||||
"topaz_tfc": "tfc:color_palettes/trims/topaz_tfc",
|
||||
"uvarovite_tfc": "tfc:color_palettes/trims/uvarovite_tfc",
|
||||
"nether_quartz_tfc": "tfc:color_palettes/trims/nether_quartz_tfc",
|
||||
"certus_quartz_tfc": "tfc:color_palettes/trims/certus_quartz_tfc",
|
||||
"quartzite_tfc": "tfc:color_palettes/trims/quartzite_tfc",
|
||||
"realgar_tfc": "tfc:color_palettes/trims/realgar_tfc",
|
||||
"malachite_tfc": "tfc:color_palettes/trims/malachite_tfc",
|
||||
"glass_tfc": "tfc:color_palettes/trims/glass_tfc",
|
||||
"olivine_tfc": "tfc:color_palettes/trims/olivine_tfc",
|
||||
"opal_tfc": "tfc:color_palettes/trims/opal_tfc",
|
||||
"amethyst_tfc": "tfc:color_palettes/trims/amethyst_tfc",
|
||||
"lapis_tfc": "tfc:color_palettes/trims/lapis_tfc",
|
||||
"apatite_tfc": "tfc:color_palettes/trims/apatite_tfc",
|
||||
"red_garnet_tfc": "tfc:color_palettes/trims/red_garnet_tfc",
|
||||
"yellow_garnet_tfc": "tfc:color_palettes/trims/yellow_garnet_tfc",
|
||||
"monazite_tfc": "tfc:color_palettes/trims/monazite_tfc",
|
||||
"rose_quartz_tfc": "tfc:color_palettes/trims/rose_quartz_tfc",
|
||||
"fluix_tfc": "tfc:color_palettes/trims/fluix_tfc",
|
||||
"silver_tfc": "tfc:color_palettes/trims/silver_tfc",
|
||||
"sterling_silver_tfc": "tfc:color_palettes/trims/sterling_silver_tfc",
|
||||
"gold_tfc": "tfc:color_palettes/trims/gold_tfc",
|
||||
"rose_gold_tfc": "tfc:color_palettes/trims/rose_gold_tfc",
|
||||
"nickel_tfc": "tfc:color_palettes/trims/nickel_tfc",
|
||||
"platinum_tfc": "tfc:color_palettes/trims/platinum_tfc",
|
||||
"titanium_tfc": "tfc:color_palettes/trims/titanium_tfc",
|
||||
"bismuth_tfc": "tfc:color_palettes/trims/bismuth_tfc",
|
||||
"neutronium_tfc": "tfc:color_palettes/trims/neutronium_tfc",
|
||||
"pyrite_tfc": "tfc:color_palettes/trims/pyrite_tfc",
|
||||
"redx_tfc": "tfc:color_palettes/trims/redx_tfc"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -39,7 +39,6 @@
|
|||
"block.minecraft.polished_blackstone_slab": "Polished Pyroxenite Slab",
|
||||
"block.minecraft.polished_blackstone_stairs": "Polished Pyroxenite Stairs",
|
||||
"block.minecraft.polished_blackstone_wall": "Polished Pyroxenite Wall",
|
||||
"block.beneath.loose_blackstone": "Loose Pyroxenite",
|
||||
"block.minecraft.dripstone_block": "Raw Travertine",
|
||||
"block.minecraft.magma_block": "Pyroxenite Magma",
|
||||
"item.minecraft.iron_nugget": "Cast Iron Nugget",
|
||||
|
|
|
|||
|
|
@ -18,11 +18,11 @@
|
|||
{
|
||||
"type": "patchouli:text",
|
||||
"title": "Trade Results",
|
||||
"text": "$(li)3-9 String$(li)6-12 Sticks$(li)4-8 Charcoal$(li)5-12 Nether Quartz$(li)1-3 Tin Ingots$(li)1-3 Copper Ingots$(li)1-2 Leather$(li)8-12 Pyroxenite Bricks$(li)8-12 Migmatite Bricks"
|
||||
"text": "$(li)1 Copper Ingot$(li)1 Tin Ingot$(li)1 Silver Ingot$(li)1 Bronze Ingot$(li)1 Bismuth Bronze Ingot$(li)1 Cast Iron Ingot$(li)1 Zinc Ingot$(li)1 Brass Ingot$(li)1 Bismuth Ingot$(li)1 Nickel Ingot$(li)4-6 Sulfur Powder"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "$(li)6-12 Arrows$(li)4-12 Flux$(li)1-2 Raw Graphite$(li)4-8 Sulfur Powder$(li)2-4 Kaolin Clay$(li)4-8 Mangrove Lumber$(li)2-4 Mangrove Logs$(li)2-4 Cooked Venison$(li)8-16 Glow Berries$(li)2-4 Ghost Peppers$(li)2-4 Glowstone Dust"
|
||||
"text": "$(li)1-2 Leather$(li)6-12 String$(li)6-12 Nether Quartz$(li)12-18 Mangrove Lumber$(li)6-8 Mangrove Logs$(li)4-6 Cooked Venison$(li)4-6 Ghost Peppers$(li)4-6 Gunpowder$(li)4-8 Charcoal$(li)6-12 Arrows$(li)6-12 Flux$(li)8-12 Blackstone Bricks$(li)8-12 Deepslate Bricks$(li)8-16 Sticks"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
|
|
|
|||
|
|
@ -11,12 +11,12 @@
|
|||
{
|
||||
"type": "patchouli:crafting",
|
||||
"recipe": "tfc:crafting/fire_clay",
|
||||
"text": "Fire clay is made from $(l:tfg_ores/normal_graphite)graphite$() powder, crushed in a $(l:mechanics/quern)quern$(), as well as $(l:tfg_ores/surface_kaolin#powder)kaolinite$() powder"
|
||||
"text": "Fire clay is made from $(l:tfg_ores/earth_vein_index#normal_graphite)graphite$() powder, crushed in a $(l:mechanics/quern)quern$(), as well as $(l:tfg_ores/surface_kaolin#powder)kaolinite$() powder"
|
||||
},
|
||||
{
|
||||
"type": "tfc:heat_recipe",
|
||||
"recipe": "tfc:heating/kaolin_clay",
|
||||
"text": "Kaolinite powder is made by heating $(l:tfg_ores/surface_kaolin)Kaolin Clay$(). However, the process is not perfect, and only 20% of clay will form powder!"
|
||||
"text": "Kaolinite powder is made by heating $(l:mechanics/surface_kaolin)Kaolin Clay$(). However, the process is not perfect, and only 20% of clay will form powder!"
|
||||
},
|
||||
{
|
||||
"type": "tfc:knapping_recipe",
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
"anchor": "potash",
|
||||
"recipe": "tfg:smelting/dried_seaweed_to_soda",
|
||||
"recipe2": "tfg:smelting/dried_kelp_to_soda",
|
||||
"text": "A type of $(thing)Potash$() or equivalent is also required for glass batches. $(thing)Soda Ash$() can be used, which is a powder made from heating $(thing)Dried Seaweed$() or $(thing)Kelp$(). $(l:tfg_ores/normal_saltpeter)Saltpeter$() can be used as well."
|
||||
"text": "A type of $(thing)Potash$() or equivalent is also required for glass batches. $(thing)Soda Ash$() can be used, which is a powder made from heating $(thing)Dried Seaweed$() or $(thing)Kelp$(). $(l:tfg_ores/earth_vein_index#normal_saltpeter)Saltpeter$() can be used as well."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Kaolin Clay",
|
||||
"icon": "tfc:kaolin_clay",
|
||||
"category": "tfc:tfg_ores",
|
||||
"category": "tfc:mechanics",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Amethyst & Garnet",
|
||||
"icon": "minecraft:amethyst_shard",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 230$(br)Density: 0.25$(br)Type: Disc Vein$(br)Y: -64 - 26$(br)Size: 28$(br)Height: 8$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble, Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Amethyst, Red Garnet, Yellow Garnet, Opal Buds"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Amethyst",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/amethyst" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 65%$(br)Source of: Iron$(br)Formula: (SiO₂)₄Fe"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Opal",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/opal" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Formula: (SiO₂)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Red Garnet",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/red_garnet" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Source of: Pyrope, Almandine, Spessartine"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Garnet",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_garnet" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Andradite, Grossular, Uvarovite"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Opal & Garnet",
|
||||
"icon": "gtceu:opal_gem",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.35$(br)Type: Disc Vein$(br)Y: -64 - 62$(br)Size: 26$(br)Height: 6$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Amethyst, Red Garnet, Yellow Garnet, Opal Buds"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Opal",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/opal" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 55%$(br)Formula: (SiO₂)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Amethyst",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/amethyst" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Iron$(br)Formula: (SiO₂)₄Fe"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Red Garnet",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/red_garnet" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Source of: Pyrope, Almandine, Spessartine"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Garnet",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_garnet" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Andradite, Grossular, Uvarovite"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Gold (Deep)",
|
||||
"icon": "gtceu:rich_raw_gold",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 260$(br)Density: 0.45$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 32$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Limonite, Hematite, Native Gold"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/gold" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 75%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_limonite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/hematite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/goethite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
{
|
||||
"name": "Hematite, Goethite, & Ruby",
|
||||
"icon": "gtceu:rich_raw_hematite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.35$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 40$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Hematite, Limonite, Native Gold"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/hematite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_limonite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/goethite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/gold" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Ruby",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/ruby" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Chromium, Aluminium$(br)Formula: CrAl₂O₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Goethite & Malachite",
|
||||
"icon": "gtceu:rich_raw_goethite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 240$(br)Density: 0.35$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 32$(br2)Stone types: Marble, Limestone$(br2)Indicator: Limonite, Hematite, Malachite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/goethite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_limonite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/hematite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Malachite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/malachite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Melts into: Copper$(br)Formula: Cu₂CH₂O₅"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
{
|
||||
"name": "Chromite & Magnetite",
|
||||
"icon": "gtceu:rich_raw_chromite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 205$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 340$(br2)Stone types: Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Magnetite, Native Gold, Chromite, Sapphire"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Chromite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/chromite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 60%$(br)Source of: Chromium$(br)Formula: FeCr₂O₄"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Magnetite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/magnetite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: Fe₃O₄"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Vanadium Magnetite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/vanadium_magnetite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Iron, Vanadium$(br)Formula: (Fe₃O₄)V"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/gold" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sapphire",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sapphire" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Wulfenite & Molybdenite",
|
||||
"icon": "gtceu:rich_raw_wulfenite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 245$(br)Density: 0.45$(br)Type: Cluster Vein$(br)Y: -64 - 10$(br)Size: 26$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Wulfenite, Molybdenite, Molybdenum, Powellite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Wulfenite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/wulfenite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 40%$(br)Source of: Lead, Molybdenum$(br)Formula: PbMoO₄$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Molybdenite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/molybdenite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Source of: Molybdenum$(br)Formula: MoS₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Molybdenum",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/molybdenum" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Molybdenum$(br)Formula: Mo"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Powellite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/powellite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Molybdenum$(br)Formula: CaMoO₄"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"name": "Naquadah & Plutonium",
|
||||
"icon": "gtceu:rich_raw_naquadah",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 310$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -64 - -20$(br)Size: 32$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Naquadah, Plutonium"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Naquadah",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/naquadah" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 75%$(br)Source of: Stargatium$(br)Formula: Nq"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Plutonium",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/plutonium" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Plutonium$(br)Formula: Pu²³⁹$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"name": "Uraninite & Pitchblende",
|
||||
"icon": "gtceu:rich_raw_uraninite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.45$(br)Type: Cluster Vein$(br)Y: -64 - -20$(br)Size: 24$(br2)Stone types: Granite, Diorite, Gabbro, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Pitchblende, Uraninite$(br2)There's no fission reactors in TFG, but Uranium has other uses."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Uraninite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/uraninite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Source of: Uranium$(br)Formula: UO₂$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pitchblende",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pitchblende" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Source of: Uranium$(br)Formula: (UO₂)₃ThPb$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,58 +0,0 @@
|
|||
{
|
||||
"name": "Sapphire & Almandine",
|
||||
"icon": "gtceu:sapphire_gem",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 180$(br)Density: 0.35$(br)Type: Disc Vein$(br)Y: -64 - 26$(br)Size: 28$(br)Height: 8$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Almandine, Pyrope, Sapphire, Green Sapphire$(br2)If you're looking for $(thing)Aluminium$(), find a $(l:tfg_ores/normal_bauxite)Bauxite$() vein instead.$(br)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Almandine",
|
||||
"anchor": "almandine",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/almandine" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Aluminium, Iron$(br)Formula: Al₂Fe₃Si₃O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrope",
|
||||
"anchor": "pyrope",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pyrope" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Aluminium, Magnesium$(br)Formula: Al₂Mg₃Si₃O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sapphire",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sapphire" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Green Sapphire",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/green_sapphire" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Scheelite & Tungstate",
|
||||
"icon": "gtceu:rich_raw_scheelite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.35$(br)Type: Cluster Vein$(br)Y: -64 - 0$(br)Size: 28$(br2)Stone types: Granite, Diorite, Gabbro$(br2)Indicator: Scheelite, Tungstate, Lithium"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Scheelite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/scheelite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 45%$(br)Source of: Tungsten$(br)Formula: Ca(WO₃)O"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Tungstate",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/tungstate" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Tungsten, Lithium$(br)Formula: Li₂(WO₃)O"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lithium",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lithium" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Lithium$(br)Formula: Li"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Sheldonite & Bornite",
|
||||
"icon": "gtceu:rich_raw_platinum",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 300$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -64 - 0$(br)Size: 30$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Bornite, Cooperite, Platinum, Palladium"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sheldonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cooperite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Platinum, Nickel, Palladium$(br)Formula: Pt₃NiSPd"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Platinum",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/platinum" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Smelts into: Platinum$(br)Formula: Pt"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Palladium",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/palladium" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Palladium$(br)Formula: Pt"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bornite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bornite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Smelts into: Copper$(br)Formula: Cu₅FeS₄"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Topaz & Chalcocite",
|
||||
"icon": "gtceu:topaz_gem",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 260$(br)Density: 0.3$(br)Type: Disc Vein$(br)Y: -64 - 26$(br)Size: 28$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Topaz, Blue Topaz, Chalcocite, Bornite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Topaz",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/topaz" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Aluminium, Fluorine$(br)Formula: Al₂SiFH₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Blue Topaz",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/blue_topaz" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Aluminium, Fluorine$(br)Formula: Al₂SiF₂H₂O₆"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Chalcocite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/chalcocite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Smelts into: Copper$(br)Formula: Cu₂S"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bornite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bornite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Smelts into: Copper$(br)Formula: Cu₅FeS₄"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"__credits__": "This page was automatically generated by OresToFieldGuide.",
|
||||
"name": "Earth Ore Index",
|
||||
"icon": "tfc:ore/normal_native_copper",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"secret": false,
|
||||
"pages": [
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "This is the $(thing)Ore Index$() for $(thing)Earth$(). All ores are sorted alphabetically and then by richest to poorest vein type. You can click on them to learn more information about each vein.",
|
||||
"title": "Earth Ore Index",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Almandine: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)Aluminium: $(l:tfg_ores/earth_vein_index#normal_bauxite)25%$(/l)$()$(li)Alunite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Amethyst: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)Apatite: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)Asbestos: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Barite: $(l:tfg_ores/earth_vein_index#normal_quartz)20%$(/l)$()$(li)Basaltic Mineral Sands: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Bastnasite: $(l:tfg_ores/earth_vein_index#normal_monazite)50%$(/l)$()$(li)Bauxite: $(l:tfg_ores/earth_vein_index#normal_bauxite)45%$(/l), $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Bentonite: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Beryllium: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)Bismuth: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)90%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Blue Topaz: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Borax: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()$(li)Bornite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Calcite: $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/earth_vein_index#surface_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)Certus Quartz: $(l:tfg_ores/earth_vein_index#normal_quartz)25%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/earth_vein_index#deep_magnetite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Cobalt: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Diamond: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Diatomite: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()$(li)Electrotine: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()$(li)Emerald: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)Fuller's Earth: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Galena: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)Garnet Sand: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Garnierite: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)Glauconite Sand: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Goethite: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)Granitic Mineral Sand: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Graphite: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()$(li)Green Sapphire: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l)$()$(li)Grossular: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()$(li)Gypsum: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Hematite: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)Ilmenite: $(l:tfg_ores/earth_vein_index#normal_bauxite)30%$(/l)$()$(li)Kyanite: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Lapis: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Lead: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Lepidolite: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)Lithium: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)Magnesite: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)5%$(/l)$()$(li)Malachite: $(l:tfg_ores/earth_vein_index#deep_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l)$()$(li)Mica: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Molybdenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)30%$(/l)$()$(li)Molybdenum: $(l:tfg_ores/earth_vein_index#deep_molybdenum)15%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Monazite: $(l:tfg_ores/earth_vein_index#normal_monazite)25%$(/l)$()$(li)Native Copper: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Native Gold: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)9%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)5%$(/l)$()$(li)Native Silver: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l)$()$(li)Neodymium: $(l:tfg_ores/earth_vein_index#normal_monazite)25%$(/l)$()$(li)Nickel: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Oilsands: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)Olivine: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Opal: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)Palladium: $(l:tfg_ores/earth_vein_index#deep_sheldonite)15%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)Pitchblende: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Platinum: $(l:tfg_ores/earth_vein_index#deep_sheldonite)25%$(/l)$()$(li)Pollucite: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Powellite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)15%$(/l)$()$(li)Pyrite: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)Pyrochlore: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)Pyrolusite: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Pyrope: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)Quartzite: $(l:tfg_ores/earth_vein_index#normal_quartz)54%$(/l)$()$(li)Realgar: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)Redstone: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Rock Salt: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)Ruby: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Salt: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)Sapphire: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)5%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Scheelite: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Sheldonite: $(l:tfg_ores/earth_vein_index#deep_sheldonite)25%$(/l)$()$(li)Soapstone: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Spodumene: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Stibnite: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Talc: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Thorium: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Tin: $(l:tfg_ores/earth_vein_index#normal_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)40%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Topaz: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)15%$(/l)$()$(li)Wulfenite: $(l:tfg_ores/earth_vein_index#deep_molybdenum)40%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)15%$(/l)$()$(li)Yellow Limonite: $(l:tfg_ores/earth_vein_index#normal_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l)$()$(li)Zeolite: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,84 +1,89 @@
|
|||
{
|
||||
"name": "Hazardous Materials",
|
||||
"icon": "gtceu:raw_plutonium",
|
||||
"category": "tfc:tfg_ores",
|
||||
"priority": true,
|
||||
"sortnum": 1,
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Hazardous Materials",
|
||||
"item": "gtceu:raw_plutonium",
|
||||
"text": "Some ores and dusts are hazardous and can cause negative effects or even kill you if they are carried in your inventory.$(br2)Certain equipment such as $(thing)masks$(), $(thing)gloves$(), and $(thing)hazardous material suits$() later on can be used to conter these effects"
|
||||
},
|
||||
{ "type": "patchouli:crafting", "title": "Face Mask", "recipe": "gtceu:shaped/face_mask" },
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": "gtceu:rubber_gloves",
|
||||
"title": "Rubber gloves",
|
||||
"link_recipes": true,
|
||||
"text": "Rubber gloves can be made from $(l:mechanics/leather_making)leather$()."
|
||||
},
|
||||
{
|
||||
"type": "tfc:knapping_recipe",
|
||||
"recipe": "tfchotornot:leather_knapping/mittens",
|
||||
"text": "First knap the leather into mittens."
|
||||
},
|
||||
{
|
||||
"type": "tfc:sealed_barrel_recipe",
|
||||
"recipe": "tfg:sealed_barrel/prepared_leather_gloves",
|
||||
"text": "Mittens are then soaked in $(thing)Vinegar$(), a mixture of fruit and alcohol."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": "tfg:latex_soaked_gloves",
|
||||
"text": "Prepared leather gloves are then heated in a $(thing)vat$() with $(thing)Vulcanized Latex$(), a mixture of latex and wood ash."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": "gtceu:rubber_gloves",
|
||||
"text": "Finally, the latex-soaked gloves are heated in an $(l:firmalife/oven)Oven$()."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Rocks",
|
||||
"item": { "tag": "tfc:rock_knapping" },
|
||||
"text": "The easiest way to prevent hazardous items from entering your inventory is to not pick them up at all.$(br)Filling your inventory with $(thing)Rocks$(), for example, will let you pick and choose which items you want to pick up, letting you deal with the hazardous ones all at once later."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Containers",
|
||||
"text": "Hazardous materials only deal damage while they are in your $(thing)inventory$(), but that doesn't apply to other containers!$(br)Hazardous materials will not deal damage while they are in another container such as a $(l:tfg_tips/inventory_management)Backpack$() or $(l:getting_started/pottery#vessel)Vessel$(). $(thing)Right-clicking$() while holding a vessel will allow direct transfer of it's contents to and from containers",
|
||||
"item": "sophisticatedbackpacks:backpack,tfc:ceramic/vessel,tfc:ceramic/large_vessel"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Spring Water",
|
||||
"item": "tfc:bucket/spring_water",
|
||||
"text": "Standing in $(thing)Spring Water$() will provide a slow $(thing)Regeneration$() effect."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Aged Alcohol",
|
||||
"text": "$(thing)Aged Alcohol$() will give potion buffs, some of which you might find useful.$(br2)You can drink them with a $(l:getting_started/pottery#jug)Jug$() or $(l:waterflasks/recipes)Flask$().",
|
||||
"item": "tfcagedalcohol:bucket/aged_beer,tfcagedalcohol:bucket/aged_cider,tfcagedalcohol:bucket/aged_rum,tfcagedalcohol:bucket/aged_sake,tfcagedalcohol:bucket/aged_vodka,tfcagedalcohol:bucket/aged_whiskey,tfcagedalcohol:bucket/aged_corn_whiskey,tfcagedalcohol:bucket/aged_rye_whiskey"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Aged Beer: Absorption II (20:00)$(br2)Aged Cider: Speed (5:20)$(br2)Aged Rum: Speed II (2:40)$(br2)Aged Sake: Resistance (5:20)$(br2)Aged Vodka: Resistance II (2:40)$(br2)Aged Corn Whiskey: Haste (5:20)$(br2)Aged Rye Whiskey: Haste (5:20)$(br2)Aged Whiskey: Haste II (2:40)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": { "tag": "tfc:foods" },
|
||||
"title": "Nutrition",
|
||||
"text": "Eating better foods with more $(l:getting_started/food_and_water#nutrients)nutrition$() will raise your maximum HP by a significant amount.$(br2)$(l:mechanics/pot#soup)Soups$(), $(l:mechanics/sandwiches)Sandwiches$(), and $(l:mechanics/salad)Salads$() are great for this."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Bed",
|
||||
"item": { "tag": "minecraft:beds" },
|
||||
"text": "If all else fails, bringing along a bed to respawn is a good idea.$(br2)If you don't have access to $(thing)Wool$() or $(thing)String$(), you can also make a $(l:getting_started/a_place_to_sleep)Thatch Bed$()."
|
||||
}
|
||||
]
|
||||
"name": "Hazardous Materials",
|
||||
"icon": "createdeco:decal_skull",
|
||||
"category": "tfc:tfg_ores",
|
||||
"priority": true,
|
||||
"sortnum": 1,
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Hazardous Materials",
|
||||
"item": "gtceu:cobaltite_dust",
|
||||
"text": "Some ores and dusts are hazardous and can cause negative effects or even kill you if they are carried in your inventory.$(br2)Certain equipment such as $(thing)masks$(), $(thing)gloves$(), and $(thing)hazardous material suits$() later on can be used to counter these effects."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:crafting",
|
||||
"title": "Face Mask",
|
||||
"recipe": "gtceu:shaped/face_mask",
|
||||
"text": "The $(thing)Face Mask$() provides protection from any $(item)Inhalation$() hazards, such as Arsenicosis."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": "gtceu:rubber_gloves",
|
||||
"title": "Rubber gloves",
|
||||
"link_recipes": true,
|
||||
"text": "Rubber gloves can either be made from $(l:mechanics/leather_making)Leather$() and $(l:arborfirmacraft/making_rubber)Latex$(), or out of Rubber Sheets. They provide protection from any $(item)Skin Contact$() hazards, such as Berylliosis."
|
||||
},
|
||||
{
|
||||
"type": "tfc:knapping_recipe",
|
||||
"recipe": "tfchotornot:leather_knapping/mittens",
|
||||
"text": "First, knap the leather into mittens."
|
||||
},
|
||||
{
|
||||
"type": "tfc:sealed_barrel_recipe",
|
||||
"recipe": "tfg:sealed_barrel/prepared_leather_gloves",
|
||||
"text": "Mittens are then soaked in $(thing)Vinegar$(), a mixture of fruit and alcohol."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": "tfg:latex_soaked_gloves",
|
||||
"text": "Prepared leather gloves are then heated in a $(thing)vat$() with $(thing)Vulcanized Latex$(), a mixture of latex and wood ash."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": "gtceu:rubber_gloves",
|
||||
"text": "Finally, the latex-soaked gloves are heated in an $(l:firmalife/oven)Oven$()."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Rocks",
|
||||
"item": { "tag": "tfc:rock_knapping" },
|
||||
"text": "The easiest way to prevent hazardous items from entering your inventory is to not pick them up at all.$(br)Filling your inventory with $(thing)Rocks$(), for example, will let you pick and choose which items you want to pick up, letting you deal with the hazardous ones all at once later."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Containers",
|
||||
"text": "Hazardous materials only deal damage while they are in your $(thing)inventory$(), but that doesn't apply to other containers!$(br)Hazardous materials will not deal damage while they are in another container such as a $(l:tfg_tips/inventory_management)Backpack$() or $(l:getting_started/pottery#vessel)Vessel$(). $(thing)Right-clicking$() while holding a vessel will allow direct transfer of it's contents to and from containers",
|
||||
"item": "sophisticatedbackpacks:backpack,tfc:ceramic/vessel,tfc:ceramic/large_vessel"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Spring Water",
|
||||
"item": "tfc:bucket/spring_water",
|
||||
"text": "Standing in $(thing)Spring Water$() will provide a slow $(thing)Regeneration$() effect."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Aged Alcohol",
|
||||
"text": "$(thing)Aged Alcohol$() will give potion buffs, some of which you might find useful.$(br2)You can drink them with a $(l:getting_started/pottery#jug)Jug$() or $(l:waterflasks/recipes)Flask$().",
|
||||
"item": "tfcagedalcohol:bucket/aged_beer,tfcagedalcohol:bucket/aged_cider,tfcagedalcohol:bucket/aged_rum,tfcagedalcohol:bucket/aged_sake,tfcagedalcohol:bucket/aged_vodka,tfcagedalcohol:bucket/aged_whiskey,tfcagedalcohol:bucket/aged_corn_whiskey,tfcagedalcohol:bucket/aged_rye_whiskey"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Aged Beer: Absorption II (20:00)$(br2)Aged Cider: Speed (5:20)$(br2)Aged Rum: Speed II (2:40)$(br2)Aged Sake: Resistance (5:20)$(br2)Aged Vodka: Resistance II (2:40)$(br2)Aged Corn Whiskey: Haste (5:20)$(br2)Aged Rye Whiskey: Haste (5:20)$(br2)Aged Whiskey: Haste II (2:40)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"item": { "tag": "tfc:foods" },
|
||||
"title": "Nutrition",
|
||||
"text": "Eating better foods with more $(l:getting_started/food_and_water#nutrients)nutrition$() will raise your maximum HP by a significant amount.$(br2)$(l:mechanics/pot#soup)Soups$(), $(l:mechanics/sandwiches)Sandwiches$(), and $(l:mechanics/salad)Salads$() are great for this."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Bed",
|
||||
"item": { "tag": "minecraft:beds" },
|
||||
"text": "If all else fails, bringing along a bed to respawn is a good idea.$(br2)If you don't have access to $(thing)Wool$() or $(thing)String$(), you can also make a $(l:getting_started/a_place_to_sleep)Thatch Bed$()."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,44 +0,0 @@
|
|||
{
|
||||
"name": "Ore Index",
|
||||
"icon": "minecraft:diamond_pickaxe",
|
||||
"category": "tfc:tfg_ores",
|
||||
"priority": true,
|
||||
"sortnum": 2,
|
||||
"read_by_default": true,
|
||||
"pages":
|
||||
[
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "This is a list of every ore in the world, sorted alphabetically, and then by richest to poorest vein type.$(br2)Almandine: $(l:tfg_ores/deep_sapphire)35%$()$(br)Aluminium: $(l:tfg_ores/normal_bauxite)25%$()$(br)Alunite: $(l:tfg_ores/normal_saltpeter)15%$()$(br)Amethyst: $(l:tfg_ores/deep_garnet_amethyst)65%$(), $(l:tfg_ores/deep_garnet_opal)25%$()$(br)Apatite: $(l:tfg_ores/normal_apatite)50%$()$(br)Asbestos: $(l:tfg_ores/normal_garnet_tin)25%$()$(br)Barite: $(l:tfg_ores/normal_quartz)15%$()$(br)Basaltic Mineral Sand: $(l:tfg_ores/normal_basaltic_sands)35%$()$(br)Bastnasite: $(l:tfg_ores/normal_monazite)50%$()"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Bauxite: $(l:tfg_ores/normal_bauxite)45%$(), $(l:tfg_ores/normal_mica)25%$()$(br)Bentonite: $(l:tfg_ores/normal_olivine)35%$()$(br)Beryllium: $(l:tfg_ores/normal_beryllium)35%$()$(br)Bismuth: $(l:tfg_ores/surface_bismuth)90%$(), $(l:tfg_ores/normal_bismuth)80%$()$(br)Blue Topaz: $(l:tfg_ores/deep_topaz)35%$()$(br)Borax: $(l:tfg_ores/normal_salt)15%$()$(br)Bornite: $(l:tfg_ores/deep_sheldonite)35%$(), $(l:tfg_ores/deep_topaz)15%$()$(br)Calcite: $(l:tfg_ores/normal_lapis)15%$()$(br)Cassiterite: $(l:tfg_ores/surface_cassiterite)60%$(), $(l:tfg_ores/normal_cassiterite)40%$(), $(l:tfg_ores/surface_copper)5%$()$(br)Cassiterite Sand: $(l:tfg_ores/normal_garnet_tin)35%$()$(br)Certus Quartz: $(l:tfg_ores/normal_quartz)30%$()$(br)Chalcocite: $(l:tfg_ores/deep_topaz)25%$()$(br)Chalcopyrite: $(l:tfg_ores/surface_copper)55%$(), $(l:tfg_ores/normal_copper)20%$()$(br)Chromite: $(l:tfg_ores/deep_magnetite)60%$()$(br)Cinnabar: $(l:tfg_ores/normal_redstone)20%$()$(br)Coal: $(l:tfg_ores/normal_coal)100%$(), $(l:tfg_ores/normal_graphite)30%$()$(br)Cobalt: $(l:tfg_ores/normal_garnierite)15%$()"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Cobaltite: $(l:tfg_ores/normal_garnierite)20%$()$(br)Copper: $(l:tfg_ores/normal_copper)65%$(), $(l:tfg_ores/normal_tetrahedrite)30%$(), $(l:tfg_ores/surface_tetrahedrite)20%$()$(br)Diamond: $(l:tfg_ores/normal_graphite)25%$()$(br)Diatomite: $(l:tfg_ores/normal_saltpeter)25%$(), $(l:tfg_ores/normal_garnet_tin)15%$()$(br)Electrotine: $(l:tfg_ores/normal_saltpeter)25%$()$(br)Emerald: $(l:tfg_ores/normal_beryllium)50%$()$(br)Fuller's Earth: $(l:tfg_ores/normal_basaltic_sands)25%$()$(br)Galena: $(l:tfg_ores/normal_silver)30%$()$(br)Garnet Sand: $(l:tfg_ores/normal_garnet_tin)25%$()$(br)Garnierite: $(l:tfg_ores/normal_garnierite)30%$()$(br)Glauconite Sand: $(l:tfg_ores/normal_lubricant)25%$(), $(l:tfg_ores/normal_olivine)15%$()$(br)Goethite: $(l:tfg_ores/deep_limonite)50%$(), $(l:tfg_ores/deep_hematite)25%$(), $(l:tfg_ores/normal_hematite)15%$(), $(l:tfg_ores/normal_limonite)15%$(), $(l:tfg_ores/normal_gold)5%$(), $(l:tfg_ores/deep_gold)5%$()$(br)Gold: $(l:tfg_ores/deep_gold)75%$(), $(l:tfg_ores/normal_gold)55%$(), $(l:tfg_ores/deep_magnetite)15%$(), $(l:tfg_ores/normal_magnetite)10%$(), $(l:tfg_ores/deep_hematite)5%$(), $(l:tfg_ores/normal_hematite)5%$()$(br)Granitic Mineral Sand: $(l:tfg_ores/normal_basaltic_sands)25%$()$(br)Graphite: $(l:tfg_ores/normal_graphite)45%$()$(br)Green Sapphire: $(l:tfg_ores/deep_sapphire)15%$()"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Grossular: $(l:tfg_ores/normal_manganese)30%$()$(br)Gypsum: $(l:tfg_ores/normal_basaltic_sands)15%$()$(br)Hematite: $(l:tfg_ores/normal_hematite)50%$(), $(l:tfg_ores/deep_hematite)35%$(), $(l:tfg_ores/normal_gold)20%$(), $(l:tfg_ores/normal_limonite)20%$(), $(l:tfg_ores/deep_gold)15%$(), $(l:tfg_ores/deep_limonite)15%$()$(br)Ilmenite: $(l:tfg_ores/normal_bauxite)30%$()$(br)Iron: $(l:tfg_ores/normal_copper)5%$()$(br)Kaolinite: $(l:tfg_ores/surface_kaolin)20%$()$(br)Kyanite: $(l:tfg_ores/normal_mica)35%$()$(br)Lapis: $(l:tfg_ores/normal_lapis)25%$()$(br)Lazurite: $(l:tfg_ores/normal_lapis)35%$()$(br)Lead: $(l:tfg_ores/normal_silver)55%$(), $(l:tfg_ores/normal_bismuth)11%$(), $(l:tfg_ores/surface_bismuth)7%$()$(br)Lepidolite: $(l:tfg_ores/normal_salt)15%$(), $(l:tfg_ores/normal_spodumene)15%$()$(br)Lithium: $(l:tfg_ores/deep_scheelite)20%$()$(br)Magnesite: $(l:tfg_ores/normal_olivine)25%$()$(br)Magnetite: $(l:tfg_ores/normal_magnetite)65%$(), $(l:tfg_ores/deep_magnetite)5%$()$(br)Malachite: $(l:tfg_ores/deep_limonite)20%$(), $(l:tfg_ores/normal_limonite)15%$()$(br)Mica: $(l:tfg_ores/normal_mica)25%$()"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Molybdenite: $(l:tfg_ores/deep_molybdenum)30%$()$(br)Molybdenum: $(l:tfg_ores/deep_molybdenum)15%$()$(br)Monazite: $(l:tfg_ores/normal_monazite)25%$()$(br)Naquadah: $(l:tfg_ores/deep_naquadah)75%$()$(br)Neodymium: $(l:tfg_ores/normal_monazite)25%$()$(br)Nether Quartz: $(l:tfg_ores/normal_quartz)10%$()$(br)Nickel: $(l:tfg_ores/normal_garnierite)10%$()$(br)Oilsands: $(l:tfg_ores/normal_oilsands)100%$()$(br)Olivine: $(l:tfg_ores/normal_olivine)25%$()$(br)Opal: $(l:tfg_ores/deep_garnet_opal)55%$(), $(l:tfg_ores/deep_garnet_amethyst)15%$()$(br)Palladium: $(l:tfg_ores/deep_sheldonite)15%$()$(br)Pentlandite: $(l:tfg_ores/normal_garnierite)25%$(), $(l:tfg_ores/normal_lubricant)15%$()$(br)Pitchblende: $(l:tfg_ores/deep_pitchblende)50%$()$(br)Platinum: $(l:tfg_ores/deep_sheldonite)25%$()$(br)Plutonium: $(l:tfg_ores/deep_naquadah)25%$()$(br)Pollucite: $(l:tfg_ores/normal_mica)15%$()$(br)Powellite: $(l:tfg_ores/deep_molybdenum)15%$()"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Pyrite: $(l:tfg_ores/normal_sulfur)35%$(), $(l:tfg_ores/normal_sphalerite)25%$(), $(l:tfg_ores/normal_copper)10%$(), $(l:tfg_ores/surface_sphalerite)5%$()$(br)Pyrochlore: $(l:tfg_ores/normal_apatite)15%$()$(br)Pyrolusite: $(l:tfg_ores/normal_manganese)20%$()$(br)Pyrope: $(l:tfg_ores/deep_sapphire)25%$()$(br)Quartzite: $(l:tfg_ores/normal_quartz)45%$()$(br)Realgar: $(l:tfg_ores/surface_copper)15%$()$(br)Red Garnet: $(l:tfg_ores/deep_garnet_amethyst)5%$(), $(l:tfg_ores/deep_garnet_opal)5%$()$(br)Redstone: $(l:tfg_ores/normal_redstone)45%$()$(br)Rock Salt: $(l:tfg_ores/normal_salt)40%$(), $(l:tfg_ores/normal_spodumene)20%$()$(br)Ruby: $(l:tfg_ores/normal_redstone)35%$(), $(l:tfg_ores/deep_hematite)20%$()$(br)Salt: $(l:tfg_ores/normal_salt)30%$(), $(l:tfg_ores/normal_spodumene)30%$()$(br)Saltpeter: $(l:tfg_ores/normal_saltpeter)35%$()$(br)Sapphire: $(l:tfg_ores/deep_sapphire)15%$(), $(l:tfg_ores/deep_magnetite)5%$()$(br)Scheelite: $(l:tfg_ores/deep_scheelite)45%$()$(br)Sheldonite: $(l:tfg_ores/deep_sheldonite)25%$()$(br)Silver: $(l:tfg_ores/normal_silver)15%$()$(br)Soapstone: $(l:tfg_ores/normal_lubricant)30%$()"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Sodalite: $(l:tfg_ores/normal_lapis)25%$()$(br)Spessartine: $(l:tfg_ores/normal_manganese)20%$()$(br)Sphalerite: $(l:tfg_ores/normal_sphalerite)40%$(), $(l:tfg_ores/surface_sphalerite)40%$(), $(l:tfg_ores/normal_sulfur)15%$()$(br)Spodumene: $(l:tfg_ores/normal_spodumene)35%$()$(br)Stibnite: $(l:tfg_ores/normal_tetrahedrite)20%$(), $(l:tfg_ores/surface_tetrahedrite)20%$()$(br)Sulfur: $(l:tfg_ores/surface_sphalerite)55%$(), $(l:tfg_ores/normal_sulfur)50%$(), $(l:tfg_ores/normal_sphalerite)35%$(), $(l:tfg_ores/normal_bismuth)9%$(), $(l:tfg_ores/surface_bismuth)3%$()$(br)Talc: $(l:tfg_ores/normal_lubricant)20%$()$(br)Tantalite: $(l:tfg_ores/normal_manganese)10%$()$(br)Tetrahedrite: $(l:tfg_ores/surface_tetrahedrite)60%$(), $(l:tfg_ores/normal_tetrahedrite)50%$()$(br)Thorium: $(l:tfg_ores/normal_beryllium)15%$()$(br)Tin: $(l:tfg_ores/normal_cassiterite)60%$(), $(l:tfg_ores/surface_cassiterite)40%$()$(br)Topaz: $(l:tfg_ores/deep_topaz)25%$()$(br)Tricalcium Phosphate: $(l:tfg_ores/normal_apatite)35%$()$(br)Trona: $(l:tfg_ores/normal_lubricant)10%$()$(br)Tungstate: $(l:tfg_ores/deep_scheelite)35%$()$(br)Uraninite: $(l:tfg_ores/deep_pitchblende)50%$()$(br)Vanadium Magnetite: $(l:tfg_ores/normal_magnetite)25%$(), $(l:tfg_ores/deep_magnetite)15%$()"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Wulfenite: $(l:tfg_ores/deep_molybdenum)40%$()$(br)Yellow Garnet: $(l:tfg_ores/deep_garnet_amethyst)5%$(), $(l:tfg_ores/deep_garnet_opal)5%$()$(br)Yellow Limonite: $(l:tfg_ores/normal_limonite)50%$(), $(l:tfg_ores/normal_hematite)30%$(), $(l:tfg_ores/normal_gold)20%$(), $(l:tfg_ores/deep_limonite)15%$(), $(l:tfg_ores/deep_hematite)15%$(), $(l:tfg_ores/deep_gold)5%$()$(br)Zeolite: $(l:tfg_ores/surface_copper)15%$()"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
"__credits__": "This page was automatically generated by OresToFieldGuide.",
|
||||
"name": "The Beneath Ore Index",
|
||||
"icon": "minecraft:quartz",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"secret": false,
|
||||
"pages": [
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "This is the $(thing)Ore Index$() for $(thing)The Beneath$(). All ores are sorted alphabetically and then by richest to poorest vein type. You can click on them to learn more information about each vein.",
|
||||
"title": "The Beneath Ore Index",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Almandine: $(l:tfg_ores/nether_vein_index#nether_sapphire)38%$(/l)$()$(li)Aluminium: $(l:tfg_ores/nether_vein_index#nether_bauxite)25%$(/l)$()$(li)Alunite: $(l:tfg_ores/nether_vein_index#nether_saltpeter)15%$(/l)$()$(li)Amethyst: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)Apatite: $(l:tfg_ores/nether_vein_index#nether_apatite)50%$(/l)$()$(li)Asbestos: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)Barite: $(l:tfg_ores/nether_vein_index#nether_quartz)20%$(/l)$()$(li)Basaltic Mineral Sands: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)35%$(/l)$()$(li)Bastnasite: $(l:tfg_ores/nether_vein_index#nether_monazite)50%$(/l)$()$(li)Bauxite: $(l:tfg_ores/nether_vein_index#nether_bauxite)45%$(/l), $(l:tfg_ores/nether_vein_index#nether_mica)25%$(/l)$()$(li)Bentonite: $(l:tfg_ores/nether_vein_index#nether_olivine)35%$(/l)$()$(li)Beryllium: $(l:tfg_ores/nether_vein_index#nether_beryllium)35%$(/l)$()$(li)Blue Topaz: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)Bornite: $(l:tfg_ores/nether_vein_index#nether_sheldonite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_topaz)15%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Calcite: $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)Cassiterite: $(l:tfg_ores/nether_vein_index#nether_cassiterite)40%$(/l)$()$(li)Cassiterite Sand: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)Chalcocite: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Chalcopyrite: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()$(li)Chromite: $(l:tfg_ores/nether_vein_index#nether_magnetite)60%$(/l)$()$(li)Cinnabar: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)Coal: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Cobalt: $(l:tfg_ores/nether_vein_index#nether_garnierite)15%$(/l)$()$(li)Cobaltite: $(l:tfg_ores/nether_vein_index#nether_garnierite)20%$(/l)$()$(li)Diamond: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Diatomite: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Electrotine: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()$(li)Emerald: $(l:tfg_ores/nether_vein_index#nether_beryllium)50%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Fuller's Earth: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l)$()$(li)Galena: $(l:tfg_ores/nether_vein_index#nether_silver)30%$(/l)$()$(li)Garnet Sand: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)Garnierite: $(l:tfg_ores/nether_vein_index#nether_garnierite)30%$(/l)$()$(li)Glauconite Sand: $(l:tfg_ores/nether_vein_index#nether_lubricant)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_olivine)15%$(/l)$()$(li)Goethite: $(l:tfg_ores/nether_vein_index#nether_goethite)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()$(li)Granitic Mineral Sand: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l)$()$(li)Graphite: $(l:tfg_ores/nether_vein_index#nether_graphite)45%$(/l)$()$(li)Green Sapphire: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l)$()$(li)Grossular: $(l:tfg_ores/nether_vein_index#nether_manganese)37%$(/l)$()$(li)Gypsum: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)15%$(/l)$()$(li)Hematite: $(l:tfg_ores/nether_vein_index#nether_hematite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)5%$(/l)$()$(li)Ilmenite: $(l:tfg_ores/nether_vein_index#nether_bauxite)30%$(/l)$()$(li)Kyanite: $(l:tfg_ores/nether_vein_index#nether_mica)35%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Lapis: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Lazurite: $(l:tfg_ores/nether_vein_index#nether_lapis)35%$(/l)$()$(li)Lead: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Lithium: $(l:tfg_ores/nether_vein_index#nether_scheelite)20%$(/l)$()$(li)Magnesite: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Magnetite: $(l:tfg_ores/nether_vein_index#nether_magnetite)5%$(/l)$()$(li)Malachite: $(l:tfg_ores/nether_vein_index#nether_goethite)20%$(/l)$()$(li)Mica: $(l:tfg_ores/nether_vein_index#nether_mica)25%$(/l)$()$(li)Molybdenite: $(l:tfg_ores/nether_vein_index#nether_molybdenum)30%$(/l)$()$(li)Molybdenum: $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)Monazite: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)Naquadah: $(l:tfg_ores/nether_vein_index#nether_naquadah)75%$(/l)$()$(li)Native Copper: $(l:tfg_ores/nether_vein_index#nether_copper)65%$(/l), $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)30%$(/l)$()$(li)Native Gold: $(l:tfg_ores/nether_vein_index#nether_gold)75%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)5%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Native Silver: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Neodymium: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)Nether Quartz: $(l:tfg_ores/nether_vein_index#nether_quartz)54%$(/l)$()$(li)Nickel: $(l:tfg_ores/nether_vein_index#nether_garnierite)10%$(/l)$()$(li)Olivine: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Opal: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)Palladium: $(l:tfg_ores/nether_vein_index#nether_sheldonite)15%$(/l)$()$(li)Pentlandite: $(l:tfg_ores/nether_vein_index#nether_garnierite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_lubricant)15%$(/l)$()$(li)Pitchblende: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)Platinum: $(l:tfg_ores/nether_vein_index#nether_sheldonite)25%$(/l)$()$(li)Plutonium: $(l:tfg_ores/nether_vein_index#nether_naquadah)25%$(/l)$()$(li)Pollucite: $(l:tfg_ores/nether_vein_index#nether_mica)15%$(/l)$()$(li)Powellite: $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)Pyrite: $(l:tfg_ores/nether_vein_index#nether_sulfur)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)10%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Pyrochlore: $(l:tfg_ores/nether_vein_index#nether_apatite)15%$(/l)$()$(li)Pyrolusite: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Pyrope: $(l:tfg_ores/nether_vein_index#nether_sapphire)27%$(/l)$()$(li)Quartzite: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)Red Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Redstone: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Ruby: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)Saltpeter: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)Sapphire: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)5%$(/l)$()$(li)Scheelite: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Sheldonite: $(l:tfg_ores/nether_vein_index#nether_sheldonite)25%$(/l)$()$(li)Soapstone: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Sodalite: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Spessartine: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Sphalerite: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Stibnite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()$(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)15%$(/l)$()$(li)Tin: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)Topaz: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Tricalcium Phosphate: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Trona: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Tungstate: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Uraninite: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)Vanadium Magnetite: $(l:tfg_ores/nether_vein_index#nether_magnetite)15%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
},
|
||||
{
|
||||
"Type": "patchouli:text",
|
||||
"text": "$(li)Wulfenite: $(l:tfg_ores/nether_vein_index#nether_molybdenum)40%$(/l)$()$(li)Yellow Garnet: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()$(li)Yellow Limonite: $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()",
|
||||
"type": "patchouli:text"
|
||||
}
|
||||
]
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Apatite & Pyrochlore",
|
||||
"icon": "gtceu:raw_apatite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: -32 - 60$(br)Size: 34$(br2)Stone types: Granite, Diorite, Gabbro, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Apatite, Tricalcium Phosphate, Pyrochlore"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Apatite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/apatite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Source of: Calcium, Phosphorus, Forestry PTSD$(br)Formula: Ca₅(PO₄)₃Cl"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Tricalcium Phosphate",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/tricalcium_phosphate" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Calcium, Phosphorus$(br)Formula: Ca₃(PO₄)₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrochlore",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pyrochlore" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Niobium$(br)Formula: Ca₂Nb₂O₇"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Mineral Sands",
|
||||
"icon": "gtceu:raw_basaltic_mineral_sand",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 160$(br)Density: 0.3$(br)Type: Disc Vein$(br)Y: -32 - 60$(br)Size: 48$(br)Height: 9$(br2)Stone types: Granite, Basalt$(br2)Indicator: Basaltic & Granitic Mineral Sand, Fuller's Earth, Gypsum"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Basaltic Mineral Sand",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/basaltic_mineral_sand" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Smelts into: Cast Iron$(br)Formula: (Fe₃O₄)((Mg₂Fe(SiO₂)₂)(CaCo₃)₃(SiO₂)₈C₄)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Granitic Mineral Sand",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/granitic_mineral_sand" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Smelts into: Cast Iron$(br)Formula: (Fe₃O₄)((SiO₂)₄(KMg₃Al₃F₂Si₃O₁₀))"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Fuller's Earth",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/fullers_earth" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Magnesium$(br)Formula: MgSi₄H(H₂O)₄O₁₁"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gypsum",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/gypsum" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Used for: Alabaster (dyeable) bricks$(br)Formula: CaS(H₂O)₂O₄"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Bauxite & Ilmenite",
|
||||
"icon": "gtceu:raw_bauxite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 185$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -32 - 60$(br)Size: 40$(br2)Stone types: Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Bauxite, Ilmenite, Aluminium, Rutile"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bauxite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bauxite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 45%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Aluminium",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/aluminium" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Aluminium$(br)Formula: Al"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Ilmenite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/ilmenite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Source of: Titanium$(br)Formula: FeTiO₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Emerald & Beryllium",
|
||||
"icon": "minecraft:emerald",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 180$(br)Density: 0.35$(br)Type: Pipe Vein$(br)Y: -32 - 50$(br)Height: 60$(br)Radius: 10$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Beryllium, Emerald, Thorium"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Beryllium",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/beryllium" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Used for: Ender Pearls$(br)Formula: Be$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Emerald",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/emerald" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Used for: MV components, Item tag filters$(br)Formula: Be₃Al₂Si₆O₁₈"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Thorium",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/thorium" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Used for: Nothing!$(br)Formula: Th"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Bismuth (Normal)",
|
||||
"icon": "gtceu:raw_bismuth",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 170$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Granite, Diorite, Gabbro, Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Bismuthinite$(br2)Only used for Bismuth Bronze."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bismuth",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bismuth" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 80%$(br)Melts into: Bismuth$(br)Formula: Bi"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sulfur",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sulfur" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 9%$(br)Formula: S"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lead",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lead" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 11%$(br)Smelts into: Lead$(br)Formula: Pb$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"name": "Cassiterite (Normal)",
|
||||
"icon": "gtceu:raw_cassiterite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 170$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Granite, Diorite, Gabbro$(br2)Indicator: Cassiterite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Cassiterite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cassiterite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 40%$(br)Melts into: Tin$(br)Formula: SnO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Tin",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/tin" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 60%$(br)Melts into: Tin$(br)Formula: Sn"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"name": "Coal",
|
||||
"icon": "minecraft:coal",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 215$(br)Density: 0.55$(br)Type: Cluster Vein$(br)Y: 0 - 210$(br)Size: 60$(br2)Stone types: Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Coal"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Coal",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/coal" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 100%$(br)Used for: Forge fuel, Distillation$(br)Formula: C"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Copper & Chalcopyrite",
|
||||
"icon": "minecraft:raw_copper",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 170$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Native Copper"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Copper",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/copper" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 65%$(br)Melts into: Copper$(br)Formula: Cu"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Chalcopyrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/chalcopyrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Melts into: Copper$(br)Formula: CuFeS₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Iron",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/iron" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: Fe"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pyrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 10%$(br)Melts into: Cast Iron$(br)Formula: FeS₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Garnet & Cassiterite Sands",
|
||||
"icon": "gtceu:raw_garnet_sand",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 360$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: -40 - 64$(br)Size: 40$(br2)Stone types: All$(br2)Indicator: Cassiterite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Cassiterite Sand",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cassiterite_sand" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Melts into: Tin$(br)Formula: SnO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Garnet Sand",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/garnet_sand" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Almandine, Andradite, Grossular, Pyrope, Spessartine, Uvarovite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Asbestos",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/asbestos" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Magnesium, Lung cancer$(br)Formula: Mg₃Si₂H₄O₉$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Diatomite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/diatomite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Iron, Aluminium$(br)Formula: (SiO₂)₈(Fe₂O₃)(Al₂O₃)"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
{
|
||||
"name": "Garnierite & Cobaltite",
|
||||
"icon": "gtceu:raw_garnierite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 140$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 60$(br)Size: 40$(br2)Stone types: Gabbro$(br2)Indicator: Garnierite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Garnierite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/garnierite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Melts into: Nickel$(br)Formula: NiO"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Nickel",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/nickel" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 10%$(br)Melts into: Nickel$(br)Formula: Ni"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Cobaltite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cobaltite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Cobalt, Arsenic$(br)Formula: CoAsS$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pentlandite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pentlandite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Smelts into: Nickel$(br)Formula: Ni₉S₈"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Cobalt",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cobalt" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Smelts into: Cobalt$(br)Formula: Co"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Gold, Limonite, & Hematite",
|
||||
"icon": "minecraft:raw_gold",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 170$(br)Density: 0.4$(br)Type: Disc Vein$(br)Y: -32 - 60$(br)Size: 40$(br)Height: 12$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Limonite, Hematite, Native Gold"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/gold" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 55%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_limonite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/hematite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/goethite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Graphite & Diamond",
|
||||
"icon": "minecraft:diamond",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 175$(br)Density: 0.35$(br)Type: Pipe Vein$(br)Y: -64 - 100$(br)Height: 60$(br)Radius: 12$(br2)Stone types: Gabbro$(br2)Indicator: Diamond, Graphite, Coal$(br2)Can't find it? Gabbro always spawns below $(thing)Basalt$(), and Gabbro dikes in oceans can be useful too!"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Graphite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/graphite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 45%$(br)Used for: $(l:mechanics/fire_clay)Fire Clay$(), Graphene$(br)Formula: C"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Diamond",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/diamond" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Used for: Macerators, AE2$(br)Formula: C"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Coal",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/coal" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Used for: Forge fuel, Distillation$(br)Formula: C"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Hematite & Limonite",
|
||||
"icon": "gtceu:raw_hematite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 210$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Hematite, Limonite, Native Gold"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/hematite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_limonite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/goethite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/gold" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Lapis, Lazurite, & Sodalite",
|
||||
"icon": "minecraft:lapis_lazuli",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 170$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: -60 - 10$(br)Size: 50$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Lazurite, Sodalite, Lapis, Calcite$(br2)Mostly used for fluid filters."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lazurite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lazurite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Aluminium, Calcium, Sodium$(br)Formula: Al₆Si₆Ca₈Na₈"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sodalite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sodalite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Aluminium, Sodium$(br)Formula: Al₃Si₃Na₄Cl"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Calcite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/calcite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Calcium$(br)Formula: CaCO₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lapis",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lapis" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Lazurite, Sodalite, Pyrite, Calcite"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Limonite",
|
||||
"icon": "gtceu:raw_yellow_limonite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 190$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Marble, Limestone$(br2)Indicator: Limonite, Hematite, Malachite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/yellow_limonite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/goethite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/hematite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Malachite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/malachite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Copper$(br)Formula: Cu₂CH₂O₅"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
{
|
||||
"name": "Soapstone, Talc, & Trona",
|
||||
"icon": "gtceu:raw_soapstone",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 190$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: -40 - 56$(br)Size: 36$(br2)Stone types: Granite, Diorite, Gabbro$(br2)Indicator: Soapstone, Talc, Glauconite Sand, Pentlandite, Trona"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Soapstone",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/soapstone" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Source of: Magnesium$(br)Formula: Mg₃Si₄H₂O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Talc",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/talc" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Magnesium$(br)Formula: Mg₃Si₄H₂O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Glauconite Sand",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/glauconite_sand" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Magnesium, Aluminium$(br)Formula: KMg₂Al₄H₂O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pentlandite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pentlandite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Smelts into: Nickel$(br)Formula: Ni₉S₈"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Trona",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/trona" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 10%$(br)Formula: Na₃C₂H(H₂O)₂O₆"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Magnetite & Vanadium",
|
||||
"icon": "gtceu:raw_magnetite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 200$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Magnetite, Native Gold"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Magnetite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/magnetite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 65%$(br)Melts into: Cast Iron$(br)Formula: Fe₃O₄"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Vanadium Magnetite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/vanadium_magnetite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Iron, Vanadium$(br)Formula: (Fe₃O₄)V"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/gold" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 10%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Manganese & Tantalum",
|
||||
"icon": "gtceu:raw_grossular",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 195$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -32 - 60$(br)Size: 40$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Grossular, Spessartine, Pyrolusite, Tantalite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Grossular",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/grossular" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Source of: Calcium, Aluminium$(br)Formula: Ca₃Al₂Si₃O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Spessartine",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/spessartine" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Manganese, Aluminium$(br)Formula: Al₂Mn₃Si₃O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrolusite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pyrolusite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Smelts into: Manganese$(br)Formula: MnO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Tantalite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/tantalite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 10%$(br)Source of: Manganese, Tantalum$(br)Formula: MnTa₂O₆"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Kyanite, Mica, & Bauxite",
|
||||
"icon": "gtceu:raw_mica",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 190$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: 0 - 210$(br)Size: 36$(br2)Stone types: Granite, Diorite, Gabbro, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Kyanite, Mica, Bauxite, Pollucite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Kyanite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/kyanite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Aluminium$(br)Formula: Al₂SiO₅"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Mica",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/mica" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Potassium, Aluminium, Fluorine$(br)Formula: KAl₃Si₃F₂O₁₀"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bauxite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bauxite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pollucite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pollucite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Aluminium$(br)Formula: Cs₂Al₂Si₄(H₂O)₂O₁₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Bastnasite & Monazite",
|
||||
"icon": "gtceu:monazite_gem",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 185$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: -32 - 50$(br)Size: 40$(br2)Stone types: Granite, Diorite, Gabbro$(br2)Indicator: Bastnasite, Monazite, Neodymium"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bastnasite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bastnasite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Source of: Cerium, Fluorine$(br)Formula: CeCFO₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Monazite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/monazite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Phosphorous, Rare Earth$(br)Formula: ?(PO₄)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Neodymium",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/neodymium" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Formula: Nd"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"name": "Oilsands",
|
||||
"icon": "gtceu:raw_oilsands",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 185$(br)Density: 0.20$(br)Type: Cluster Vein$(br)Y: 0 - 70$(br)Size: 55$(br2)Stone types: Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Oilsands$(br2)Used as an early combustion fuel."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Oilsands",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/oilsands" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 100%$(br)Source of: Freedom 🛢🦅🗽"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Bentonite & Olivine",
|
||||
"icon": "gtceu:olivine_gem",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 180$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: -40 - 30$(br)Size: 26$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Bentonite, Magnesite, Olivine, Glauconite Sand"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bentonite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bentonite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Magnesium$(br)Formula: NaMg₆Si₁₂H₄(H₂O)₅O₃₆"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Magnesite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/magnesite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Magnesium$(br)Formula: MgCO₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Olivine",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/olivine" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Magnesium$(br)Formula: Mg₂Fe(SiO₂)₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Glauconite Sand",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/glauconite_sand" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Magnesium, Aluminium$(br)Formula: KMg₂Al₄H₂O₁₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Quartzes",
|
||||
"icon": "minecraft:quartz",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 150$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -32 - 100$(br)Size: 40$(br2)Stone types: Shale, Quartzite, Schist, Gneiss$(br2)Indicator: Certus Quartz, Nether Quartz, and Quartzite Buds"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Quartzite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/quartzite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 45%$(br)Formula: SiO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Certus Quartz",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/certus_quartz" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Used for: Applied Energistics 2$(br)Formula: SiO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Nether Quartz",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/nether_quartz" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 10%$(br)Used for: Applied Energistics 2$(br)Formula: SiO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Barite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/barite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Barium$(br)Formula: BaSO₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Redstone, Cinnabar, & Ruby",
|
||||
"icon": "minecraft:redstone",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 160$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 100$(br)Size: 40$(br2)Stone types: Granite$(br2)Indicator: Redstone, Ruby, Cinnabar$(br2)Can't find it? Try looking in oceans, the Redstone glows!"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Redstone",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/redstone" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 45%$(br)Melts into: Redstone$(br)Formula: Si(FeS₂)₅(CrAl₂O₃)Hg₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Ruby",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/ruby" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Aluminium, Chromium$(br)Formula: CrAl₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Cinnabar",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cinnabar" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Mercury$(br)Formula: HgS$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Salts & Borax",
|
||||
"icon": "tfc:powder/salt",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 175$(br)Density: 0.4$(br)Type: Disc Vein$(br)Y: 30 - 70$(br)Size: 40$(br)Height: 4$(br2)Stone types: Shale, Claystone, Limestone$(br2)Indicator: Salt lick, Rock salt, Lepidolite, Borax"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Rock Salt",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/rock_salt" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 40%$(br)Source of: Potassium, Chlorine$(br)Formula: KCl"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Salt",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/salt" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Source of: High blood pressure$(br)Formula: NaCl"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lepidolite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lepidolite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Potassium, Lithium, Aluminium, Fluorine$(br)Formula: KLi₃Al₄F₂O₁₀"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Borax",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/borax" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Boron$(br)Formula: Na₂B₄(H₂O)₁₀O₇"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Saltpeter & Electrotine",
|
||||
"icon": "gtceu:raw_saltpeter",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 210$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -32 - 60$(br)Size: 50$(br2)Stone types: Granite, Diorite, Gabbro, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Saltpeter, Diatomite, Electrotine, Alunite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Saltpeter",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/saltpeter" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Potassium$(br)Formula: KNO₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Diatomite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/diatomite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Iron, Aluminium$(br)Formula: (SiO₂)₈(Fe₂O₃)(Al₂O₃)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Electrotine",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/electrotine" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Gold, Silver, Redstone$(br)Formula: (Si(FeS₂)₅(CrAl₂O₃)Hg₃)(AgAu)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Alunite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/alunite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Potassium, Aluminium$(br)Formula: KAl₃Si₂H₆O₁₄"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Silver, Galena, & Lead",
|
||||
"icon": "gtceu:raw_silver",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 160$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Granite, Gneiss$(br2)Indicator: Native Silver"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Galena",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/galena" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Smelts into: Lead$(br)Formula: PbS$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Silver",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/silver" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Silver$(br)Formula: Ag"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lead",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lead" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 55%$(br)Smelts into: Lead$(br)Formula: Pb$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Sphalerite & Pyrite",
|
||||
"icon": "gtceu:raw_sphalerite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 170$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Sphalerite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sphalerite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sphalerite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 40%$(br)Melts into: Zinc$(br)Formula: ZnS"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sulfur",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sulfur" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Formula: S"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pyrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Melts into: Cast Iron$(br)Formula: FeS₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
"name": "Spodumene & Lepidolite",
|
||||
"icon": "gtceu:raw_spodumene",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 180$(br)Density: 0.375$(br)Type: Disc Vein$(br)Y: 20 - 60$(br)Size: 35$(br)Height: 6$(br2)Stone types: Granite, Diorite, Gabbro, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Salt lick, Rock salt, Lepidolite, Spodumene"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Rock Salt",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/rock_salt" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Potassium, Chlorine$(br)Formula: KCl"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Salt",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/salt" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Source of: High blood pressure$(br)Formula: NaCl"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lepidolite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lepidolite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Potassium, Lithium, Aluminium, Fluorine$(br)Formula: KLi₃Al₄F₂O₁₀"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Spodumene",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/spodumene" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Lithium, Aluminium$(br)Formula: LiAlSi₂O₆"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Sulfur & Pyrite",
|
||||
"icon": "gtceu:raw_sulfur",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 165$(br)Density: 0.2$(br)Type: Cluster Vein$(br)Y: 0 - 210$(br)Size: 45$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Sulfur, Pyrite, Sphalerite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sulfur",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sulfur" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Formula: S"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pyrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Melts into: Cast Iron$(br)Formula: FeS₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sphalerite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sphalerite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Zinc$(br)Formula: ZnS"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Tetrahedrite (Normal)",
|
||||
"icon": "gtceu:raw_tetrahedrite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 170$(br)Density: 0.4$(br)Type: Cluster Vein$(br)Y: -32 - 75$(br)Size: 40$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Tetrahedrite, Native Copper"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Tetrahedrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/tetrahedrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Melts into: Copper$(br)Formula: Cu₃SbS₃Fe"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Native Copper",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/copper" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Melts into: Copper$(br)Formula: Cu"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Stibnite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/stibnite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Smelts into: Antimony$(br)Formula: Sb₂S₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,43 +1,43 @@
|
|||
{
|
||||
"name": "Mining in TFG",
|
||||
"icon": "gtceu:pyrite_dust",
|
||||
"category": "tfc:tfg_ores",
|
||||
"priority": true,
|
||||
"sortnum": 0,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "You will need a $(thing)pickaxe$() or $(thing)mining hammer$() to mine ores.$(br2)A regular $(thing)hammer$() can also break stone type blocks quickly, but will not result in dropped ores. It can still be useful for $(l:getting_started/primitive_anvils#raw_rock)extracting$() stone blocks however."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:crafting",
|
||||
"recipe": "gtceu:shaped/pickaxe_copper",
|
||||
"recipe2": "gtceu:shaped/mining_hammer_copper"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Pickaxe",
|
||||
"text": "Breaking an ore block with a pickaxe will yield $(thing)raw ores$() (poor, normal, or rich), as well as some stone dust. These are not worth much mB each and you will need multiple to make a single ingot, however some other minerals are only useable in this state, such as $(thing)coal$().",
|
||||
"item": { "tag": "minecraft:pickaxes" }
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Mining Hammer",
|
||||
"text": "These are basically a pickaxe with a 3x3 range, and will yield $(thing)raw ores$() as well. Also good for clearing stone after you've hammered the ores out!$(br2)Holding $(thing)sneak$() will only break a single block at a time.",
|
||||
"item": { "tag": "forge:tools/mining_hammers" }
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Basic ore processing",
|
||||
"anchor": "processing",
|
||||
"item": "gtceu:crushed_copper_ore",
|
||||
"text": "Processing ores will result in much greater amounts of usable metal. The first step is to use a $(l:mechanics/quern)Quern$() to crush the raw ore. This step can be automated in the future with improved machines such as the $(thing)Millstone$(), $(thing)Crushing Wheel$(), $(thing)Macerator$(), and $(thing)Forge Hammer$()."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:crafting",
|
||||
"title": "Purifying dust",
|
||||
"recipe": "gtceu:shapeless/crushed_ore_to_dust_copper",
|
||||
"text": "To make your crushed ores melt into even more mB, first place them in a crafting grid along with a $(thing)Hammer$(). This will produce $(thing)Impure Dust$(). To purify the dust, throw it in water or $(item)$(k:key.use)$() a $(thing)Cauldron$() filled with water."
|
||||
}
|
||||
]
|
||||
"name": "Mining in TFG",
|
||||
"icon": "minecraft:diamond_pickaxe",
|
||||
"category": "tfc:tfg_ores",
|
||||
"priority": true,
|
||||
"sortnum": 0,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "You will need a $(thing)pickaxe$() or $(thing)mining hammer$() to mine ores.$(br2)A regular $(thing)hammer$() can also break stone type blocks quickly, but will not result in dropped ores. It can still be useful for $(l:getting_started/primitive_anvils#raw_rock)extracting$() stone blocks however."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:crafting",
|
||||
"recipe": "gtceu:shaped/pickaxe_copper",
|
||||
"recipe2": "gtceu:shaped/mining_hammer_copper"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Pickaxe",
|
||||
"text": "Breaking an ore block with a pickaxe will yield $(thing)raw ores$() (poor, normal, or rich), as well as some stone dust. These are not worth much mB each and you will need multiple to make a single ingot, however some other minerals are only useable in this state, such as $(thing)coal$().",
|
||||
"item": { "tag": "minecraft:pickaxes" }
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Mining Hammer",
|
||||
"text": "These are basically a pickaxe with a 3x3 range, and will yield $(thing)raw ores$() as well. Also good for clearing stone after you've hammered the ores out!$(br2)Holding $(thing)sneak$() will only break a single block at a time.",
|
||||
"item": { "tag": "forge:tools/mining_hammers" }
|
||||
},
|
||||
{
|
||||
"type": "patchouli:spotlight",
|
||||
"title": "Basic ore processing",
|
||||
"anchor": "processing",
|
||||
"item": "gtceu:crushed_copper_ore",
|
||||
"text": "Processing ores will result in much greater amounts of usable metal. The first step is to use a $(l:mechanics/quern)Quern$() to crush the raw ore. This step can be automated in the future with improved machines such as the $(thing)Millstone$(), $(thing)Crushing Wheel$(), $(thing)Macerator$(), and $(thing)Forge Hammer$()."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:crafting",
|
||||
"title": "Purifying dust",
|
||||
"recipe": "gtceu:shapeless/crushed_ore_to_dust_copper",
|
||||
"text": "To make your crushed ores melt into even more mB, first place them in a crafting grid along with a $(thing)Hammer$(). This will produce $(thing)Impure Dust$(). To purify the dust, throw it in water or $(item)$(k:key.use)$() a $(thing)Cauldron$() filled with water."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Bismuth (Surface)",
|
||||
"icon": "gtceu:poor_raw_bismuth",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 140$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: 60 - 210$(br)Size: 50$(br2)Stone types: Granite, Diorite, Gabbro, Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Bismuthinite$(br)Only used for Bismuth Bronze."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Bismuth",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/bismuth" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 90%$(br)Melts into: Bismuth$(br)Formula: Bi"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sulfur",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sulfur" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 3%$(br)Formula: S"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Lead",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/lead" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 7%$(br)Smelts into: Lead$(br)Formula: Pb$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"name": "Cassiterite (Surface)",
|
||||
"icon": "gtceu:poor_raw_cassiterite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 135$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: 60 - 210$(br)Size: 50$(br2)Stone types: Granite, Diorite, Gabbro$(br2)Indicator: Cassiterite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Cassiterite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cassiterite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 60%$(br)Melts into: Tin$(br)Formula: SnO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Tin",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/tin" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 40%$(br)Melts into: Tin$(br)Formula: Sn"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,60 +0,0 @@
|
|||
{
|
||||
"name": "Chalcopyrite & Realgar",
|
||||
"icon": "gtceu:raw_chalcopyrite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 140$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: 30 - 210$(br)Size: 50$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Native Copper, Cassiterite, Realgar"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Chalcopyrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/chalcopyrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 55%$(br)Melts into: Copper$(br)Formula: CuFeS₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Zeolite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/zeolite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Aluminium, Oxygen$(br)Formula: NaCa₄Si₂₇Al₉(H₂O)₂₈O₇₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Cassiterite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/cassiterite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Tin$(br)Formula: SnO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Realgar",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/realgar" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Arsenic$(br)Formula: As₄S₄$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "If you're having trouble finding Realgar, another source of Arsenic is $(l:tfg_ores/normal_garnierite)Cobaltite$(), although it will require an $(thing)Electric Blast Furnace$() to process."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Sphalerite & Sulfur",
|
||||
"icon": "gtceu:poor_raw_sphalerite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 145$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: 60 - 210$(br)Size: 50$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Sphalerite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sphalerite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sphalerite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 40%$(br)Melts into: Zinc$(br)Formula: ZnS"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sulfur",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/sulfur" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 55%$(br)Formula: S"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/pyrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: FeS₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
"name": "Tetrahedrite (Surface)",
|
||||
"icon": "gtceu:poor_raw_tetrahedrite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 140$(br)Density: 0.25$(br)Type: Cluster Vein$(br)Y: 60 - 210$(br)Size: 50$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Tetrahedrite, Native Copper"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Tetrahedrite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/tetrahedrite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 60%$(br)Melts into: Copper$(br)Formula: Cu₃SbS₃Fe"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Native Copper",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/copper" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Melts into: Copper$(br)Formula: Cu"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Stibnite",
|
||||
"multiblock":
|
||||
{
|
||||
"mapping": { "0": "#forge:ores/stibnite" },
|
||||
"pattern": [[ "0" ], [ " " ]]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Smelts into: Antimony$(br)Formula: Sb₂S₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -11,12 +11,12 @@
|
|||
{
|
||||
"type": "patchouli:crafting",
|
||||
"recipe": "tfc:crafting/fire_clay",
|
||||
"text": "Fire clay is made from $(l:tfg_ores/normal_graphite)graphite$() powder, crushed in a $(l:mechanics/quern)quern$(), as well as $(l:tfg_ores/surface_kaolin#powder)kaolinite$() powder"
|
||||
"text": "Fire clay is made from $(l:tfg_ores/earth_vein_index#normal_graphite)graphite$() powder, crushed in a $(l:mechanics/quern)quern$(), as well as $(l:tfg_ores/surface_kaolin#powder)kaolinite$() powder"
|
||||
},
|
||||
{
|
||||
"type": "tfc:heat_recipe",
|
||||
"recipe": "tfc:heating/kaolin_clay",
|
||||
"text": "Kaolinite powder is made by heating $(l:tfg_ores/surface_kaolin)Kaolin Clay$(). However, the process is not perfect, and only 20% of clay will form powder!"
|
||||
"text": "Kaolinite powder is made by heating $(l:mechanics/surface_kaolin)Kaolin Clay$(). However, the process is not perfect, and only 20% of clay will form powder!"
|
||||
},
|
||||
{
|
||||
"type": "tfc:knapping_recipe",
|
||||
|
|
|
|||
|
|
@ -1,88 +0,0 @@
|
|||
{
|
||||
"name": "Amethyst & Garnet",
|
||||
"icon": "minecraft:amethyst_shard",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 230$(br)Density: 0.25$(br)Type: Disc Vein$(br)Y: -64 - 26$(br)Size: 28$(br)Height: 8$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble, Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Amethyst Bud"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Amethyst",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/amethyst"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 65%$(br)Source of: Iron$(br)Formula: (SiO₂)₄Fe"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Opal",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/opal"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Formula: (SiO₂)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Red Garnet",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/red_garnet"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Source of: Pyrope, Almandine, Spessartine"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Garnet",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/yellow_garnet"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Andradite, Grossular, Uvarovite"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
{
|
||||
"name": "Opal & Garnet",
|
||||
"icon": "gtceu:opal_gem",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.35$(br)Type: Disc Vein$(br)Y: -64 - 62$(br)Size: 26$(br)Height: 6$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Amethyst Bud"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Opal",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/opal"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 55%$(br)Formula: (SiO₂)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Amethyst",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/amethyst"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Iron$(br)Formula: (SiO₂)₄Fe"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Red Garnet",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/red_garnet"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Source of: Pyrope, Almandine, Spessartine"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Garnet",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/yellow_garnet"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Andradite, Grossular, Uvarovite"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
{
|
||||
"name": "Gold (Deep)",
|
||||
"icon": "gtceu:rich_raw_gold",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 260$(br)Density: 0.45$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 32$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Limonite, Hematite, Native Gold"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/gold"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 75%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/yellow_limonite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/hematite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/goethite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,107 +0,0 @@
|
|||
{
|
||||
"name": "Hematite, Goethite, & Ruby",
|
||||
"icon": "gtceu:rich_raw_hematite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.35$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 40$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Hematite, Limonite, Native Gold"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/hematite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/yellow_limonite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/goethite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/gold"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Ruby",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/ruby"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Source of: Chromium, Aluminium$(br)Formula: CrAl₂O₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
{
|
||||
"name": "Goethite & Malachite",
|
||||
"icon": "gtceu:rich_raw_goethite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 240$(br)Density: 0.35$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 32$(br2)Stone types: Marble, Limestone$(br2)Indicator: Limonite, Hematite, Malachite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Goethite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/goethite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Yellow Limonite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/yellow_limonite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: FeHO₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Hematite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/hematite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Cast Iron$(br)Formula: Fe₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Malachite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/malachite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 20%$(br)Melts into: Copper$(br)Formula: Cu₂CH₂O₅"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,107 +0,0 @@
|
|||
{
|
||||
"name": "Chromite & Magnetite",
|
||||
"icon": "gtceu:rich_raw_chromite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 205$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -64 - 30$(br)Size: 340$(br2)Stone types: Shale, Claystone, Limestone, Conglomerate, Dolomite, Chert, Chalk$(br2)Indicator: Magnetite, Native Gold, Chromite, Sapphire"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Chromite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/chromite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 60%$(br)Source of: Chromium$(br)Formula: FeCr₂O₄"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Magnetite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/magnetite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Melts into: Cast Iron$(br)Formula: Fe₃O₄"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Vanadium Magnetite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/vanadium_magnetite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Iron, Vanadium$(br)Formula: (Fe₃O₄)V"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Gold",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/gold"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Melts into: Gold$(br)Formula: Au"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sapphire",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/sapphire"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 5%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
{
|
||||
"name": "Wulfenite & Molybdenite",
|
||||
"icon": "gtceu:rich_raw_wulfenite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 245$(br)Density: 0.45$(br)Type: Cluster Vein$(br)Y: -64 - 10$(br)Size: 26$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite, Granite, Diorite, Gabbro$(br2)Indicator: Wulfenite, Molybdenite, Molybdenum, Powellite"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Wulfenite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/wulfenite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 40%$(br)Source of: Lead, Molybdenum$(br)Formula: PbMoO₄$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Molybdenite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/molybdenite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 30%$(br)Source of: Molybdenum$(br)Formula: MoS₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Molybdenum",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/molybdenum"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Molybdenum$(br)Formula: Mo"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Powellite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/powellite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Molybdenum$(br)Formula: CaMoO₄"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
{
|
||||
"name": "Naquadah & Plutonium",
|
||||
"icon": "gtceu:rich_raw_naquadah",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 310$(br)Density: 0.3$(br)Type: Cluster Vein$(br)Y: -64 - -20$(br)Size: 32$(br2)Stone types: Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Naquadah, Plutonium"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Naquadah",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/naquadah"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 75%$(br)Source of: Stargatium$(br)Formula: Nq"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Plutonium",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/plutonium"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Plutonium$(br)Formula: Pu²³⁹$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
{
|
||||
"name": "Uraninite & Pitchblende",
|
||||
"icon": "gtceu:rich_raw_uraninite",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 220$(br)Density: 0.45$(br)Type: Cluster Vein$(br)Y: -64 - -20$(br)Size: 24$(br2)Stone types: Granite, Diorite, Gabbro, Quartzite, Slate, Phyllite, Schist, Gneiss, Marble$(br2)Indicator: Pitchblende, Uraninite$(br2)There's no fission reactors in TFG, but Uranium has other uses."
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Uraninite",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/uraninite"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Source of: Uranium$(br)Formula: UO₂$(br)Hazardous: Yes"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pitchblende",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/pitchblende"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 50%$(br)Source of: Uranium$(br)Formula: (UO₂)₃ThPb$(br)Hazardous: Yes"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,90 +0,0 @@
|
|||
{
|
||||
"name": "Sapphire & Almandine",
|
||||
"icon": "gtceu:sapphire_gem",
|
||||
"category": "tfc:tfg_ores",
|
||||
"read_by_default": true,
|
||||
"pages": [
|
||||
{
|
||||
"type": "patchouli:text",
|
||||
"text": "Rarity: 180$(br)Density: 0.35$(br)Type: Disc Vein$(br)Y: -64 - 26$(br)Size: 28$(br)Height: 8$(br2)Stone types: Rhyolite, Basalt, Andesite, Dacite$(br2)Indicator: Almandine, Pyrope, Sapphire, Green Sapphire$(br2)If you're looking for $(thing)Aluminium$(), find a $(l:tfg_ores/normal_bauxite)Bauxite$() vein instead.$(br)"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Almandine",
|
||||
"anchor": "almandine",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/almandine"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 35%$(br)Source of: Aluminium, Iron$(br)Formula: Al₂Fe₃Si₃O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Pyrope",
|
||||
"anchor": "pyrope",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/pyrope"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 25%$(br)Source of: Aluminium, Magnesium$(br)Formula: Al₂Mg₃Si₃O₁₂"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Sapphire",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/sapphire"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
},
|
||||
{
|
||||
"type": "patchouli:multiblock",
|
||||
"name": "Green Sapphire",
|
||||
"multiblock": {
|
||||
"mapping": {
|
||||
"0": "#forge:ores/green_sapphire"
|
||||
},
|
||||
"pattern": [
|
||||
[
|
||||
"0"
|
||||
],
|
||||
[
|
||||
" "
|
||||
]
|
||||
]
|
||||
},
|
||||
"enable_visualize": false,
|
||||
"text": "Percentage: 15%$(br)Source of: Aluminium$(br)Formula: Al₂O₃"
|
||||
}
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue