diff --git a/.github/README.md b/.github/README.md index 6df9ecba8..78fe64d0f 100644 --- a/.github/README.md +++ b/.github/README.md @@ -59,6 +59,10 @@ Interested in contributing? For detailed setup instructions, coding standards, a ![Image Readme](https://github.com/TerraFirmaGreg-Team/.github/blob/main/branding/image_readme.png?raw=true) +### External Credits +- WithersChat from the Monifactory team for the universal circuit textures +- GregTech Community Pack Modern for most of their quest text + [TerraFirmaCraft]: https://www.curseforge.com/minecraft/mc-mods/terrafirmacraft [GregTech Modern]: https://www.curseforge.com/minecraft/mc-mods/gregtechceu-modern diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d4b4ce519..68cbbb831 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/.pakku/server-overrides/README.md b/.pakku/server-overrides/README.md new file mode 100644 index 000000000..001c73fee --- /dev/null +++ b/.pakku/server-overrides/README.md @@ -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. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index dc233e4d1..8f92be46f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,39 +2,100 @@ ## [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) -- 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 -- Removed some more duplicate recipes for vanilla items -- Hid some more things in JEI that aren't craftable + +## [0.9.3] - 06.05.2025 +- [!WARNING] 0.9 is now out of alpha and into beta! If you're upgrading from 0.7, we put together a guide [here](https://github.com/TerraFirmaGreg-Team/Modpack-Modern/wiki/%5BEN%5D-Upgrading-from-0.7-to-0.9). +### Changes +- 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) +- Ingot piles now have improved textures for TFC metals (AirRice) +- Fixed issue where red alloy and tin alloy had missing textures in casting tables (AirRice) +- Improvements to MV quests (TomPlop) +- Changed the process for creating rubber to require latex, added a way to get latex even during winter (AirRice) +- Fixed large boilers from being extremely explodey +- Greate shafts, large cogs, and belts are now significantly cheaper, and shaft stress capacity has been doubled +- 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! +- The other AE2 wireless terminals are now craftable in EV instead of LuV +- AE2 MEGA things are also now available in IV +- 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 +- Changed recipe of create filters so they're available earlier +- Fixed some duping recipes +- Clay and (plain) stone dust decomposition now requires HV +- Fixed a rare race condition when creating material-based recipes +- Fixed cast iron tongs not being craftable +- Added a gas collector recipe to the beneath + +## [0.9.2] - 27.04.2025 +### 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 diff --git a/config/InventoryHUD/curios.json b/config/InventoryHUD/curios.json index 376ffa7f2..0be721b57 100644 --- a/config/InventoryHUD/curios.json +++ b/config/InventoryHUD/curios.json @@ -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"}} \ No newline at end of file +{ + "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" + } +} \ No newline at end of file diff --git a/config/carryon-common.toml b/config/carryon-common.toml index 3f35a27b2..d34082042 100644 --- a/config/carryon-common.toml +++ b/config/carryon-common.toml @@ -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 = [] diff --git a/config/create_connected-common.toml b/config/create_connected-common.toml index dae5d6bad..3ab572a6e 100644 --- a/config/create_connected-common.toml +++ b/config/create_connected-common.toml @@ -8,36 +8,36 @@ migrateCopycatsOnInitialize = false #. #Enable/disable features. Values on server override clients [features] - bamboo_window = false + bamboo_window = true item_silo = true inverted_clutch = true empty_fan_catalyst = false - parallel_gearbox = true - cherry_window = false + parallel_gearbox = false + cherry_window = true centrifugal_clutch = true - copycat_slab = false + copycat_slab = true overstress_clutch = true brake = true - copycat_block = false - copycat_fence_gate = false - copycat_stairs = false - brass_gearbox = true - copycat_vertical_step = false - copycat_wall = false - six_way_gearbox = true - encased_chain_cogwheel = true + copycat_block = true + copycat_fence_gate = true + copycat_stairs = true + brass_gearbox = false + copycat_vertical_step = true + copycat_wall = true + six_way_gearbox = false + encased_chain_cogwheel = false sequenced_pulse_generator = true freewheel_clutch = true - shear_pin = true - inverted_gearshift = true + shear_pin = false + inverted_gearshift = false linked_transmitter = true - copycat_beam = false - copycat_board = false - copycat_fence = false + copycat_beam = true + copycat_board = true + copycat_fence = true #. fluid_vessel = true - large_crank_wheel = true - crank_wheel = true + large_crank_wheel = false + crank_wheel = false inventory_access_port = true inventory_bridge = true diff --git a/config/createaddition-common.toml b/config/createaddition-common.toml index 87bf53dbc..97311e9aa 100644 --- a/config/createaddition-common.toml +++ b/config/createaddition-common.toml @@ -5,10 +5,10 @@ [general] #Forge Energy conversion rate (in FE/t at 256 RPM, value is the FE/t generated and consumed is at 256rpm). #Range: > 0 - fe_at_max_rpm = 512 + fe_at_max_rpm = 128 #Max stress for the Alternator and Electric Motor (in SU at 256 RPM). #Range: > 0 - max_stress = 256 + max_stress = 128 #If audio should be enabled or not. audio_enabled = true @@ -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] diff --git a/config/curios-common.toml b/config/curios-common.toml index a671ffb07..51c41a713 100644 --- a/config/curios-common.toml +++ b/config/curios-common.toml @@ -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" ] diff --git a/config/fancymenu/customization/gui_main_menu.txt b/config/fancymenu/customization/gui_main_menu.txt index 16c007889..ff05e4eb3 100644 --- a/config/fancymenu/customization/gui_main_menu.txt +++ b/config/fancymenu/customization/gui_main_menu.txt @@ -3,18 +3,18 @@ type = fancymenu_layout layout-meta { identifier = title_screen render_custom_elements_behind_vanilla = false - last_edited_time = 1738509252275 + last_edited_time = 1746362700788 is_enabled = true randommode = false randomgroup = 1 randomonlyfirsttime = false layout_index = 0 - [loading_requirement_container_meta:f5690757-31d9-4604-ad8f-ae0cacd920bb-1738509235085] = [groups:][instances:] + [loading_requirement_container_meta:945f0e51-1b62-423e-8814-c4d9e537fd0a-1746362691267] = [groups:][instances:] } menu_background { - slideshow_name = main_menu - background_type = slideshow + panorama_name = beneath + background_type = panorama } customization { @@ -29,6 +29,11 @@ scroll_list_customization { show_scroll_list_header_footer_preview_in_editor = false repeat_scroll_list_header_texture = false repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { } element { @@ -38,7 +43,6 @@ element { backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 @@ -46,6 +50,18 @@ element { navigatable = true widget_active_state_requirement_container_identifier = 883c51a7-aff5-48fd-8cac-0fed83cb29b7-1738509235086 [loading_requirement_container_meta:883c51a7-aff5-48fd-8cac-0fed83cb29b7-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = custom_button instance_identifier = 6514e312-8243-47af-a516-89743d8ca1af1699692677651 appearance_delay = no_delay @@ -69,16 +85,23 @@ element { stay_on_screen = false element_loading_requirement_container_identifier = da72b434-a35d-463b-99f5-2aa6c62b3247-1710837053356 [loading_requirement_container_meta:da72b434-a35d-463b-99f5-2aa6c62b3247-1710837053356] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } element { button_element_executable_block_identifier = 42d3aca7-49fe-412d-b20e-aea6045d6df6-1710837053357 - [executable_action_instance:d90363b6-1abc-4a2c-a9a8-0383341a1847-1710837053357][action_type:openlink] = https://modrinth.com/modpack/terrafirmagreg + [executable_action_instance:d90363b6-1abc-4a2c-a9a8-0383341a1847-1710837053357][action_type:openlink] = https://modrinth.com/modpack/terrafirmagreg-modern [executable_block:42d3aca7-49fe-412d-b20e-aea6045d6df6-1710837053357][type:generic] = [executables:d90363b6-1abc-4a2c-a9a8-0383341a1847-1710837053357;] backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/modrinth_logo.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/modrinth_logo_hovered.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 @@ -86,6 +109,18 @@ element { navigatable = true widget_active_state_requirement_container_identifier = d16c5a1d-f73e-4c7d-ae94-9e77f40b8bea-1738509235086 [loading_requirement_container_meta:d16c5a1d-f73e-4c7d-ae94-9e77f40b8bea-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = custom_button instance_identifier = 6514e312-8243-47af-a516-89743d8ca1af1699692677651 appearance_delay = no_delay @@ -96,8 +131,8 @@ element { fade_out_speed = 1.0 base_opacity = 1.0 auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 + auto_sizing_base_screen_width = 2168 + auto_sizing_base_screen_height = 968 sticky_anchor = false anchor_point = mid-centered x = 73 @@ -109,6 +144,14 @@ element { stay_on_screen = false element_loading_requirement_container_identifier = 6fe51a26-4678-48dc-aa77-32b4a40c8de6-1710837053357 [loading_requirement_container_meta:6fe51a26-4678-48dc-aa77-32b4a40c8de6-1710837053357] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } element { @@ -117,6 +160,7 @@ element { nine_slice_texture = false nine_slice_texture_border_x = 5 nine_slice_texture_border_y = 5 + image_tint = #FFFFFF element_type = image instance_identifier = 9bb15e9d-fedb-4e15-a37f-7586c0dcb4921699691344434 appearance_delay = no_delay @@ -140,16 +184,23 @@ element { stay_on_screen = false element_loading_requirement_container_identifier = 029a37fe-5cb4-45d0-966f-8f7da3dd827d-1710837053356 [loading_requirement_container_meta:029a37fe-5cb4-45d0-966f-8f7da3dd827d-1710837053356] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } element { button_element_executable_block_identifier = 5b9bb717-2afd-456c-b287-3265e1c5846b-1710837053356 - [executable_action_instance:4c567222-7807-4321-ab09-a3991a142702-1710837053356][action_type:openlink] = https://www.curseforge.com/minecraft/modpacks/terrafirmagreg + [executable_action_instance:4c567222-7807-4321-ab09-a3991a142702-1710837053356][action_type:openlink] = https://www.curseforge.com/minecraft/modpacks/terrafirmagreg-modern [executable_block:5b9bb717-2afd-456c-b287-3265e1c5846b-1710837053356][type:generic] = [executables:4c567222-7807-4321-ab09-a3991a142702-1710837053356;] backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/curseforge_logo.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/curseforge_logo_hovered.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 @@ -157,6 +208,18 @@ element { navigatable = true widget_active_state_requirement_container_identifier = e6feb8b0-31fc-4a41-9d8b-4f42c26af923-1738509235086 [loading_requirement_container_meta:e6feb8b0-31fc-4a41-9d8b-4f42c26af923-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = custom_button instance_identifier = 9f789963-f2dc-46f7-a57b-9c4de545a6ff1699691707372 appearance_delay = no_delay @@ -180,6 +243,14 @@ element { stay_on_screen = false element_loading_requirement_container_identifier = 2ccbd597-85c1-48a5-b5ea-49040e18d08a-1710837053356 [loading_requirement_container_meta:2ccbd597-85c1-48a5-b5ea-49040e18d08a-1710837053356] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } element { @@ -189,7 +260,6 @@ element { backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/discord_logo.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/discord_logo_hovered.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 @@ -197,6 +267,18 @@ element { navigatable = true widget_active_state_requirement_container_identifier = c148ade9-c007-42f1-9783-c4c0689b3eb9-1738509235086 [loading_requirement_container_meta:c148ade9-c007-42f1-9783-c4c0689b3eb9-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = custom_button instance_identifier = 57a283ec-1941-4101-b14b-f2188e8660671699691708296 appearance_delay = no_delay @@ -220,6 +302,14 @@ element { stay_on_screen = false element_loading_requirement_container_identifier = 934f6ee3-6f2a-4bf5-8f41-0a4ece8e0637-1710837053356 [loading_requirement_container_meta:934f6ee3-6f2a-4bf5-8f41-0a4ece8e0637-1710837053356] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } element { @@ -229,7 +319,6 @@ element { backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/github_logo.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/github_logo_hovered.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 @@ -237,6 +326,18 @@ element { navigatable = true widget_active_state_requirement_container_identifier = 6cbad76b-bff4-40c6-a2f1-8d0fca899879-1738509235086 [loading_requirement_container_meta:6cbad76b-bff4-40c6-a2f1-8d0fca899879-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = custom_button instance_identifier = 91b4ae84-eed0-47a3-8fe9-6957c02d2c621699691709167 appearance_delay = no_delay @@ -260,6 +361,14 @@ element { stay_on_screen = false element_loading_requirement_container_identifier = 4e45cc97-0625-45c7-8966-fb3ac1d9c41d-1710837053357 [loading_requirement_container_meta:4e45cc97-0625-45c7-8966-fb3ac1d9c41d-1710837053357] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } element { @@ -269,7 +378,6 @@ element { backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 @@ -277,6 +385,18 @@ element { navigatable = true widget_active_state_requirement_container_identifier = f72d4cfc-e22d-4fef-9bd2-68a7cd175460-1738509235086 [loading_requirement_container_meta:f72d4cfc-e22d-4fef-9bd2-68a7cd175460-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = custom_button instance_identifier = 6514e312-8243-47af-a516-89743d8ca1af1699692677651 appearance_delay = no_delay @@ -300,60 +420,42 @@ element { stay_on_screen = false element_loading_requirement_container_identifier = da72b434-a35d-463b-99f5-2aa6c62b3247-1710837053356 [loading_requirement_container_meta:da72b434-a35d-463b-99f5-2aa6c62b3247-1710837053356] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } element { - button_element_executable_block_identifier = 42d3aca7-49fe-412d-b20e-aea6045d6df6-1710837053357 - [executable_action_instance:d90363b6-1abc-4a2c-a9a8-0383341a1847-1710837053357][action_type:openlink] = https://modrinth.com/modpack/terrafirmagreg - [executable_block:42d3aca7-49fe-412d-b20e-aea6045d6df6-1710837053357][type:generic] = [executables:d90363b6-1abc-4a2c-a9a8-0383341a1847-1710837053357;] - backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/modrinth_logo.png - backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/modrinth_logo_hovered.png - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = c3eb6b24-c634-4fda-8744-d93db8fc15d0-1738509235086 - [loading_requirement_container_meta:c3eb6b24-c634-4fda-8744-d93db8fc15d0-1738509235086] = [groups:][instances:] - element_type = custom_button - instance_identifier = 6514e312-8243-47af-a516-89743d8ca1af1699692677651 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = mid-centered - x = 73 - y = 18 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 6fe51a26-4678-48dc-aa77-32b4a40c8de6-1710837053357 - [loading_requirement_container_meta:6fe51a26-4678-48dc-aa77-32b4a40c8de6-1710837053357] = [groups:][instances:] -} - -element { - source = Forge {"placeholder":"modversion","values":{"modid":"forge"}}%n%Minecraft {"placeholder":"mcversion"}%n%{"placeholder":"loadedmods"} mods loaded%n%Modpack Version: Β§cDEVΒ§r%n%Latest Modpack Version: Β§b{"placeholder":"json","values":{"source":"https://api.github.com/repos/TerraFirmaGreg-Team/Modpack-Modern/releases/latest","json_path":"$.tag_name"}}Β§r + interactable = true + source = Forge {"placeholder":"modversion","values":{"modid":"forge"}}%n%Minecraft {"placeholder":"mcversion"}%n%{"placeholder":"loadedmods"} mods loaded%n%Modpack Version: &cDEV&r%n%Latest Modpack Version: &b{"placeholder":"json","values":{"source":"https://api.github.com/repos/TerraFirmaGreg-Team/Modpack-Modern/releases/latest","json_path":"$.tag_name"}}&r source_mode = direct shadow = true - case_mode = normal scale = 1.0 - alignment = left - text_border = 0 - line_spacing = 1 + base_color = #FFFFFFFF + text_border = 2 + line_spacing = 2 enable_scrolling = true - element_type = fancymenu_customization_item_text - instance_identifier = a5845307-9494-47b0-87c0-e398a680e9e01700129661006 + auto_line_wrapping = true + remove_html_breaks = true + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + quote_color = #818181FF + quote_indent = 8.0 + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + bullet_list_indent = 8.0 + bullet_list_spacing = 3.0 + parse_markdown = true + element_type = text_v2 + instance_identifier = b0dd5a23-d0c3-43b0-981a-55f61136e77a-1746358865798 appearance_delay = no_delay appearance_delay_seconds = 1.0 fade_in_v2 = no_fading @@ -362,19 +464,28 @@ element { fade_out_speed = 1.0 base_opacity = 1.0 auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 + auto_sizing_base_screen_width = 2168 + auto_sizing_base_screen_height = 968 sticky_anchor = false - anchor_point = bottom-left - x = 1 - y = -61 - width = 163 - height = 56 + anchor_point = element + anchor_point_element = title_screen_copyright_button + x = -6 + y = -57 + width = 200 + height = 61 stretch_x = false stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = e2df7920-d8c7-41c2-82da-976ac9dec990-1710842515045 - [loading_requirement_container_meta:e2df7920-d8c7-41c2-82da-976ac9dec990-1710842515045] = [groups:][instances:] + stay_on_screen = true + element_loading_requirement_container_identifier = f9828c9e-89b0-4211-938e-cc9373497a5f-1746358865798 + [loading_requirement_container_meta:f9828c9e-89b0-4211-938e-cc9373497a5f-1746358865798] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false } vanilla_button { @@ -383,13 +494,24 @@ vanilla_button { backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true widget_active_state_requirement_container_identifier = a5d0eb38-e0bd-40e2-b194-0fcbc741923c-1738509235087 [loading_requirement_container_meta:a5d0eb38-e0bd-40e2-b194-0fcbc741923c-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button instance_identifier = mc_titlescreen_singleplayer_button appearance_delay = no_delay @@ -413,11 +535,16 @@ vanilla_button { stay_on_screen = false element_loading_requirement_container_identifier = 35fdf2a6-00bc-456b-830a-e97b7ee6f3a0-1710837053345 [loading_requirement_container_meta:35fdf2a6-00bc-456b-830a-e97b7ee6f3a0-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = false automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 } vanilla_button { @@ -425,13 +552,24 @@ vanilla_button { [executable_block:d29af260-9081-410f-86cc-eca92eb2161b-1710837053345][type:generic] = [executables:] backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/modrinth_logo.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true widget_active_state_requirement_container_identifier = a23ac421-e3aa-452e-bcd0-a7b01a605883-1738509235087 [loading_requirement_container_meta:a23ac421-e3aa-452e-bcd0-a7b01a605883-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button instance_identifier = 376322 appearance_delay = no_delay @@ -455,69 +593,42 @@ vanilla_button { stay_on_screen = false element_loading_requirement_container_identifier = 59eca2f8-b704-4a42-b2d3-101e17f6e61e-1710837053345 [loading_requirement_container_meta:59eca2f8-b704-4a42-b2d3-101e17f6e61e-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = true automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 } vanilla_button { - button_element_executable_block_identifier = e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345 - [executable_block:e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345][type:generic] = [executables:] - backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png - backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png + button_element_executable_block_identifier = 8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345 + [executable_block:8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345][type:generic] = [executables:] restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true - widget_active_state_requirement_container_identifier = 81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086 - [loading_requirement_container_meta:81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = mc_titlescreen_multiplayer_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = mid-centered - x = -55 - y = -28 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345 - [loading_requirement_container_meta:59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345] = [groups:][instances:] - is_hidden = false - automated_button_clicks = 0 + widget_active_state_requirement_container_identifier = 1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087 + [loading_requirement_container_meta:1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons nine_slice_slider_handle = false nine_slice_slider_handle_border_x = 5 nine_slice_slider_handle_border_y = 5 -} - -vanilla_button { - button_element_executable_block_identifier = e64699ee-a69c-405e-91f8-8be2cb74ce89-1738509235087 - [executable_block:e64699ee-a69c-405e-91f8-8be2cb74ce89-1738509235087][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 61e0897b-51e3-4919-9d4c-a5ca7eb3b3fa-1738509235087 - [loading_requirement_container_meta:61e0897b-51e3-4919-9d4c-a5ca7eb3b3fa-1738509235087] = [groups:][instances:] element_type = vanilla_button - instance_identifier = 604346 + instance_identifier = mc_titlescreen_accessibility_button appearance_delay = no_delay appearance_delay_seconds = 1.0 fade_in_v2 = no_fading @@ -530,37 +641,51 @@ vanilla_button { auto_sizing_base_screen_height = 0 sticky_anchor = false anchor_point = vanilla - x = 534 - y = 181 + x = 424 + y = 216 width = 20 height = 20 stretch_x = false stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 61f88303-8c48-47b0-965c-0d0da932c3df-1738509235087 - [loading_requirement_container_meta:61f88303-8c48-47b0-965c-0d0da932c3df-1738509235087] = [groups:][instances:] + stay_on_screen = false + element_loading_requirement_container_identifier = f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345 + [loading_requirement_container_meta:f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = true automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 } vanilla_button { - button_element_executable_block_identifier = 4fd9e559-3c06-41dc-ae8f-7a2ebaf224c9-1710837053345 - [executable_block:4fd9e559-3c06-41dc-ae8f-7a2ebaf224c9-1710837053345][type:generic] = [executables:] - backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png - backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png + button_element_executable_block_identifier = 3efcd3d7-b601-4f0c-b3db-8cc038e3ca78-1746358841072 + [executable_block:3efcd3d7-b601-4f0c-b3db-8cc038e3ca78-1746358841072][type:generic] = [executables:] restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true - widget_active_state_requirement_container_identifier = 17a3dbdc-def6-40ad-9964-0f7cda95d52b-1738509235087 - [loading_requirement_container_meta:17a3dbdc-def6-40ad-9964-0f7cda95d52b-1738509235087] = [groups:][instances:] + widget_active_state_requirement_container_identifier = b6f0af7c-c9a6-4d6e-942b-e9d7bd8f0d6d-1746358841072 + [loading_requirement_container_meta:b6f0af7c-c9a6-4d6e-942b-e9d7bd8f0d6d-1746358841072] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button - instance_identifier = mc_titlescreen_options_button + instance_identifier = minecraft_logo_widget appearance_delay = no_delay appearance_delay_seconds = 1.0 fade_in_v2 = no_fading @@ -572,36 +697,52 @@ vanilla_button { auto_sizing_base_screen_width = 0 auto_sizing_base_screen_height = 0 sticky_anchor = false - anchor_point = mid-centered - x = 47 - y = -5 - width = 98 - height = 20 + anchor_point = vanilla + x = 192 + y = 30 + width = 256 + height = 51 stretch_x = false stretch_y = false stay_on_screen = false - element_loading_requirement_container_identifier = 715a2b76-8625-45e4-8562-798e3aa19b3d-1710837053345 - [loading_requirement_container_meta:715a2b76-8625-45e4-8562-798e3aa19b3d-1710837053345] = [groups:][instances:] - is_hidden = false + element_loading_requirement_container_identifier = 7cf9d856-d8bb-4aed-aa82-6ce7c5f4eb91-1746358841072 + [loading_requirement_container_meta:7cf9d856-d8bb-4aed-aa82-6ce7c5f4eb91-1746358841072] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 } vanilla_button { - button_element_executable_block_identifier = 86e9765e-32c4-4aa4-8143-860366b37f05-1710837053344 - [executable_block:86e9765e-32c4-4aa4-8143-860366b37f05-1710837053344][type:generic] = [executables:] + button_element_executable_block_identifier = bb6e02a6-d703-43b2-914a-608b1ee8f63f-1746358841072 + [executable_block:bb6e02a6-d703-43b2-914a-608b1ee8f63f-1746358841072][type:generic] = [executables:] restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true - widget_active_state_requirement_container_identifier = cef303f1-7a07-4d11-ad7e-0c52a7a8dd4c-1738509235086 - [loading_requirement_container_meta:cef303f1-7a07-4d11-ad7e-0c52a7a8dd4c-1738509235086] = [groups:][instances:] + widget_active_state_requirement_container_identifier = 95e365d1-90bd-403a-a60d-6b7ed99eb9cd-1746358841072 + [loading_requirement_container_meta:95e365d1-90bd-403a-a60d-6b7ed99eb9cd-1746358841072] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button - instance_identifier = mc_titlescreen_copyright_button + instance_identifier = title_screen_copyright_button appearance_delay = no_delay appearance_delay_seconds = 1.0 fade_in_v2 = no_fading @@ -610,80 +751,53 @@ vanilla_button { fade_out_speed = 1.0 base_opacity = 1.0 auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 + auto_sizing_base_screen_width = 2168 + auto_sizing_base_screen_height = 968 sticky_anchor = false anchor_point = bottom-left - x = 2 - y = -10 + x = 5 + y = 4 width = 196 height = 10 stretch_x = false stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = b56d28d8-4b36-4505-8297-26b61a4a4046-1710837053344 - [loading_requirement_container_meta:b56d28d8-4b36-4505-8297-26b61a4a4046-1710837053344] = [groups:][instances:] + stay_on_screen = true + element_loading_requirement_container_identifier = 6da1aad5-7ef1-4dea-9ad0-ff5aed935abe-1746358841072 + [loading_requirement_container_meta:6da1aad5-7ef1-4dea-9ad0-ff5aed935abe-1746358841072] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = false automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 -} - -vanilla_button { - button_element_executable_block_identifier = c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345 - [executable_block:c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345][type:generic] = [executables:] - backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png - backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087 - [loading_requirement_container_meta:6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = mc_titlescreen_quit_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = mid-centered - x = -55 - y = 18 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345 - [loading_requirement_container_meta:a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345] = [groups:][instances:] - is_hidden = false - automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 } vanilla_button { button_element_executable_block_identifier = 785145e3-49a4-45fa-86a5-76543bb7c226-1710837053345 [executable_block:785145e3-49a4-45fa-86a5-76543bb7c226-1710837053345][type:generic] = [executables:] restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true widget_active_state_requirement_container_identifier = 98ecc456-cc76-47f1-9039-833f736d0a5e-1738509235087 [loading_requirement_container_meta:98ecc456-cc76-47f1-9039-833f736d0a5e-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button instance_identifier = mc_titlescreen_realms_button appearance_delay = no_delay @@ -707,24 +821,40 @@ vanilla_button { stay_on_screen = false element_loading_requirement_container_identifier = 7c454c53-713f-4c87-97e8-288da3eba763-1710837053345 [loading_requirement_container_meta:7c454c53-713f-4c87-97e8-288da3eba763-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = true automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 } vanilla_button { button_element_executable_block_identifier = 829507fa-6c1f-46c8-94ea-4c4d8275a324-1710837053345 [executable_block:829507fa-6c1f-46c8-94ea-4c4d8275a324-1710837053345][type:generic] = [executables:] restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true widget_active_state_requirement_container_identifier = 25294933-825d-420e-bc29-c6f745e55876-1738509235087 [loading_requirement_container_meta:25294933-825d-420e-bc29-c6f745e55876-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button instance_identifier = mc_titlescreen_language_button appearance_delay = no_delay @@ -748,11 +878,250 @@ vanilla_button { stay_on_screen = false element_loading_requirement_container_identifier = 7d7202d8-25bc-4fa6-8054-842ea3371a8d-1710837053345 [loading_requirement_container_meta:7d7202d8-25bc-4fa6-8054-842ea3371a8d-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = true automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345 + [executable_block:c68f6eba-8ff3-42ea-b8a3-55a296372b3a-1710837053345][type:generic] = [executables:] + backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png + backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087 + [loading_requirement_container_meta:6e4a2784-5288-4825-8c7e-69972c4d322e-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons nine_slice_slider_handle = false nine_slice_slider_handle_border_x = 5 nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_quit_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = mid-centered + x = -55 + y = 18 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345 + [loading_requirement_container_meta:a9f8d43c-d00b-4db2-ada7-81fa3a121de1-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 17fa0c0f-39d1-4b03-bc2f-0ccd0e0a6d25-1746358841072 + [executable_block:17fa0c0f-39d1-4b03-bc2f-0ccd0e0a6d25-1746358841072][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 01242da9-e8ac-43c4-b553-a11988b0621e-1746358841072 + [loading_requirement_container_meta:01242da9-e8ac-43c4-b553-a11988b0621e-1746358841072] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_branding_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 2 + y = 289 + width = 128 + height = 49 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = a04d6611-e8bf-4d12-8483-05bfa180ee5b-1746358841072 + [loading_requirement_container_meta:a04d6611-e8bf-4d12-8483-05bfa180ee5b-1746358841072] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 4fd9e559-3c06-41dc-ae8f-7a2ebaf224c9-1710837053345 + [executable_block:4fd9e559-3c06-41dc-ae8f-7a2ebaf224c9-1710837053345][type:generic] = [executables:] + backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png + backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 17a3dbdc-def6-40ad-9964-0f7cda95d52b-1738509235087 + [loading_requirement_container_meta:17a3dbdc-def6-40ad-9964-0f7cda95d52b-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_options_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = mid-centered + x = 47 + y = -5 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 715a2b76-8625-45e4-8562-798e3aa19b3d-1710837053345 + [loading_requirement_container_meta:715a2b76-8625-45e4-8562-798e3aa19b3d-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345 + [executable_block:e2b3e9b3-2d45-4f4f-b6dd-4f89f83b7da5-1710837053345][type:generic] = [executables:] + backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png + backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086 + [loading_requirement_container_meta:81fe13c9-2717-47ad-b654-f4d7a9906ad6-1738509235086] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_multiplayer_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = mid-centered + x = -55 + y = -28 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345 + [loading_requirement_container_meta:59ff81cd-18cf-42ee-9f05-29ab3efbd338-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 } vanilla_button { @@ -761,13 +1130,24 @@ vanilla_button { backgroundnormal = [source:local]kubejs/assets/tfg/textures/gui/button_98x20.png backgroundhovered = [source:local]kubejs/assets/tfg/textures/gui/button_hover_98x20.png restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true widget_active_state_requirement_container_identifier = f61b58cf-169c-4571-a771-d56fafddf3e7-1738509235087 [loading_requirement_container_meta:f61b58cf-169c-4571-a771-d56fafddf3e7-1738509235087] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button instance_identifier = forge_titlescreen_mods_button appearance_delay = no_delay @@ -791,26 +1171,42 @@ vanilla_button { stay_on_screen = false element_loading_requirement_container_identifier = 612a6d32-b14d-4771-a362-65ec15e28bf1-1710837053345 [loading_requirement_container_meta:612a6d32-b14d-4771-a362-65ec15e28bf1-1710837053345] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = false automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 } vanilla_button { - button_element_executable_block_identifier = 73713221-4679-44d4-9569-127755e167f5-1738509235087 - [executable_block:73713221-4679-44d4-9569-127755e167f5-1738509235087][type:generic] = [executables:] + button_element_executable_block_identifier = 0fe14f8d-aeb6-4498-9a88-d36a7b7674e8-1746358841072 + [executable_block:0fe14f8d-aeb6-4498-9a88-d36a7b7674e8-1746358841072][type:generic] = [executables:] restartbackgroundanimations = true - loopbackgroundanimations = true nine_slice_custom_background = false nine_slice_border_x = 5 nine_slice_border_y = 5 navigatable = true - widget_active_state_requirement_container_identifier = a7a2f996-aec5-4b18-9ebd-fcf21a730965-1738509235087 - [loading_requirement_container_meta:a7a2f996-aec5-4b18-9ebd-fcf21a730965-1738509235087] = [groups:][instances:] + widget_active_state_requirement_container_identifier = b83b7017-ce81-4d3b-8243-7ababe152084-1746358841072 + [loading_requirement_container_meta:b83b7017-ce81-4d3b-8243-7ababe152084-1746358841072] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 element_type = vanilla_button - instance_identifier = 6043461 + instance_identifier = minecraft_splash_widget appearance_delay = no_delay appearance_delay_seconds = 1.0 fade_in_v2 = no_fading @@ -823,222 +1219,24 @@ vanilla_button { auto_sizing_base_screen_height = 0 sticky_anchor = false anchor_point = vanilla - x = 534 - y = 181 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 2340b0c5-c073-442a-b320-3a5e557c7d93-1738509235087 - [loading_requirement_container_meta:2340b0c5-c073-442a-b320-3a5e557c7d93-1738509235087] = [groups:][instances:] - is_hidden = true - automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 -} - -vanilla_button { - button_element_executable_block_identifier = 8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345 - [executable_block:8e3abb1a-7f06-42bd-920a-eeabb0f225ec-1710837053345][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - navigatable = true - widget_active_state_requirement_container_identifier = 1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087 - [loading_requirement_container_meta:1c9f2f8a-49b4-4ed4-9744-049cd1b3c415-1738509235087] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = mc_titlescreen_accessibility_button - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 534 - y = 217 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345 - [loading_requirement_container_meta:f97a69d2-7673-4f9e-97eb-d37eb76122f3-1710837053345] = [groups:][instances:] - is_hidden = true - automated_button_clicks = 0 - nine_slice_slider_handle = false - nine_slice_slider_handle_border_x = 5 - nine_slice_slider_handle_border_y = 5 -} - -deep_element { - element_type = title_screen_logo - instance_identifier = deep:title_screen_logo - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = top-left - x = 183 - y = 30 - width = 274 - height = 52 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = fc62d3fe-4119-40f8-97e9-512a4173084c-1710842515045 - [loading_requirement_container_meta:fc62d3fe-4119-40f8-97e9-512a4173084c-1710842515045] = [groups:][instances:] - is_hidden = true -} - -deep_element { - element_type = title_screen_branding - instance_identifier = deep:title_screen_branding - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = top-left - x = 2 - y = 365 - width = 122 - height = 50 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = fead99d5-9fdb-4e94-a3d5-8a197744d4e9-1710842515045 - [loading_requirement_container_meta:fead99d5-9fdb-4e94-a3d5-8a197744d4e9-1710842515045] = [groups:][instances:] - is_hidden = true -} - -deep_element { - element_type = title_screen_splash - instance_identifier = deep:title_screen_splash - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = mid-centered - x = 221 - y = -89 + x = 393 + y = 49 width = 100 - height = 30 + height = 40 stretch_x = false stretch_y = false stay_on_screen = false - element_loading_requirement_container_identifier = 835e8081-9ba0-4136-a66e-047f32323efd-1710842515045 - [loading_requirement_container_meta:835e8081-9ba0-4136-a66e-047f32323efd-1710842515045] = [groups:][instances:] - is_hidden = true -} - -deep_element { - element_type = title_screen_realms_notification - instance_identifier = deep:title_screen_realms_notification - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = top-left - x = 423 - y = 184 - width = 13 - height = 13 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 79bafbe6-3d70-4035-8fe3-6c00fc232aab-1710842515045 - [loading_requirement_container_meta:79bafbe6-3d70-4035-8fe3-6c00fc232aab-1710842515045] = [groups:][instances:] - is_hidden = true -} - -deep_element { - element_type = title_screen_forge_copyright - instance_identifier = deep:title_screen_forge_copyright - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = top-left - x = 283 - y = 254 - width = 228 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = aac8e7e3-67e0-47ba-a8dd-ba2bff036e59-1710842515045 - [loading_requirement_container_meta:aac8e7e3-67e0-47ba-a8dd-ba2bff036e59-1710842515045] = [groups:][instances:] - is_hidden = true -} - -deep_element { - element_type = title_screen_forge_top - instance_identifier = deep:title_screen_forge_top - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 1.0 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = top-left - x = 186 - y = 4 - width = 268 - height = 19 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 22e5d1b1-3b0e-408e-96eb-071b19288a6f-1710842515045 - [loading_requirement_container_meta:22e5d1b1-3b0e-408e-96eb-071b19288a6f-1710842515045] = [groups:][instances:] + element_loading_requirement_container_identifier = 223456f0-8f0e-4317-9ea2-874fe14236c9-1746358841072 + [loading_requirement_container_meta:223456f0-8f0e-4317-9ea2-874fe14236c9-1746358841072] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false is_hidden = true + automated_button_clicks = 0 } diff --git a/config/fancymenu/options.txt b/config/fancymenu/options.txt index 3ac5845e4..ce4cae82c 100644 --- a/config/fancymenu/options.txt +++ b/config/fancymenu/options.txt @@ -27,7 +27,7 @@ B:game_intro_fade_out = 'true'; B:show_custom_window_icon = 'true'; S:custom_window_icon_macos = '/config/fancymenu/assets/icons/macOS.icns'; S:custom_window_icon_32 = '/config/fancymenu/assets/icons/icon32x32.png'; -S:custom_window_title = 'TerraFirmaGreg Modern'; +S:custom_window_title = 'TerraFirmaGreg-Modern'; S:custom_window_icon_16 = '/config/fancymenu/assets/icons/icon16x16.png'; @@ -43,11 +43,13 @@ B:show_singleplayer_screen_world_icons = 'true'; ##[layout_editor] +B:layout_editor_grid_snapping = 'true'; B:anchor_overlay_change_anchor_on_area_hover = 'true'; B:show_layout_editor_grid = 'true'; B:anchor_overlay_change_anchor_on_element_hover = 'true'; S:anchor_overlay_visibility_mode = 'dragging'; B:anchor_overlay_show_all_connection_lines = 'false'; +F:layout_editor_grid_snapping_strength = '1.0'; S:anchor_overlay_color_base_override = ''; I:layout_editor_grid_size = '10'; B:invert_anchor_overlay_color = 'false'; @@ -77,4 +79,9 @@ B:debug_overlay_show_resources_category = 'true'; ##[tutorial] -B:show_welcome_screen = 'false'; \ No newline at end of file +B:show_welcome_screen = 'false'; + + +##[keyframe_editor] + +B:arrow_keys_move_preview = 'false'; \ No newline at end of file diff --git a/config/fancymenu/panoramas/beneath/panorama/panorama_0.png b/config/fancymenu/panoramas/beneath/panorama/panorama_0.png new file mode 100644 index 000000000..cdcfa2c29 Binary files /dev/null and b/config/fancymenu/panoramas/beneath/panorama/panorama_0.png differ diff --git a/config/fancymenu/panoramas/beneath/panorama/panorama_1.png b/config/fancymenu/panoramas/beneath/panorama/panorama_1.png new file mode 100644 index 000000000..d42e69f8b Binary files /dev/null and b/config/fancymenu/panoramas/beneath/panorama/panorama_1.png differ diff --git a/config/fancymenu/panoramas/beneath/panorama/panorama_2.png b/config/fancymenu/panoramas/beneath/panorama/panorama_2.png new file mode 100644 index 000000000..48647946e Binary files /dev/null and b/config/fancymenu/panoramas/beneath/panorama/panorama_2.png differ diff --git a/config/fancymenu/panoramas/beneath/panorama/panorama_3.png b/config/fancymenu/panoramas/beneath/panorama/panorama_3.png new file mode 100644 index 000000000..844a3b2cd Binary files /dev/null and b/config/fancymenu/panoramas/beneath/panorama/panorama_3.png differ diff --git a/config/fancymenu/panoramas/beneath/panorama/panorama_4.png b/config/fancymenu/panoramas/beneath/panorama/panorama_4.png new file mode 100644 index 000000000..c9ae093b4 Binary files /dev/null and b/config/fancymenu/panoramas/beneath/panorama/panorama_4.png differ diff --git a/config/fancymenu/panoramas/beneath/panorama/panorama_5.png b/config/fancymenu/panoramas/beneath/panorama/panorama_5.png new file mode 100644 index 000000000..baa150b1c Binary files /dev/null and b/config/fancymenu/panoramas/beneath/panorama/panorama_5.png differ diff --git a/config/fancymenu/panoramas/beneath/properties.txt b/config/fancymenu/panoramas/beneath/properties.txt new file mode 100644 index 000000000..cee54b441 --- /dev/null +++ b/config/fancymenu/panoramas/beneath/properties.txt @@ -0,0 +1,9 @@ +type = panorama + +panorama-meta { + name = beneath + speed = 1.0 + fov = 85.0 + angle = 0.0 + start_rotation = 20 +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/dark.json b/config/fancymenu/ui_themes/dark.json index 46018ba17..9ad7950f4 100644 --- a/config/fancymenu/ui_themes/dark.json +++ b/config/fancymenu/ui_themes/dark.json @@ -68,10 +68,10 @@ "hex": "#2B2B2BFF" }, "edit_box_border_color_normal": { - "hex": "#D1C2D1FF" + "hex": "#5D6164FF" }, "edit_box_border_color_focused": { - "hex": "#E3D3E3FF" + "hex": "#5D6164FF" }, "list_entry_color_selected_hovered": { "hex": "#323232FF" diff --git a/config/ftbquests/quests/chapter_groups.snbt b/config/ftbquests/quests/chapter_groups.snbt index ed803c259..9575eb94b 100644 --- a/config/ftbquests/quests/chapter_groups.snbt +++ b/config/ftbquests/quests/chapter_groups.snbt @@ -5,5 +5,6 @@ { id: "44D0F3E5067B5AB8", title: "{quests.groups.voltaic_age}" } { id: "21D975CEBDE06BA9", title: "{quests.groups.space_age}" } { id: "563374AD29C006DB", title: "{quests.groups.interstellar}" } + { id: "33020D1D0ECDF301", title: "{quests.groups.technological_help}" } ] } diff --git a/config/ftbquests/quests/chapters/ae2.snbt b/config/ftbquests/quests/chapters/ae2.snbt index 0cc682b1e..60a9aad87 100644 --- a/config/ftbquests/quests/chapters/ae2.snbt +++ b/config/ftbquests/quests/chapters/ae2.snbt @@ -2,10 +2,10 @@ default_hide_dependency_lines: false default_quest_shape: "circle" filename: "ae2" - group: "44D0F3E5067B5AB8" + group: "33020D1D0ECDF301" icon: "ae2:controller" id: "09BE9F51822EC180" - order_index: 4 + order_index: 2 quest_links: [ { id: "3293CB774C1A4DF0" @@ -2302,6 +2302,78 @@ x: 8.5d y: 4.0d } + { + dependencies: ["1269F30575599F10"] + id: "2D90631147B852D2" + tasks: [{ + id: "4B92CEB19BA7FB49" + item: "expatternprovider:oversize_interface" + type: "item" + }] + x: 15.5d + y: 4.0d + } + { + dependencies: [ + "1FB2089C461BD7F5" + "6D1FC61E12586D57" + ] + id: "6F9069736E604DB4" + tasks: [ + { + id: "0C7898F1DF3EDC06" + item: "expatternprovider:assembler_matrix_frame" + type: "item" + } + { + id: "4688AE993B97749F" + item: "expatternprovider:assembler_matrix_wall" + type: "item" + } + { + id: "156E6F2A72944DD1" + item: "expatternprovider:assembler_matrix_pattern" + type: "item" + } + { + id: "4DDF957C178999AF" + item: "expatternprovider:assembler_matrix_crafter" + type: "item" + } + { + id: "11BCB5AF876035A2" + item: "expatternprovider:assembler_matrix_speed" + type: "item" + } + { + id: "19B6A6C5D2A9C3BE" + item: "expatternprovider:assembler_matrix_glass" + optional_task: true + type: "item" + } + ] + x: 13.5d + y: 6.0d + } + { + dependencies: ["13DC2F6A2D2EA3FD"] + id: "69925787B6F7F4F5" + tasks: [{ + id: "55562E94676359E7" + item: { + Count: 1 + id: "betterp2p:advanced_memory_card" + tag: { + gui: 3b + selectedIndex: { } + } + } + type: "item" + }] + x: 2.0d + y: 3.0d + } ] - title: "&6HV&r - AE2" + subtitle: ["{quests.ae2.subtitle}"] + title: "{quests.ae2}" } diff --git a/config/ftbquests/quests/chapters/cc.snbt b/config/ftbquests/quests/chapters/cc.snbt index 498840db0..5b651f2f4 100644 --- a/config/ftbquests/quests/chapters/cc.snbt +++ b/config/ftbquests/quests/chapters/cc.snbt @@ -2,10 +2,10 @@ default_hide_dependency_lines: false default_quest_shape: "" filename: "cc" - group: "44D0F3E5067B5AB8" + group: "33020D1D0ECDF301" icon: "computercraft:computer_advanced" id: "1A6D6B70EC13DDC6" - order_index: 2 + order_index: 3 quest_links: [ ] quests: [ { @@ -209,5 +209,6 @@ y: 0.0d } ] - title: "&bMV&r - Computers" + subtitle: ["{quests.computer.subtitle}"] + title: "{quests.computer}" } diff --git a/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt b/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt index ac0f139c4..6d9c53fdc 100644 --- a/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt +++ b/config/ftbquests/quests/chapters/ev__extreme_voltage.snbt @@ -340,7 +340,6 @@ dependencies: [ "40408FFD02134148" "7FA0ACB7F161F378" - "4AFD3073C731A1E4" ] description: ["You know the drill by now."] icon: "gtceu:ev_assembler" @@ -389,7 +388,6 @@ "3398FC108D9DCB46" "41D32C5178760F47" "40408FFD02134148" - "4AFD3073C731A1E4" "6B08799BCFD01D3D" "7FA0ACB7F161F378" ] @@ -582,10 +580,7 @@ y: 5.625d } { - dependencies: [ - "4AFD3073C731A1E4" - "7FA0ACB7F161F378" - ] + dependencies: ["7FA0ACB7F161F378"] description: [ "The &aLarge Titanium Boiler&r is yet another steam boiler. It's even more efficient than the previous ones, and produces more steam too. However, Steam &cbarely scales&r at this voltage." "" @@ -690,7 +685,6 @@ { dependencies: [ "40408FFD02134148" - "4AFD3073C731A1E4" "7FA0ACB7F161F378" ] description: [ @@ -714,7 +708,6 @@ "73E8283634E5E33A" "3398FC108D9DCB46" "40408FFD02134148" - "4AFD3073C731A1E4" "7FA0ACB7F161F378" ] description: [ @@ -735,10 +728,7 @@ y: 7.875d } { - dependencies: [ - "4AFD3073C731A1E4" - "7FA0ACB7F161F378" - ] + dependencies: ["7FA0ACB7F161F378"] description: [ "Note that in theory, the &3EV Chemical Reactor&r is skippable by using the &3Large Chemical Reactor&r instead, but we're evil enough to force you to make this." "" @@ -1358,10 +1348,7 @@ y: 9.0d } { - dependencies: [ - "4AFD3073C731A1E4" - "16A6AE5C770DB83A" - ] + dependencies: ["16A6AE5C770DB83A"] description: [ "The &3Distillation Tower&r is a multiblock that will help you extract the most out of fluids. In &3Distilleries&r, you had to pick only one product to output. DTs output &6all of it at once&r!" "" diff --git a/config/ftbquests/quests/chapters/gregtech_energy.snbt b/config/ftbquests/quests/chapters/gregtech_energy.snbt new file mode 100644 index 000000000..cdffcb756 --- /dev/null +++ b/config/ftbquests/quests/chapters/gregtech_energy.snbt @@ -0,0 +1,574 @@ +{ + autofocus_id: "06B2E38F7DCF2678" + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "gregtech_energy" + group: "33020D1D0ECDF301" + icon: "gtceu:max_battery" + id: "6540429F3CA4DA1B" + order_index: 1 + quest_links: [ ] + quests: [ + { + description: ["We know that &5GregTech&r isn’t the easiest mod to get into β€” especially when it comes to the &cenergy system&r. That’s why we’ll take our time in this chapter to explain as much as we can.\\n\\nSome things here might not make full sense until later in your progression, so &adon’t stress yourself&r. Just try to understand what you can for now, and feel free to &dcome back to this chapter&r whenever you have questions.\\n\\nWe’ve split this chapter into &efour categories&r, each one covering a topic related to the &6GregTech Energy System&r. We’ll provide as many examples as possible to help you understand how it all works."] + icon: "gtceu:uhv_ultimate_battery" + id: "06B2E38F7DCF2678" + tasks: [{ + id: "07E1FA6A1BB796D4" + title: "How to Gregtech" + type: "checkmark" + }] + x: 0.0d + y: 0.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: ["&6Moving Energy in Gregtech&r means understanding a few core mechanics.\\n\\nFirst, &bEnergy Tiers&r. From &aLV&r to &cUHV&r, everything in Gregtech β€” wires, machines, recipes β€” is tied to a tier. You’ll need the &ecorrect cable material&r to move energy. For example:\\n&8β€’&r Tin wire = &aLV&r\\n&8β€’&r Copper = &bMV&r\\n\\nSecond, you’ve got the &bAmperage&r mechanic. Think of &d1 Amp&r (or &d1A&r) as &ea packet of energy&r. It moves down your cable to the closest machine needing power.\\n&8β€’&r 1A of LV = &a32 EU&r\\n&8β€’&r 1A of HV = &e512 EU&r\\n\\nMost machines and energy hatches can only take &62A at once&r.\\n\\nMastering these two ideas is key before going further into energy distribution."] + icon: "gtceu:luv_field_generator" + id: "60FF9249376DF9BD" + tasks: [{ + id: "4C6524EFB1A21E6E" + title: "Moving Energy" + type: "checkmark" + }] + x: 0.0d + y: 3.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: ["Storing your energy is one of the &emost fundamental aspects&r of the power system in &dGregTech&r.\\n\\nWhy is that? Simply because even the &cstrongest generators&r won't be enough to keep up when you launch a &ebig craft&r β€” especially in late game.\\n\\nTo deal with this, GregTech provides &6multiple solutions&r to store &bastronomical amounts of EU&r. These storages act as a &3buffer&r between your energy production and the machines that drain it during complex operations.\\n\\nWhether you’re preparing for a &1Fusion Reactor&r, a &dLCT&r, or any &6HV-IV scale crafting chain&r, you’ll need that extra backup of energy to keep everything stable.\\n\\nDon’t underestimate the &apower of a good battery&r β€” it may just be the thing that saves your base from crashing during your most ambitious moments."] + icon: "gtceu:uv_field_generator" + id: "08C160A0E7BBF39D" + tasks: [{ + id: "2E561EE13A2AE934" + title: "Stocking Energy" + type: "checkmark" + }] + x: 0.0d + y: -3.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: ["It’s all about making energy, right? This part won’t be the most complicated one, since &eproducing energy&r in &2TerraFirmaGreg&r works pretty much like in &5standard GregTech&r.\\n\\nYou’ll learn about the various &6methods to generate energy&r, as well as some of the &afuels&r you can use to get the most out of your setup."] + icon: "gtceu:lv_field_generator" + id: "2CDB9778C7A30044" + tasks: [{ + id: "0772AE56AC1CCBAC" + title: "Producing Energy" + type: "checkmark" + }] + x: -3.0d + y: 0.0d + } + { + dependencies: ["06B2E38F7DCF2678"] + description: [ + "&6How to spend all this energy?&r\\n\\nUse your machines! Sounds simple, right?\\nWell... &cnot exactly&r. There are &emany small details&r that you should learn to help you on your &dquest&r to completing &3TerraFirmaGreg&r.\\n\\n&bBasic Machines&r:\\n- These machines are simple.\\n- They can handle up to &a2A&r.\\n- If you input a &chigher tier&r of energy... &4πŸ’₯ they explode&r.\\n\\n&dGregtech Multiblocks&r:\\nNow things get interesting.\\nMultiblocks offer more flexibility and power β€” &eif&r you understand how they work." + "{@pagebreak}" + "&eStandard Mechanics&r:\\n- If a multiblock can accept &aTWO&r &bEnergy Hatches&r this allows you to use &ahigher-tier recipes&r than the machine’s base tier.\\n\\nExample:\\nIf you're using a &dLarge Mixing Vessel&r and you install &12x IV Energy Hatches&r,\\nit will be able to process &cLuV-tier Mixer recipes&r β€” this is how works the &cElectric Blast Furnace&r.\\n\\nKnowing this will help you get the &6maximum efficiency&r out of your setup and progressing into higher tier materials." + "{@pagebreak}" + "&6Some multiblocks only accept one Energy Hatch, but that doesn't mean you're limited to 1A.&r\\n\\nYou can still use a &e4A or 16A Energy Hatch&r. This will allow &bOverclocking&r of recipes but &cnot recipe tier upgrades&r.\\n\\n&dExample&r:\\nThe &aLarge Circuit Assembler&r only accepts &eone Energy Hatch&r. If you install a &c4A IV Energy Hatch&r, you will be able to &eOverclock all IV and lower recipes&r.\\n\\nHowever, you &ccannot craft LuV-tier recipes&r because the machine doesn't support multiple hatches. That limitation is &aintentional&r to prevent skipping the Gregtech progression system.\\n\\n&bSo remember&r: More amps on a single hatch means faster processing, but it won’t unlock higher-tier recipes unless the multiblock is designed to allow it." + ] + icon: "gtceu:hv_field_generator" + id: "2E57B2B963717893" + tasks: [{ + id: "28965A2A91DF08E5" + title: "Spending Energy" + type: "checkmark" + }] + x: 3.0d + y: 0.0d + } + { + dependencies: ["60FF9249376DF9BD"] + description: ["&6Moving energy around in Gregtech can be tricky&b β€” cable loss&r. For every block, for every amp, you might lose energy as it travels through your wires. But don’t worry, there are &7solutions&r:\\n\\n&8β€’&r &bCover your wires&r with rubber. By doing so, you'll significantly reduce energy loss over distance. Just check the quest items for a reference.\\n&8β€’&r &bUse higher-tier cables&r. Platinum cables, for example, only lose 1 EU per block β€” &9practically nothing&r when compared to the 8192 EU it can carry.\\n&8β€’&r &bSuperconductors&r. These beauties are a bit pricier, but they have &9zero loss&r. They don’t need rubber covers, &cno shock&r. Just be aware that they require specific components based on their tier.\\n\\n&7Optimize your energy flow β€” &breduce losses&r and make your systems more efficient."] + icon: "gtceu:tin_single_cable" + id: "2544BE51A1794811" + tasks: [ + { + id: "0B948A3121D2BFE7" + item: "gtceu:tin_single_cable" + optional_task: true + type: "item" + } + { + id: "56EB20BFFC88E15C" + item: "gtceu:tin_single_wire" + optional_task: true + type: "item" + } + { + id: "6CBE37EF0B482352" + item: "gtceu:platinum_single_cable" + optional_task: true + type: "item" + } + { + id: "24025B7BA4E5FFAE" + title: "{quests.gregtech_energy.wire.task}" + type: "checkmark" + } + ] + title: "Moving with wires" + x: 0.0d + y: 5.0d + } + { + dependencies: ["60FF9249376DF9BD"] + description: ["&6There's something we didn't mention about &bAmps&r β€” cables can burn if you push too much through them. &bNot only the tier of energy matters&r, but also the &9Amps&r.\\n\\nWhenever you're outputting more &9Amps&r than a cable can handle, it's essential to either use &7bigger cables&r or cables with a &9higher amp capacity&r to prevent them from burning out. "] + icon: "gtceu:tin_octal_cable" + id: "2F9973EC65735849" + subtitle: "It burns?" + tasks: [ + { + id: "02AC71975245336E" + item: "gtceu:tin_octal_wire" + optional_task: true + type: "item" + } + { + id: "547C891139BA60B3" + item: "gtceu:tin_octal_cable" + optional_task: true + type: "item" + } + { + id: "0500E8DBD44B4D3D" + type: "checkmark" + } + ] + title: "Managing Amp" + x: 2.0d + y: 5.0d + } + { + dependencies: ["60FF9249376DF9BD"] + description: ["&6For every problem, Gregtech has a multiblock solution.&r Enter the &dActive Transformer&r.\\n\\nThis beast is your &9ultimate transformer&r. It can &echannel energy between any tiers&r β€” from &aLV&r to &cUHV&r β€” with &cno explosions&r. But that's not even the best part.\\n\\nIt can &btransmit energy using Laser Pipes&r.\\n&8β€’&r Lasers send absurd amounts of Amps.\\n&8β€’&r No loss. No cables. Just pure energy.\\n&8β€’&r Only one catch: it &chas to be in a perfectly straight line&r.\\n\\n&7When cables feel weak, &luse lasers&r."] + icon: "gtceu:active_transformer" + id: "6ECAD339C91EF194" + tasks: [ + { + id: "098424C2B55ABA69" + item: "gtceu:normal_laser_pipe" + type: "item" + } + { + id: "6A7AFEBA79AAA78C" + item: "gtceu:iv_256a_laser_target_hatch" + optional_task: true + type: "item" + } + { + id: "2A17B50CE90C5E30" + item: "gtceu:iv_256a_laser_source_hatch" + optional_task: true + type: "item" + } + { + id: "3402A41D0F9CAD37" + item: "gtceu:active_transformer" + type: "item" + } + ] + title: "The Super Transformer" + x: -2.0d + y: 5.0d + } + { + dependencies: ["08C160A0E7BBF39D"] + description: ["&dBattery Buffers&r are your basic machines to &estore and manage energy&r β€” though technically, they don’t store energy on their own. They simply serve as a &3housing for your batteries&r.\\n\\n⚠ &cIf you don’t want them to explode&r:\\n- &4Never input higher-tier energy&r into a lower-tier Battery Buffer.\\n- Batteries can only be charged if they are of &cequal or lower tier&r than the Battery Buffer.\\n\\nπŸ”Œ A Battery Buffer can accept up to &b2x its output amperage&r.\\nSo for example, a &e4x Battery Buffer&r can take in &a8A&r β€” but will only output &e4A&r max (1A per battery slot).\\n\\nπŸͺ« &eReminder&r:\\n- No batteries = &cno output&r.\\n- The number of batteries determines the number of Amps it outputs.\\nThat means a &68x Battery Buffer&r with only &e3 batteries&r will only output &e3A&r.\\n\\nUse them wisely β€” they are the &afoundation of any stable energy network&r."] + id: "6F80465F0759BECA" + tasks: [ + { + id: "6C696D9285DCE51F" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_battery_buffer_4x)item(gtceu:lv_battery_buffer_8x)item(gtceu:lv_battery_buffer_16x)item(gtceu:uhv_battery_buffer_4x)item(gtceu:uhv_battery_buffer_8x)item(gtceu:uhv_battery_buffer_16x))" + } + } + optional_task: true + title: "Some Battery Buffers" + type: "item" + } + { + id: "5EECB3420DC62587" + type: "checkmark" + } + ] + title: "Battery Buffer" + x: 0.0d + y: -5.0d + } + { + dependencies: ["08C160A0E7BBF39D"] + description: ["This one should become your &5main focus&r once you progress into &1IV&r.\\n\\nThe &dPower Substation&r β€” also known as the &dPSS&r β€” is the &6ultimate custom battery multiblock&r.\\nIt can store so much energy... you’d probably need &cmultiple lifetimes&r to fill it.\\n\\n&eHow it works&r:\\n- Build the structure using &aPalladium Substation Casings&r.\\n- Add at least &b1 Energy Hatch&r (input) and &b1 Dynamo Hatch&r (output).\\n- It accepts &aany hatch&r β€” &8Amperage-based&r or &6Laser&r.\\n- &cNo risk of explosion&r β€” transformers are &aintegrated&r.\\n\\n&eCapacitor Layers&r:\\n- You can add up to &d17 layers&r of &9Capacitor Blocks&r on top of the structure.\\n- Each layer must be &cfully filled&r β€” no gaps.\\n- Mix &fempty&r and &6full&r capacitors however you like.\\n\\nSurround each layer with &bLaminated Glass&r.\\n\\nLet’s be honest: &cYou’ll never need 17 layers&r... but hey, it’s nice to dream big.\\nIf you ever do build a full 17-layer PSS, &lplease send help&r β€” you’ve gone too far."] + icon: "gtceu:power_substation" + id: "3C4E3DAB3C77B6F0" + tasks: [ + { + id: "1FEDCA7CAA2636CE" + item: "gtceu:power_substation" + type: "item" + } + { + id: "640C3055914D42B4" + item: "gtceu:laminated_glass" + type: "item" + } + { + id: "2B5D36952AA8553D" + item: "gtceu:palladium_substation" + type: "item" + } + ] + x: 2.0d + y: -5.0d + } + { + dependencies: ["08C160A0E7BBF39D"] + description: ["Obviously, storing energy can also mean &estoring the fuel that makes it&r.\\n\\nFor this scenario, while &7Drums&r and &6Crates&r are decent early options, you should not overlook the &dSuper Tank&r and the &dSuper Chest&r.\\n\\nThese &abeasts&r are capable of storing &ctremendous amounts of fluid or items&r β€” perfect for &3autonomous energy setups&r, especially when you want to generate power &cfar away from your main base&r without having to build an entire cable network.\\n\\nJust load them up with &egas, fuel, steam&r or even &4plasma&r, and let them handle the rest. With proper planning, your outposts can be fully operational with &ano live connection&r to your central grid.\\n\\nEnergy doesn’t always come in wires β€” sometimes, it comes in barrels."] + id: "463300BE45037961" + tasks: [{ + id: "6E4464F002201129" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_super_tank)item(gtceu:mv_super_tank)item(gtceu:hv_super_tank)item(gtceu:ev_super_tank)item(gtceu:iv_quantum_tank)item(gtceu:luv_quantum_tank)item(gtceu:zpm_quantum_tank)item(gtceu:uv_quantum_tank)item(gtceu:uhv_quantum_tank))" + } + } + title: "Super Tank" + type: "item" + }] + title: "Storing the fuel" + x: -2.0d + y: -5.0d + } + { + dependencies: ["6F80465F0759BECA"] + description: ["From &7LV&r and &bMV&r, you probably built your first batteries made of &fSodium&r or &3Lithium&r.\\n\\nBut let’s be honest β€” these are the &cweakest&r batteries GregTech has to offer.\\n\\nIn this quest, we’ll look at the powerful alternatives: the &acrystal batteries&r.\\nThey are &emuch more potent&r, store way more energy, and can help you push your factory to the next tier.\\n\\nAre they &cmore expensive&r? Of course. But let’s be real...\\n&6Power is Power&r. Who’s counting?"] + id: "3B94CF569E4A2B26" + tasks: [{ + id: "1C8EE4B96BEEA13F" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:energy_crystal)item(gtceu:lapotron_crystal)item(gtceu:lapotronic_energy_orb)item(gtceu:lapotronic_energy_orb_cluster)item(gtceu:energy_module)item(gtceu:energy_cluster)item(gtceu:max_battery))" + } + } + type: "item" + }] + title: "Super Batteries" + x: 0.0d + y: -6.5d + } + { + dependencies: ["2CDB9778C7A30044"] + description: ["All of these are your basic &61-block Generators&r. They have a single &9input&r for their fuel β€” whether it’s &esteam&r, &agas&r, or &6liquid fuel&r β€” and they output exactly &e1A&r of power at their energy tier.\\n\\nThey’re simple to work with and will be your &ofirst source of power&r in &5GregTech&r until you reach the &dlarge multiblock generators&r.\\n\\nTo know what fuels can be used, &aEMI&r is your best friend β€” or you can check the &bquests on the left&r, where we’ve listed the most &aoptimal inputs&r."] + id: "0116158FBDA9DF86" + tasks: [ + { + id: "0BCC01540FE7555C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_combustion)item(gtceu:mv_combustion)item(gtceu:hv_combustion)item(gtceu:lv_steam_turbine)item(gtceu:mv_steam_turbine)item(gtceu:hv_steam_turbine)item(gtceu:lv_gas_turbine)item(gtceu:mv_gas_turbine)item(gtceu:hv_gas_turbine))" + } + } + optional_task: true + type: "item" + } + { + id: "64B39E5E9FDEABF3" + type: "checkmark" + } + ] + title: "Your first generators" + x: -5.0d + y: 0.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["The &6Large Steam Turbine&r β€” or &dLST&r β€” might not be the most common &5Large Generator&r in standard GregTech, but thanks to its early unlock at &6HV&r and the fact that &eLarge Boilers&r are stronger in &2TerraFirmaGreg&r, it definitely has its place.\\n\\nTo make it work, you’ll need an &9Input Hatch&r for &osteam&r, an &eOutput Hatch&r for &9Distilled Water&r, and of course a &dMaintenance Hatch&r. That’s all you need.\\n\\nLike all &dLarge Turbines&r, you’ll place a &6Rotor Holder&r on one side and a &dDynamo Hatch&r on the other to extract power. For the LST, the Rotor Holder must be at least &6HV-tier&r. Each Rotor Holder upgrade &cdoubles&r the output and increases &aefficiency&r slightly.\\n\\nThe base output of the LST is &e1024 EU/t&r. Let’s take an example: with an &1IV Rotor Holder&r (Γ—4) and a &cHSS-E Turbine Rotor&r (280% power), you’ll get:\\n&e1024 Γ— 4 Γ— 2.8 = 11,468.8 EU/t&r β€” that’s about &a1.4A of IV&r.\\n\\nTo extract that energy, you’d need either an &dIV Dynamo Hatch&r or an &5EV 16A Dynamo Hatch&r.\\n\\nWhile the LST isn’t the best turbine out there, if you have &9plenty of Large Boilers&r or access to &alava&r or &7creosote&r as infinite fuel, these &esteel-based, affordable turbines&r could absolutely serve you well."] + id: "20DA81038C507C90" + tasks: [{ + id: "2151B2C87E5AC2FD" + item: "gtceu:steam_large_turbine" + type: "item" + }] + x: -7.0d + y: 1.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["These two &6bad boys&r are your &achampions&r if you’re into transforming &eOils&r into &cfuels&r. The &6Large Combustion Engine&r (&dLCE&r) and the &5Extreme Combustion Engine&r (&dECE&r) share the same fuel types and even look alike β€” but they require different materials to build.\\n\\nTo craft the &dLCE&r, you’ll need to reach &5EV&r and unlock &6Titanium&r, along with at least one &1IV Circuit&r. For the &dECE&r, it’ll be &5Tungstensteel&r and a &dLuV Circuit&r β€” something you should be able to build comfortably during the &1IV Chapter&r.\\n\\nBoth machines require an &9Input Hatch&r for &cfuel&r and also &6Lubricant&r. For the &dECE&r, adding &bOxygen&r or &bLiquid Oxygen&r will grant you a &cmassive energy boost&r. Check the &etooltip&r of your fuel to compare how much extra energy you get with oxidizers β€” it's well worth it.\\n\\nKeep in mind: both engines need a &7Muffler Hatch&r, so &cThey Will Pollute&r."] + id: "4AC4D681124751EE" + tasks: [ + { + id: "31BFE575D15F270A" + item: "gtceu:large_combustion_engine" + type: "item" + } + { + id: "4B062E5264D4CAC8" + item: "gtceu:extreme_combustion_engine" + type: "item" + } + ] + x: -7.0d + y: 3.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["The &6Large Gas Turbine&r β€” also known as &dLGT&r β€” is one of your two main sources of &aenergy production&r for most of the pack. You’ll be able to build your first one at &5EV&r using &6Stainless Steel&r. It can carry you from &5EV&r all the way to &dLuV&r, until you feel ready to upgrade to the &6Large Plasma Turbine&r.\\n\\nThat said, many players can finish &2TerraFirmaGreg&r using only these turbines β€” provided you have a &cstrong infrastructure&r to handle the &agas demands&r of high-tier LGTs.\\n\\nTo build the LGT, you’ll need the usual &dMaintenance Hatch&r and &9Input Hatch&r. This turbine &erequires a Muffler Hatch&r, but it &cdoes not use an Output Hatch&r. You’ll need to manage the &cCarbon Monoxide&r it emits with something like an &6Air Scrubber&r.\\n\\nThe default output is &e4096 EU/t&r. That output &cdoubles&r with each upgrade to the &6Rotor Holder&r after &5EV&r. For example, an LGT using an &1IV Rotor Holder&r (Γ—2) with a &cHSS-E Turbine Rotor&r (280% power) will produce:\\n&e4096 Γ— 2 Γ— 2.8 = 22,937.6 EU/t&r β€” that's about &a2.8A of IV&r.\\n\\nTo fully extract that energy, you’ll need at least a &dIV 4A Dynamo Hatch&r. A simple Dynamo Hatch only handles &e2A&r.\\n\\nJust so you know: the &eEfficiency stat&r of a Turbine Rotor increases the &cduration of the recipe&r, which means you get more power from each &6mB of fuel&r.\\n\\nLastly, if the &dDynamo Hatch&r fills up, the LGT will automatically &8slow down&r and pause fuel usage, gradually reducing rotor speed until it resumes again. So &ayou won't lose any fuel&r during a backup."] + id: "3467E14C8BB54214" + tasks: [{ + id: "350B0F369725EB56" + item: "gtceu:gas_large_turbine" + type: "item" + }] + x: -7.0d + y: -1.0d + } + { + dependencies: ["0116158FBDA9DF86"] + description: ["The &6Large Plasma Turbine&r β€” also known as &dLPT&r β€” is a real powerhouse. Not in size (it’s fairly standard), but in &ccapacity&r. You’ll need &dLuV Circuits&r, a &dLuV Machine Hull&r, and &5tons of Tungstensteel&r to craft it. It’s considered your &6most powerful generator&r in &2TerraFirmaGreg&r.\\n\\nSo, how does it work? You’ll need &5Plasma&r produced by a &6Fusion Reactor&r. That plasma is cooled down inside the LPT while generating energy. You will need an &2output hatch&r to get the cooled plasma.\\n\\nBy default, the LPT starts at &e16384 EU/t&r. That energy output &cdoubles&r with each increase in the &6Rotor Holder&r after &1IV&r.\\n\\nFor example, using a &dLuV Rotor Holder&r (x2) with an &cHSS-E Turbine Rotor&r (x2,8) will give you a staggering &e91750 EU/t&r β€” that’s about &a2.8A of LuV&r power!\\n\\nLike other turbines, it will &8slow down&r and stop if the &dDynamo Hatch&r is full so you won't waste plasma, but doesn’t require a &7Muffler Hatch&r."] + id: "634EAFA86B3D57A1" + tasks: [{ + id: "706DFFC90D532880" + item: "gtceu:plasma_large_turbine" + type: "item" + }] + x: -7.0d + y: -3.0d + } + { + dependencies: ["2E57B2B963717893"] + description: [ + "&6If you didn't learn yet about Perfect Overclocking, you should check the quest right above this one.&r\\n\\nThese &3three multiblocks&r share a special ability: they can &ePerfect Overclock&r recipes depending on the &ctemperature of the machine&r.\\n\\nYou can check the current temperature by &aclicking on the controller&r.\\n\\nThere are &atwo ways to increase the temperature&r:\\n- &aUse higher-tier energy inputs&r\\n- &aUpgrade the coils&r\\n\\nTo see the temperature of a coil, simply &3hold Shift&r while hovering over it.\\n\\nOnce you know your machine's temperature, you’ll need the &dtemperature of the recipe&r. The easiest way to find it is to &ause EMI&r.\\n\\nWith both values, you can do a quick calculation to see if Perfect Overclocking (POC) applies:\\n&bYour machine must be at least 1800K hotter per overclock tier than the recipe requires.&r" + "{@pagebreak}" + "&dExample&r:\\n- Stainless Steel recipe requires &c1700K&r and is &aHV&r tier.\\n- Your EBF is at &bLuV&r and has a temperature of &c5900K&r.\\n- From HV to LuV is &a3 overclock tiers&r.\\n- 1800 x 3 = &c5400K&r β†’ Add the recipe's base: 5400 + 1700 = &c7100K&r needed for full POC.\\n- Since your machine is only at &c5900K&r, you will only Perfect Overclock from HV to EV, and EV to IV.\\n- From IV to LuV will be a normal overclock.\\n\\nSo the recipe will take &e1.7 seconds&r instead of &e0.85 seconds&r if fully overclocked.\\n\\n&bFeeling overwhelmed? Don't worry.&r\\nJust remember this: &aBetter coils = faster and cheaper recipes.&r" + ] + id: "270ED38B1B8D99C2" + tasks: [ + { + id: "03DE5604C5A6BC9B" + item: "gtceu:electric_blast_furnace" + optional_task: true + type: "item" + } + { + id: "2D32DD066BCC7D78" + item: "gtceu:alloy_blast_smelter" + optional_task: true + type: "item" + } + { + id: "6262F3C8A45FB8D5" + item: "gtceu:mega_blast_furnace" + optional_task: true + type: "item" + } + { + id: "61B9BF90A0D45FE4" + type: "checkmark" + } + ] + title: "The Blast Overclocking" + x: 5.0d + y: -1.0d + } + { + dependencies: ["2E57B2B963717893"] + description: [ + "&6You may have heard about Overclocking but don't really understand what it is?&r\\n\\nLet's take some time to explain it.\\n\\nWe should start with the basics:\\n&dLV&r represents a maximum of &a32 EU/t&r β€” sometimes less, but &cnever more&r.\\n&dMV&r goes up to &a128 EU/t&r.\\n&dHV&r reaches &a512 EU/t&r.\\nBasically, &eevery tier is a 4x increase&r in &cpower usage&r.\\n\\n&bWhat happens when you run a lower-tier recipe in a higher-tier machine?&r\\nThat's what we call &eOverclocking&r:\\n- An &dMV&r recipe (33–128 EU/t) run in an &dHV&r machine will:\\n &eβ†’ Use 4x more energy&r\\n &eβ†’ Be 2x faster&r\\n\\n- Same MV recipe in an &dEV&r machine?\\n &eβ†’ 8x more energy&r\\n &eβ†’ 4x faster&r\\n\\nSo yes, it's &cmore power-efficient to use multiple machines&r rather than overclocking one.\\nBut let's be real: in most setups, &eyou’ll prefer overclocking&r to building 4 MV Macerators.\\n\\nStill, it's &egood to know this early on&r, when energy is tight." + "{@pagebreak}" + "&bPerfect Overclocking&r\\nThere’s also a special kind of overclocking available in a &afew multiblocks&r: &e\\n\\nPerfect Overclocking&r.\\nHere, instead of:\\n- &a4x energy&r for &a2x speed&r,\\nyou get:\\n- &a4x energy&r for &a4x speed&r!\\n\\n&dThis makes it just as efficient&r as running multiple machines.\\n\\nCurrently in &3TerraFirmaGreg&r, &6only the following multiblocks&r support this:\\n- &cElectric Blast Furnace (EBF)\\n- Advanced Blast Dryer (ABD)\\n- Rocket Heat Furnace (RHF)\\n- Large Chemical Reactor (LCR)" + ] + icon: "gtceu:large_assembler" + id: "6F46479365672DDD" + tasks: [{ + id: "18A095DEF3B37900" + title: "Overcloak" + type: "checkmark" + }] + title: "Overclock" + x: 5.0d + y: -3.0d + } + { + dependencies: ["2E57B2B963717893"] + description: ["&6Another hidden mechanic in Gregtech Multiblocks: the &dSubtick&r.\\n\\nWhat is it?\\nSubtick activates when a recipe becomes &eso fast it takes less than one tick&r to process. Normally, machines can’t go faster than one recipe per tick β€” but with Subtick, they can!\\n\\n&bHow does it work?&r\\nOnce a recipe hits 1 tick duration, upgrading the Energy Hatch further won’t make it faster.\\nBut thanks to Subtick, instead of wasting power, the machine will &aparallel the recipe internally&r.\\n\\nFor example: If your &aLCR (Large Chemical Reactor)&r runs a LuV recipe at 1 tick, then at ZPM, it will run &e2 recipes per tick&r. Even faster hatches mean &emore internal parallel&r.\\n\\n&dNote&r: As of now, only the &aLCR supports Subtick&r β€” and yes, it also does &bPerfect Overclocking&r. That’s why the LCR doesn’t need a Parallel Hatch: it’s already doing it... but better."] + id: "26D01C54FEE12B2E" + tasks: [{ + id: "1A6DE2D00A7A9FB2" + item: "gtceu:large_chemical_reactor" + type: "item" + }] + title: "Subtick" + x: 5.0d + y: 1.0d + } + { + dependencies: ["2E57B2B963717893"] + description: ["&6The &dParallel Hatch&r is a powerful tool for &aLarge Multiblocks&r.\\n\\n&bWhat does it do?&r\\nWhere allowed (most notably on Multiblocks crafted from the &eAlloy Blast Smelter&r), it lets you run &amultiple recipes at the same time&r.\\n\\nIt does this by consuming &cmore energy&r per tick, but massively increasing throughput. Perfect if you’re mass-producing alloys, circuits or chemicals.\\n\\nJust place a Parallel Hatch on the Multiblock and make sure it’s fed with enough energy and input materials. Most multiblocks that allow it will show so in EMI or questbook.\\n\\n&dNote&r: The &aLCR&r (Large Chemical Reactor) &cdoes not use Parallel Hatches&r β€” it handles internal parallel using &bSubtick mechanics&r instead."] + id: "5A478712FBE7BC83" + tasks: [{ + id: "6B288347B38FD54D" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:iv_parallel_hatch)item(gtceu:luv_parallel_hatch)item(gtceu:zpm_parallel_hatch)item(gtceu:uv_parallel_hatch))" + } + } + type: "item" + }] + title: "Parallel Hatch" + x: 5.0d + y: 3.0d + } + { + dependencies: ["3467E14C8BB54214"] + description: ["When we speak about &agas fuels&r, we’re really talking about &cjust one&r β€” &eNitrobenzene&r.\\n\\nYou’ll be able to produce it once you reach &6HV&r, and we &astrongly recommend it&r if you’re planning to use the &5Large Gas Turbine&r.\\n\\nBefore reaching Nitrobenzene, &eBenzene&r is a solid option to get started. You can obtain it via &aOrganic Chemistry&r or by processing &eHeavy Oil&r, if you’re lucky enough to have some nearby.\\n\\nMaking &eNitrobenzene&r involves several steps β€” until you craft your first &6Large Chemical Reactor&r (&aLCR&r), which will let you &3skip many sub-steps&r and simplify the process.\\n\\nIt’s nothing too complicated: combine &3Hydrogen&r, &bNitrogen&r, and &bOxygen&r to make &eNitric Acid&r in infinite quantities. As for &eSulfuric Acid&r, you probably already know it’s just &6Sulfur&r and &9Water&r β€” right?\\n\\nOnce you get this chain going, Nitrobenzene becomes one of the &amost powerful fuels&r for gas burning."] + icon: "gtceu:nitrobenzene_bucket" + id: "75DAF94D46BA4164" + subtitle: "The everyone favorite" + tasks: [ + { + id: "2A3155363C7C56A7" + item: "gtceu:nitrobenzene_bucket" + optional_task: true + type: "item" + } + { + id: "6D22AF719926DC1C" + item: "gtceu:benzene_bucket" + optional_task: true + type: "item" + } + { + id: "532915D09934F836" + item: "gtceu:methane_bucket" + optional_task: true + type: "item" + } + { + id: "75DE64829622C96D" + type: "checkmark" + } + ] + title: "Gas Fuels" + x: -8.5d + y: -1.0d + } + { + dependencies: ["634EAFA86B3D57A1"] + description: ["&6Large Plasma Turbines&r require &chigh-tech fuels&r to run, and we provide you with &a2 strong options&r:\\n\\n&8- The first option&r becomes available with your &dMK1 Fusion Reactor&r: &eHelium Plasma&r.\\nYou can create it using &3Deuterium&r and &3Tritium Gas&r β€” both gases are obtained by &adistilling Liquid Ender Air&r.\\nThis fuel isn't the most powerful, but it's by far the &aeasiest and earliest&r to produce.\\n\\n&8- The second option&r requires a &5MK3 Fusion Reactor&r and allows you to generate &eNickel Plasma&r.\\nTo make it, you’ll need &6Liquid Potassium&r β€” which you can extract from various ores β€” and the &4infamous Fluorine&r, which you should already know how to produce by now.\\n\\n⚠ Don’t forget: &eHelium Gas&r and &eLiquid Nickel&r should be &3collected and returned&r to your storage for &afuture reuse&r.\\n\\nThese two fuels are your &abest candidates&r for powering the &dLPT&r, depending on how far you've progressed in your &bindustrial madness&r."] + id: "3ADC1B684A6749B2" + subtitle: "It's very hot" + tasks: [ + { + id: "528281483EA83791" + item: "gtceu:helium_plasma_bucket" + optional_task: true + type: "item" + } + { + id: "0C8FFDCD99E663E4" + item: "gtceu:nickel_plasma_bucket" + optional_task: true + type: "item" + } + { + id: "648FDBADCC1145CA" + type: "checkmark" + } + ] + title: "Plasma Fuels" + x: -8.5d + y: -3.0d + } + { + dependencies: ["20DA81038C507C90"] + description: ["Steam isn’t really complicated β€” just &aboil water&r to get steam.\\n\\nTo do it efficiently, we recommend using &6Large Boilers&r. You’ll find &c4 versions&r: one each for &8ULV&r, &bMV&r, &5EV&r, and &1IV&r. Each tier provides a &dstrong increase&r in steam output.\\n\\nHowever, be aware: the scaling of the &dLarge Steam Turbine&r with these boilers is &cnot the best&r compared to other power generation methods.\\n\\nMost players will &7skip&r the &5Titanium&r and &dTungstensteel&r Boilers β€” they exist if you want them, but aren’t really &aefficient or worth building&r in most cases.\\n\\nAs a reminder: &e2 mB&r of steam = &e1 EU&r."] + icon: "gtceu:steam_bucket" + id: "7D5CA47D0E147922" + subtitle: "A cool platform" + tasks: [ + { + id: "20720B4864B6584D" + item: "gtceu:steam_bucket" + optional_task: true + type: "item" + } + { + id: "42A4CEE8AF825901" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:bronze_large_boiler)item(gtceu:steel_large_boiler)item(gtceu:titanium_large_boiler)item(gtceu:tungstensteel_large_boiler))" + } + } + title: "Large Boilers" + type: "item" + } + ] + title: "This is Steam" + x: -8.5d + y: 1.0d + } + { + dependencies: ["4AC4D681124751EE"] + description: ["All of these &cfuels&r are used for &6Combustion Generators&r β€” ranked here from the &cleast efficient&r to the &abest&r.\\n\\nDuring &bMV&r, we recommend starting with &eDiesel&r or &eBiodiesel&r. Later on, you can upgrade to &eCetane-Boosted Diesel&r at &6HV&r by mixing it with &bNitrogen&r, &3Hydrogen&r, and &bOxygen&r.\\n\\nOnce you reach &5EV&r and get your hands on a &6Distillation Tower&r, it's time to switch over to &eGasoline&r and &eHigh Octane Gasoline&r. Don’t attempt this too early β€” &coils need to be distilled properly&r, and doing it with a &cDistillery&r is &cnot efficient&r at all.\\n\\nTo make this work, you'll need a combination of oil distillation and some &aorganic compound processing&r. Thankfully, a &6Pyrolyse Oven&r and a &6Distillation Tower&r will handle it all smoothly.\\n\\nIf you manage a &asteady supply&r of &eHigh Octane Gasoline&r, you should be able to &3finish the entire modpack&r running only on &6Combustion Generators&r."] + id: "0C718329245D9619" + subtitle: "This one is killing hard the planet" + tasks: [ + { + id: "50CE5C3BA076E792" + item: "gtceu:bio_diesel_bucket" + optional_task: true + type: "item" + } + { + id: "4C79A4FA2CB71796" + item: "gtceu:diesel_bucket" + optional_task: true + type: "item" + } + { + id: "4A3E0975BCDE21F5" + item: "gtceu:cetane_boosted_diesel_bucket" + optional_task: true + type: "item" + } + { + id: "2B18A84AE24ACDCB" + item: "gtceu:gasoline_bucket" + optional_task: true + type: "item" + } + { + id: "62E15DB5A988AE21" + item: "gtceu:high_octane_gasoline_bucket" + optional_task: true + type: "item" + } + { + id: "63099EACCEF08E14" + type: "checkmark" + } + ] + title: "Liquid fuel" + x: -8.5d + y: 3.0d + } + ] + subtitle: ["{quests.gregtech_energy.subtitle}"] + title: "{quests.gregtech_energy}" +} diff --git a/config/ftbquests/quests/chapters/hv__high_voltage.snbt b/config/ftbquests/quests/chapters/hv__high_voltage.snbt index adf45f331..66b19f6d2 100644 --- a/config/ftbquests/quests/chapters/hv__high_voltage.snbt +++ b/config/ftbquests/quests/chapters/hv__high_voltage.snbt @@ -5,7 +5,7 @@ group: "44D0F3E5067B5AB8" icon: "gtceu:hv_electric_motor" id: "237BDB19A9495869" - order_index: 3 + order_index: 2 quest_links: [ { id: "2583D0B64E51FAC8" @@ -14,13 +14,6 @@ x: 7.875d y: -5.25d } - { - id: "47BF469B9B0EB28A" - linked_quest: "4AFD3073C731A1E4" - size: 0.75d - x: 7.875d - y: -4.125d - } { id: "6C3B2B8F8B6646EA" linked_quest: "6DDDE2268B691F74" @@ -572,7 +565,6 @@ y: -5.25d } { - dependencies: ["4AFD3073C731A1E4"] description: [ "The &3Vacuum Freezer&r is a multiblock used to cool down &eHot Ingots&r. All ingots made in the EBF with a temperature above &d1750K&r will need it." "" @@ -613,10 +605,7 @@ y: -4.125d } { - dependencies: [ - "41D32C5178760F47" - "4AFD3073C731A1E4" - ] + dependencies: ["41D32C5178760F47"] description: [ "The next &3Circuit Assembler&r. This tier of Circuit Assembler is only required for one type of Circuit - your first ever &aMainframe&r." "" @@ -653,10 +642,7 @@ y: -1.875d } { - dependencies: [ - "4AFD3073C731A1E4" - "6B1595678ECB7AC8" - ] + dependencies: ["6A451F43F3D7A671"] description: [ "The first &1IV&r circuit. Congratulations on making it this far!" "" @@ -1268,6 +1254,62 @@ x: 2.25d y: -3.0d } + { + description: [ + "&aBlue Alloy&r is an excellent Cable material for &6HV&r power." + "" + "Nothing is preventing you from using it for &bMV&r power too! Make sure that you don't overvolt your machines, though." + "" + "Superconductors for both &bMV&r and &6HV&r are unlocked... later." + "" + "&aElectrotine&r is obtained from the &cNether&r, so don't craft it in the Mixer!" + "" + "Furthermore, &aElectrotine&r can be separated for &dElectrum&r and &dRedstone&r." + ] + icon: "gtceu:blue_alloy_ingot" + id: "073F59194B479AA3" + rewards: [{ + id: "6DDC52F547CDE852" + item: "gtceu:electrotine_dust" + random_bonus: 7 + type: "item" + }] + shape: "square" + size: 1.0d + subtitle: "You're blue now... that's my alloy" + tasks: [{ + id: "6214AC99E4182DD9" + item: "gtceu:blue_alloy_ingot" + type: "item" + }] + title: "Blue Alloy" + x: 11.0d + y: -6.0d + } + { + dependencies: [ + "5063FDFFBE3E4855" + "3568BC9742092FC5" + ] + description: [ + "Your first &5EV&r Circuit gets a unique texture. If you still consider yourself to be in &bMV&r, &ahold off&r on making too many of these, as they won't benefit you right now. We can't stop you from making these if you &djust wanna flex&r on us, though." + "" + "It'll be needed in &6HV&r." + ] + icon: "gtceu:micro_processor_computer" + id: "6A451F43F3D7A671" + shape: "square" + size: 1.0d + subtitle: "Standing out amongst the rest" + tasks: [{ + id: "01FE6BC2780D623B" + item: "gtceu:micro_processor_computer" + type: "item" + }] + title: "First EV Circuits!" + x: 8.0d + y: -4.0d + } ] subtitle: ["Scale up your power and begin advanced chemistry"] title: "&6HV&r - High Voltage" diff --git a/config/ftbquests/quests/chapters/lv__low_voltage.snbt b/config/ftbquests/quests/chapters/lv__low_voltage.snbt index db0817f6c..b7bee86da 100644 --- a/config/ftbquests/quests/chapters/lv__low_voltage.snbt +++ b/config/ftbquests/quests/chapters/lv__low_voltage.snbt @@ -12,7 +12,7 @@ dependencies: ["2F7617C0C4B330DE"] description: ["{quests.low_voltage.lv_fluid_regulator.desc}"] id: "47D4545452F05E37" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_fluid_regulator.subtitle}" tasks: [{ @@ -32,7 +32,7 @@ "{quests.low_voltage.lv_robot_arm.desc.2}" ] id: "3DE7A2B91CFF48F6" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_robot_arm.subtitle}" tasks: [{ @@ -48,7 +48,7 @@ dependencies: ["7EED0084BA59FED1"] description: ["{quests.low_voltage.lv_conveyor.desc}"] id: "288CE4AA4C5AA8BF" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_conveyor.subtitle}" tasks: [{ @@ -64,7 +64,7 @@ dependencies: ["7EED0084BA59FED1"] description: ["{quests.low_voltage.lv_pump.desc}"] id: "2F7617C0C4B330DE" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_pump.subtitle}" tasks: [{ @@ -80,7 +80,7 @@ dependencies: ["7EED0084BA59FED1"] description: ["{quests.low_voltage.lv_piston.desc}"] id: "38993B4697B0E16C" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_piston.subtitle}" tasks: [{ @@ -177,34 +177,6 @@ x: 5.5d y: -0.5d } - { - description: [ - "In theory, Crates are flat upgrades to Chests. A single block space that stores more items - what more could you ask for?" - "" - "Unfortunately, there's a small downside - Crates do not support item movement shortcuts well. We plan on fixing this in the long-term." - "" - "Where they shine however is the fact that they &6accept Covers&r, making them perfect candidates for buffers in automation." - ] - icon: "gtceu:bronze_crate" - id: "7CCC1BDDE0C67F16" - shape: "rsquare" - size: 1.0d - subtitle: "Earlygame buffering" - tasks: [{ - id: "78E120F8EDE2BD3F" - item: { - Count: 1 - id: "ftbfiltersystem:smart_filter" - tag: { - "ftbfiltersystem:filter": "or(item(gtceu:wood_crate)item(gtceu:bronze_crate)item(gtceu:steel_crate)item(gtceu:aluminium_crate)item(gtceu:stainless_steel_crate)item(gtceu:titanium_crate)item(gtceu:tungsten_steel_crate))" - } - } - type: "item" - }] - title: "GregTech Storage" - x: 6.5d - y: -0.5d - } { dependencies: [ "288CE4AA4C5AA8BF" @@ -220,7 +192,7 @@ ] icon: "gtceu:crafting_table_cover" id: "1C767009F505A813" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.cover_behaviour.subtitle}" tasks: [{ @@ -246,7 +218,7 @@ ] icon: "minecraft:hopper" id: "64E1E87B8AF72968" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.machine_auto_output_behaviour.subtitle}" tasks: [{ @@ -384,7 +356,8 @@ "{quests.low_voltage.lv_superconductor.desc.2}" ] id: "46AD7A6F3B6775F5" - shape: "rsquare" + optional: true + shape: "heart" size: 1.0d subtitle: "{quests.low_voltage.lv_superconductor.subtitle}" tasks: [{ @@ -431,7 +404,7 @@ } } id: "59F0060B55307311" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.programmed_circuits.subtitle}" tasks: [{ @@ -590,15 +563,25 @@ y: 4.5d } { - dependencies: ["3E6DC423FE4A99F7"] + dependencies: [ + "3E6DC423FE4A99F7" + "02FDECC931B5E8EF" + ] description: ["{quests.low_voltage.lv_ore_prospector.desc}"] id: "2E36E5755B2F551C" + optional: true shape: "heart" size: 1.0d subtitle: "{quests.low_voltage.lv_ore_prospector.subtitle}" tasks: [{ - id: "1AC97E61EF4958C8" - item: "gtceu:prospector.lv" + id: "61235B5F55D60DB5" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:prospector.lv)item(gtceu:prospector.hv)item(gtceu:prospector.luv))" + } + } type: "item" }] title: "{quests.low_voltage.lv_ore_prospector.title}" @@ -606,7 +589,10 @@ y: 0.5d } { - dependencies: ["5B2696206205CB2E"] + dependencies: [ + "5B2696206205CB2E" + "70432F650591353C" + ] description: ["{quests.low_voltage.cupronickel_coil.desc}"] icon: { Count: 1 @@ -632,7 +618,7 @@ dependencies: ["22510C5F2386B453"] description: ["{quests.low_voltage.lv_gas_collector.desc}"] id: "15928F50AE80A5CF" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_gas_collector.subtitle}" tasks: [{ @@ -680,7 +666,7 @@ ] icon: "gtceu:fluid_cell" id: "292938760AB9A12B" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.universal_cell.subtitle}" tasks: [{ @@ -723,7 +709,7 @@ description: ["{quests.low_voltage.soldering_alloy.desc}"] icon: "gtceu:soldering_alloy_ingot" id: "713C8D6A20BF3A0E" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.soldering_alloy.subtitle}" tasks: [{ @@ -915,7 +901,7 @@ ] icon: "gtceu:oxygen_bucket" id: "1A77CA35F054F988" - shape: "rsquare" + shape: "square" size: 1.0d subtitle: "{quests.low_voltage.lv_oxygen.subtitle}" tasks: [{ @@ -1018,7 +1004,7 @@ description: ["{quests.low_voltage.1_mv_circuit.desc}"] id: "0DBC148D92A9F69F" shape: "gear" - size: 1.2d + size: 1.5d subtitle: "{quests.low_voltage.1_mv_circuit.subtitle}" tasks: [{ id: "70313E1917121E14" @@ -1027,7 +1013,7 @@ }] title: "{quests.low_voltage.1_mv_circuit.title}" x: 0.0d - y: 10.799999999999999d + y: 11.0d } { dependencies: ["1E9BE8D3F8A602DC"] @@ -1195,28 +1181,10 @@ x: 3.0d y: -0.5d } - { - dependencies: ["7CCC1BDDE0C67F16"] - description: ["With that tape you wil be able to move around the crate. The main advantage? You can put anything in a crate, weight won't be an issue here."] - icon: "gtceu:basic_tape" - id: "37151F9C4A240041" - shape: "rsquare" - size: 1.0d - subtitle: "Moving stuff around" - tasks: [{ - id: "2FCA41AFFAF08816" - item: "gtceu:basic_tape" - type: "item" - }] - title: "Tape for Crate" - x: 7.5d - y: -0.5d - } { dependencies: ["22510C5F2386B453"] description: ["{quests.low_voltage.lv_mixer.desc}"] id: "5B891BA4897FD73C" - optional: true shape: "octagon" size: 2.0d subtitle: "{quests.low_voltage.lv_mixer.subtitle}" @@ -1263,7 +1231,7 @@ dependencies: ["15928F50AE80A5CF"] description: ["{quests.low_voltage.lv_nitrogen.desc}"] id: "39F6BCF4B8DFC7D4" - shape: "rsquare" + shape: "square" subtitle: "{quests.low_voltage.lv_nitrogen.subtitle}" tasks: [{ id: "332632EB70DC54EB" @@ -1303,7 +1271,7 @@ description: ["{quests.low_voltage.mold_plate.desc}"] icon: "gtceu:plate_casting_mold" id: "3526779F1E3E2DB5" - shape: "rsquare" + shape: "square" subtitle: "{quests.low_voltage.mold_plate.subtitle}" tasks: [ { @@ -1411,6 +1379,30 @@ x: 0.0d y: 1.0d } + { + dependencies: ["0DBC148D92A9F69F"] + description: [ + "{quests.low_voltage.lv_greenhouse.desc.1}" + "{@pagebreak}" + "{quests.low_voltage.lv_greenhouse.desc.2}" + "{@pagebreak}" + "{quests.low_voltage.lv_greenhouse.desc.3}" + ] + icon: "minecraft:oak_sapling" + id: "1F41C35890E2C44F" + optional: true + shape: "heart" + size: 1.5d + subtitle: "{quests.low_voltage.lv_greenhouse.subtitle}" + tasks: [{ + id: "3EB01235ED295080" + item: "gtceu:greenhouse" + type: "item" + }] + title: "{quests.low_voltage.lv_greenhouse.title}" + x: 3.0d + y: 11.0d + } ] subtitle: ["{quests.low_voltage.subtitle}"] title: "{quests.low_voltage}" diff --git a/config/ftbquests/quests/chapters/multiblock_dilemma.snbt b/config/ftbquests/quests/chapters/multiblock_dilemma.snbt deleted file mode 100644 index 53dd8fc3c..000000000 --- a/config/ftbquests/quests/chapters/multiblock_dilemma.snbt +++ /dev/null @@ -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" -} diff --git a/config/ftbquests/quests/chapters/mv__medium_voltage.snbt b/config/ftbquests/quests/chapters/mv__medium_voltage.snbt index 03e0fe32b..337602ca5 100644 --- a/config/ftbquests/quests/chapters/mv__medium_voltage.snbt +++ b/config/ftbquests/quests/chapters/mv__medium_voltage.snbt @@ -1,59 +1,44 @@ { default_hide_dependency_lines: false - default_quest_shape: "rsquare" + default_quest_shape: "square" filename: "mv__medium_voltage" group: "44D0F3E5067B5AB8" icon: "gtceu:mv_electric_motor" id: "43E779CEEB25D55B" order_index: 1 quest_links: [{ - id: "6FCAD016C795DE93" - linked_quest: "7567E885B7166603" - shape: "gear" - size: 1.2d - x: 0.0d - y: 0.375d + id: "4C40CD101E2A9591" + linked_quest: "02854A3E8A5D5043" + shape: "heart" + x: -10.5d + y: -6.5d }] quests: [ { - dependencies: [ - "0DBC148D92A9F69F" - "7567E885B7166603" - ] + dependencies: ["22E462070F8B027A"] description: [ - "The &3Pyrolyse Oven&r is an electric equivalent to the &3Coke Oven&r. It can produce &9Coal Coke&r and &9Charcoal&r with a &9Creosote&r byproduct just as before, but also has additional &6Organic Byproducts&r, the most beneficial of these being &aWood Tar&r." - "" - "Another product is &aBiomass&r, which is more pertinent for your progression as of this moment." + "{quests.medium_voltage.pyrolyse.desc.1}" "{@pagebreak}" - "The byproducts can be Distilled for an array of organic resources, with &odifferent&r byproducts giving &odifferent&r ratios of &odifferent&r chemicals." - "" - "You will need to take a peek at the &9Distillation&r Quest to get to grips with the power of distillation..." + "{quests.medium_voltage.pyrolyse.desc.2}" "{@pagebreak}" - "There are recipes that can accept &bNitrogen&r to double the speed. This isn't quite worth pursuing right now, but Nitrogen will eventually be free and infinite." - "" - "You should be more than fine with a single &3LV Energy Hatch&r, and Superconductors to supply a steady &d64 EU/t&r. Additionally, &3Cupronickel Coils&r are perfect when you're getting used to the Pyrolyse Oven, but you may want to upgrade to &bKanthal&r eventually." - "" + "{quests.medium_voltage.pyrolyse.desc.3}" "{@pagebreak}" - "&9&lNote:&r&l The Plant path is one path you can take towards &9&lEthylene&r&l, which is a necessary chemical in progressing to &6HV&r&l. The other path involves Oil.&r" - "" - "The Pyrolyse Oven remains &doptional&r. However, it is very rewarding to construct one either for Power, or for the various Byproducts, and we highly recommend you give it a look." - "" - "&l&3Lore:&r&o In GT5u, the structure for the Pyrolyse Oven was infamously a giant box with only 9 coils inside. Players usually spent several minutes debugging what is wrong due to a lack of a JEI preview." + "{quests.medium_voltage.pyrolyse.desc.4}" ] icon: "gtceu:pyrolyse_oven" id: "53DC6E32C41C94C3" optional: true shape: "square" - size: 0.75d - subtitle: "Thermal Decomposition" + size: 1.0d + subtitle: "{quests.medium_voltage.pyrolyse.subtitle}" tasks: [{ id: "0FD2962C232149F8" item: "gtceu:pyrolyse_oven" type: "item" }] - title: "Pyrolyse Oven" - x: 0.0d - y: -0.75d + title: "{quests.medium_voltage.pyrolyse.title}" + x: -2.5d + y: -0.5d } { dependencies: [ @@ -61,44 +46,40 @@ "1A29EFBCEA017F99" ] description: [ - "Welcome to the &2natural&r Ethylene route! This method uses &9plant matter&r to produce Ethanol." - "" - "Before we get ahead of ourselves, &aSugar Cane&r works fine in a &3Brewery&r for a decent yield of Biomass." - "" - "Othe&rrwise, you could try the \"&o&dPlantball into Bio Chaff&r\" route, and then turn it into Biomass, either in the &3Brewery&r or the &3Pyrolyse Oven&r - the latter being more efficient." - "" - "&9Note:&r Only one Bio Chaff can be obtained from maceration until you make the &3HV Macerator&r." + "{quests.medium_voltage.mv_biomass.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o You may recognise Plantballs from IndustrialCraft2! In IC2 Experimental, there was this rather... obscure way to turn Biomass into Biogas for power, which sadly required too much investment to be really worth it." + "{quests.medium_voltage.mv_biomass.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_biomass.desc.3}" ] icon: "gtceu:plant_ball" id: "6EB68C28BEE24DEF" - size: 0.66d - subtitle: "Plants aren't industrial enough!" + optional: true + size: 1.0d + subtitle: "{quests.medium_voltage.mv_biomass.subtitle}" tasks: [{ - id: "74B1433E65EC86E4" + id: "4FBD476EB6B6DD04" item: "gtceu:biomass_bucket" type: "item" }] - title: "Biomass" - x: 0.0d - y: -1.875d + title: "{quests.medium_voltage.mv_biomass.title}" + x: -5.5d + y: -0.5d } { - dependencies: ["648BCF486E16CCB2"] + dependencies: ["22E462070F8B027A"] description: [ - "The Brewery can be used to make &aLubricant&r from &aRedstone&r and &aCreosote&r/&aOil&r. Lubricant has some niche uses, namely being used in the &3Cutter&r to significantly reduce the duration of its recipes." - "" - "The Brewery is a very very slow machine, but it requires almost no power. Building &2many Breweries&r will help you obtain enough Biomass on your quest for plastic." - "" - "&9Note:&r The Brewery \"unlocks\" the Biomass path towards &9Ethylene&r. The same can be done in the &3Pyrolyse Oven&r. The other path involves Oil.&r" + "{quests.medium_voltage.mv_brewery.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o You could make your own Brewery if you want to build up a company and start selling Booze... in GregTech 6.&r" + "{quests.medium_voltage.mv_brewery.desc.2}" ] + hide_dependency_lines: true icon: "gtceu:mv_brewery" id: "1A29EFBCEA017F99" - size: 0.66d - subtitle: "*hic*... *hic*" + optional: true + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_brewery.subtitle}" tasks: [ { id: "095C98D86D021B2E" @@ -106,16 +87,15 @@ type: "item" } { - amount: 1000L - fluid: "gtceu:lubricant" - id: "1C0C8D71AF8C41C2" + id: "1CB0F32E8293B5D7" + item: "gtceu:lubricant_bucket" optional_task: true - type: "fluid" + type: "item" } ] - title: "Local Brewery selling Booze" - x: 1.125d - y: -1.875d + title: "{quests.medium_voltage.mv_brewery.title}" + x: -5.5d + y: -2.0d } { dependencies: [ @@ -123,249 +103,180 @@ "5D9D01EF219A31C5" "316FF60D6FFE97CE" ] - description: [ - "Our warmest congratulations on making it here." - "" - "The way you should obtain &aEthylene&r was described in the previous Quest, depending on the route you chose." - "" - "&aEthylene&r will shortly be used in polymer production. It's also useful in a few other reactions." - ] + description: ["{quests.medium_voltage.mv_ethylene.desc}"] icon: "gtceu:ethylene_bucket" id: "6BB98D128822730E" - min_required_dependencies: 2 + min_required_dependencies: 1 shape: "square" - size: 0.75d - subtitle: "One of many hydrocarbons" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_ethylene.subtitle}" tasks: [{ - id: "286ED57C12F41DF2" + id: "29191DABA0ACE155" item: "gtceu:ethylene_bucket" type: "item" }] - title: "Ethylene" - x: 1.125d - y: -3.0d + title: "{quests.medium_voltage.mv_ethylene.title}" + x: -10.0d + y: 1.0d } { dependencies: [ "6EB68C28BEE24DEF" "6A304E453D74C57C" ] - description: [ - "Put your previously made &aBiomass&r into a &3MV Distillery&r to make &aEthanol&r." - "" - "You will need this for &dEthylene&r by reacting it with &aSulfuric Acid&r in a &3MV Chemical Reactor&r... unless you chose to go down the Oil path." - "" - "Once you have a hefty starting stock of Ethanol, consider making and distilling &9Fermented Biomass&r in a &3Distillation Tower&r (when you get there!) for extra chemicals." - "" - "&cDo not try&r to use Ethanol as a Power source... it's quite possibly its worst use. If it's organic &9Power&r that you want, we suggest taking a look at &dBenzene&r instead!" - ] + description: ["{quests.medium_voltage.mv_ethanol.desc}"] id: "5D9D01EF219A31C5" - size: 0.66d - subtitle: "Yo, wait - that's alcohol!" + optional: true + size: 1.0d + subtitle: "{quests.medium_voltage.mv_ethanol.subtitle}" tasks: [{ - id: "65AD613CEB9435CB" + id: "6D7350EA7AB6CF25" item: "gtceu:ethanol_bucket" type: "item" }] - title: "Ethanol" - x: 0.0d - y: -3.0d + title: "{quests.medium_voltage.mv_ethanol.title}" + x: -8.0d + y: -0.5d } { dependencies: ["6A304E453D74C57C"] - description: [ - "Distillating &aOil&r will give you Fuel that you will need to desulfurize." - "" - "&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r." - "" - "To automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r." - "" - "&aNaphtha&r is a good &9Product&r source. Keep following the quests to the right for more details." - ] + description: ["{quests.medium_voltage.mv_naphtha.desc}"] icon: "gtceu:naphtha_bucket" id: "6238B2A7ED1BE5A1" - size: 0.66d + optional: true + size: 1.0d + subtitle: "{quests.medium_voltage.mv_naphtha.subtitle}" tasks: [ { - id: "64118ED7C2393AA4" - item: "gtceu:naphtha_bucket" + id: "01BF2D557A9EF2B0" + item: "gtceu:sulfuric_naphtha_bucket" + optional_task: true type: "item" } { - id: "2CDC4272BD17EB7D" - item: "gtceu:sulfuric_naphtha_bucket" + id: "75B40C6A92BB88B5" + item: "gtceu:naphtha_bucket" + optional_task: true type: "item" } + { + id: "0A030191139FF66A" + type: "checkmark" + } ] - title: "Naphtha" - x: -1.125d - y: -4.125d + title: "{quests.medium_voltage.mv_naphtha.title}" + x: -7.5d + y: 2.5d } { dependencies: ["6238B2A7ED1BE5A1"] description: [ - "Don't panic! We'll mostly be doing this to get hydrocarbons." - "" - "There are many ways to acquire &dEthylene&r from Oil processing. It's easy to get lost in all the options and recipes!" - "" - "The best way is to steam-crack &aNaphtha&r in a &3Chemical Reactor&r. Be sure to make the &aSeverely Steam-Cracked&r version for a higher yield of Ethylene." + "{quests.medium_voltage.mv_fuel_cracking.desc.1}" "{@pagebreak}" - "Once in &6HV&r, you'll have the option to do this recipe in the &3Cracking Unit&r at 100% efficiency. Unfortunately, the recipes you are doing with the Chemical Reactor have a loss of &450%&r." - "" - "&9Note:&r All of this looks and feels terribly inefficient - we hope that's strong motivation to tier up! The &3Distillation Tower&r will be a huge upgrade for petrochem, but you're not quite there... yet. Right now, you'll have to use a &3Distillery&r to get &dEthylene&r." + "{quests.medium_voltage.mv_fuel_cracking.desc.2}" ] icon: "gtceu:severely_steam_cracked_naphtha_bucket" id: "3E2E161F8CE35138" - size: 0.66d - subtitle: "Fuel and oil cracking can get complicated..." + optional: true + size: 1.0d + subtitle: "{quests.medium_voltage.mv_.subtitle}" tasks: [{ - id: "11731C5DF7FBC8DF" + id: "5687D81E6BFDC7E0" item: "gtceu:severely_steam_cracked_naphtha_bucket" type: "item" }] - title: "Fuel Cracking" - x: 0.0d - y: -4.125d + title: "{quests.medium_voltage.mv_fuel_cracking.title}" + x: -8.5d + y: 2.5d } { - dependencies: [ - "0DBC148D92A9F69F" - "7567E885B7166603" - "6E186F9C57155BFA" - ] + dependencies: ["22E462070F8B027A"] description: [ - "Higher-tier Generators will increase their fuel consumption proportionally to their Generation rate, keeping the duration of fuels and the specific amount of energy from fuels the same. The &3Advanced Steam Turbine&r will use &d5,120 mB Steam&r per second, equivalent to &d256 mB/t&r." - "" - "Get &eany&r of the generators to complete this quest, but you may prefer starting off with the &3Advanced Steam Turbine&r." + "{quests.medium_voltage.mv_energy.desc.1}" "{@pagebreak}" - "There are a few new power options available for &bMV&r. Selecting the Generators and pressing &4U&r will let you see which fuels count as &aCombustion&r or &aGas&r." - "" - "Quests in the top left corner of this Chapter are for the valuable Power options." - "" - "If you stick to &9Steam&r for your Power generation, you'll probably need a &3Large Boiler&r." + "{quests.medium_voltage.mv_energy.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.3}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.4}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.5}" + "{@pagebreak}" + "{quests.medium_voltage.mv_energy.desc.6}" ] icon: "gtceu:mv_steam_turbine" id: "583D0CC4FAA4FC98" shape: "square" - size: 0.75d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_energy.subtitle}" tasks: [{ id: "1F170291094582D6" item: { Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - display: { - Name: "{\"text\":\"MV Generators\"}" - } - "ftbfiltersystem:filter": "or(item(gtceu:mv_steam_turbine)item(gtceu:mv_combustion)item(gtceu:mv_gas_turbine))" + "ftbfiltersystem:filter": "or(item(gtceu:mv_steam_turbine)item(gtceu:mv_gas_turbine)item(gtceu:mv_combustion)item(gtceu:mv_1a_energy_converter)item(gtceu:mv_4a_energy_converter)item(gtceu:mv_8a_energy_converter)item(gtceu:lv_transformer_1a)item(gtceu:lv_transformer_2a)item(gtceu:lv_transformer_4a))" } } title: "MV Generators" type: "item" }] - title: "Electricity Generation in MV" - x: 2.25d - y: -1.875d + title: "{quests.medium_voltage.mv_energy.title}" + x: 6.0d + y: -0.5d } { dependencies: ["2AD44111B9B39C90"] description: [ - "Any Steel you encounter in day-to-day life is most likely &7Stainless Steel&r. It is extremely resilient against corrosion.&r" - "" - "Stainless Steel is the material for &6HV&r components, like Aluminium for &bMV&r and Steel for &7LV&r. It is also used in high quantities for the &3Distillation Tower&r." - "" - "It requires &cChrome&r, obtained mainly from &cRuby&r, and &2Manganese&r, obtained from &2Pyrolusite&r and others in its vein." + "{quests.medium_voltage.mv_stainless.desc.1}" "{@pagebreak}" - "Smelting Stainless Steel requires &dHV Power&r, which you likely do not have at this point. Scaling Power Production is crucial." - "" - "If you &9haven't already&r, it would be a good idea to get a second EBF going. They can share blocks, so that means your second EBF only requires &a10 Cupronickel Coils&r instead of 16." - "" - "Have one EBF run off &bMV&r for Aluminium and any other recipes requiring &bMV&r Power, and one running off &6HV&r with &32 MV Energy Hatches&r." + "{quests.medium_voltage.mv_stainless.desc.2}" ] icon: "gtceu:stainless_steel_ingot" id: "16A6AE5C770DB83A" - shape: "gear" - size: 1.3d - subtitle: "HV is in your grasp" + shape: "octagon" + size: 1.5d + subtitle: "{quests.medium_voltage.mv_stainless.subtitle}" tasks: [{ id: "3192FF80FBDC7A28" item: "gtceu:stainless_steel_ingot" type: "item" }] - title: "Stainless Steel" - x: 3.375d - y: 0.375d + title: "{quests.medium_voltage.mv_stainless.title}" + x: 1.5d + y: 7.5d } { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: [ - "&3Transformers&r allow you to step up and down safely between Voltage tiers. They convert the power they receive into an equivalent amount of power 1 voltage tier above or below the input voltage." - "" - "Apart from running machines on different voltage tiers, Transformers come in handy for transporting power across longer distances, as cable loss has less of an effect at higher voltages. Just like real life!" - "{@pagebreak}" - "Transformers have 5 low voltage sides, and 1 high voltage side." - "" - "The &9normal&r Transformer can only do 1A <-> 4A conversion, but &9Adjustable&r Transformers can be changed between 1A <-> 4A, 2A <-> 8A, 4A <-> 16A, and 16A <-> 64A conversions. " - "" - "Use a &aSoft Hammer&r to change between transforming up and down, and a &aScrewdriver&r on Adjustable Transformers to change the amperage." - "" - "Higher tier Transformers will require &9Coils&r." - ] - hide_dependency_lines: true - icon: "gtceu:mv_transformer_1a" - id: "6C20A9A64C1BE0BF" - size: 0.75d - tasks: [{ - id: "6C36867EB98E772D" - item: "gtceu:lv_transformer_1a" - type: "item" - }] - title: "Transformers" - x: 2.25d - y: 1.5d - } - { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: [ - "If you're wanting to dive into &bMV&r, start here." - "" - "The dusts created in an &3MV Mixer&r have great utility." - ] + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.mv_mixer.desc}"] icon: "gtceu:mv_mixer" id: "4A92AFD2532EED26" shape: "square" - size: 0.75d - subtitle: "Mixing more complex alloys" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_mixer.subtitle}" tasks: [{ - id: "31B514C75B302F25" - item: "gtceu:mv_mixer" + id: "5BD486615F9E0097" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:mv_mixer)item(greate:aluminium_mechanical_mixer))" + } + } type: "item" }] - title: "Advanced Mixer" - x: 1.125d - y: 1.5d + title: "{quests.medium_voltage.mv_mixer.title}" + x: 6.0d + y: 1.0d } { - dependencies: ["7567E885B7166603"] - description: [ - "Here's a list of the components you will need in &bMV&r. To alleviate the pain, be sure to autocraft or &dbulk-craft&r these parts, especially &aMotors&r." - "" - "Familiar with the &aEmitter&r? This tier's Emitter requires a &dFlawless Emerald&r in its recipe, which'll be only attainable with the &3Sifting Machine&r for now." - "" - "Conveyors, Pumps and Robot Arms are objective upgrades to &7LV&r versions if you use them as covers." - "" - "&6This quest unlocks a new tutorial on Overclocking in the &lTips and Tricks&r&6 tab - check it out to learn more!&r" - ] + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.mv_component.desc}"] icon: "gtceu:mv_electric_motor" id: "1BE0349B8F3890D3" - size: 0.66d - subtitle: "Hated crafting these in the previous tier?" + shape: "octagon" + size: 1.5d + subtitle: "{quests.medium_voltage.mv_component_.subtitle}" tasks: [ { id: "76A30E86C0FDF039" @@ -398,383 +309,208 @@ type: "item" } ] - title: "MV Components" - x: 0.0d - y: 1.5d + title: "{quests.medium_voltage.mv_component.title}" + x: 5.25d + y: 3.0d } { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: ["The Advanced Electrolyzer allows you to decompose &6far more&r Dusts. This will make getting materials such as &aAluminium&r&o a lot easier!"] + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.electrolyzer.desc}"] icon: "gtceu:mv_electrolyzer" id: "0EFEE489906256AA" - shape: "square" - size: 0.75d - subtitle: "We made it to MV, and, well..." + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.electrolyzer.subtitle}" tasks: [{ - id: "151788F66BAD5F97" - item: "gtceu:mv_electrolyzer" + id: "1A599E57A9493E9F" + item: "gtceu:mv_chemical_reactor" type: "item" }] - title: "Advanced Electrolyser" - x: -1.125d - y: 1.5d + title: "{quests.medium_voltage.electrolyzer.title}" + x: -1.5d + y: -3.5d } { - dependencies: ["0EFEE489906256AA"] + dependencies: ["22E462070F8B027A"] description: [ - "All four output Dusts obtained from Clay electrolysis are immensely useful." - "" - "We'll ask you to give us a total of &a416 Clay Dust&r for this quest. You may also want to look into other sources of similar materials, such as &aSodalite&r. Check JEI for some ideas." - "" - "You should use the Sodium and/or Lithium to make some &6MV Batteries&r." - "" - "Grr, all this useless &dWater&r you're getting keeps clogging the machine! Maybe you should deal with it by using a &3Voiding Cover&r." - ] - icon: "minecraft:clay_ball" - id: "2273DD7E5CD49017" - size: 0.66d - subtitle: "Clay is an extremely &mbalanced&r useful material for electrolysis" - tasks: [ - { - count: 64L - id: "0BE33D992F7761EA" - item: "gtceu:sodium_dust" - type: "item" - } - { - count: 32L - id: "3C7B4B2F850620FB" - item: "gtceu:lithium_dust" - type: "item" - } - { - count: 64L - id: "531FE43ADBEE689B" - item: "gtceu:aluminium_dust" - type: "item" - } - { - count: 64L - id: "0048C85BB03C4811" - item: "gtceu:silicon_dust" - type: "item" - } - ] - title: "A Balanced Quest" - x: -2.25d - y: 1.5d - } - { - dependencies: ["0DBC148D92A9F69F"] - description: [ - "This kind soul&r will mine ores for you when placed above a vein." - "" - "Vertical range is unlimited below the miner. Horizontal range is displayed in the tooltip." - "" - "The &bMV&r variant may not have the range to mine a full vein, but the &6HV&r variant does, so you may wish hold off for now. Get &eeither&r to complete this Quest." + "{quests.medium_voltage.mv_miner.desc.1}" "{@pagebreak}" - "You will need &9Power&r. &aCharged Batteries&r may work but they may also run out which is a bit inconvenient." - "" - "Our top suggestion is to use a filled &3Drum&r of some kind of fuel (if you are using Steam, no dice!) and a &3Generator&r. " - "" - "Place the Drum above your Generator and right-click it with a &5Screwdriver&r to auto-output into the Generator." + "{quests.medium_voltage.mv_miner.desc.2}" "{@pagebreak}" - "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein with FTB Utilities (open the map in the top left corner, claim the chunks with left-click, and enable force loading with shift-left-click)." - "" - "&9Tip:&r You can either use an &3ME Chest&r or a &32x2 Drawer&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly." + "{quests.medium_voltage.mv_miner.desc.3}" ] icon: "gtceu:mv_miner" id: "5C94CF50090D7DA0" - shape: "square" - size: 0.75d + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_miner.subtitle}" tasks: [{ id: "431D533510584687" item: { Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - display: { - Name: "{\"text\":\"Any miner\"}" - } - "ftbfiltersystem:filter": "or(item(gtceu:lv_miner)item(gtceu:mv_miner)item(gtceu:hv_miner))" + "ftbfiltersystem:filter": "or(item(gtceu:lp_steam_miner)item(gtceu:hp_steam_miner)item(gtceu:lv_miner)item(gtceu:mv_miner)item(gtceu:hv_miner))" } } - title: "Any of the listed Miners" + title: "{quests.medium_voltage.mv_miner.task}" type: "item" }] - title: "Digital Miner" - x: -3.375d - y: 1.5d + title: "{quests.medium_voltage.mv_miner.title}" + x: 0.5d + y: 3.0d } { dependencies: ["4A92AFD2532EED26"] - description: [ - "Vanadiumsteel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins." - "" - "Other Steel alloys include Blue Steel, Red Steel, and Black Steel!" - "" - "Take some Blue Steel free of charge - it's twice as durable as Steel." - ] + description: ["{quests.medium_voltage.mv_steel_alloy.desc}"] icon: "gtceu:vanadium_steel_ingot" id: "682C26579EDDCA76" shape: "square" - size: 0.75d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_steel_alloy.subtitle}" tasks: [{ count: 4L id: "2E6C71CB2E5EEAC7" item: "gtceu:vanadium_steel_ingot" type: "item" }] - title: "Steel Alloys" - x: 1.125d - y: 2.625d + title: "{quests.medium_voltage.mv_steel_alloy.title}" + x: 7.0d + y: 1.0d } { dependencies: ["682C26579EDDCA76"] - description: [ - "The &3MV Cutter&r is required to cut &7Silicon Boules&r to prepare them for &aLaser Engraving&r." - "" - "We recommend you supply this machine with a steady stream of &dLubricant&r to cut down on the processing time." - "" - "Lubricant can be &3brewed&r from &eOil&r and &aTalc&r, &2Soapstone&r or &cRedstone&r." - ] + description: ["{quests.medium_voltage.mv_cutter.desc}"] icon: "gtceu:mv_cutter" id: "5CBBBFD1FBBE95CE" - shape: "square" - size: 0.75d - subtitle: "Upgrades, people, upgrades!" + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_cutter.subtitle}" tasks: [{ - id: "2AFB7F9BD4D82974" - item: "gtceu:mv_cutter" + id: "01D8E995ED40F6CF" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:mv_cutter)item(greate:aluminium_mechanical_saw))" + } + } type: "item" }] - title: "Advanced Cutter" - x: 2.25d - y: 2.625d + title: "{quests.medium_voltage.mv_cutter.title}" + x: 7.0d + y: 4.0d } { dependencies: [ "5CBBBFD1FBBE95CE" "71412502C81F21C1" ] - description: [ - "The &3Laser Engraver&r engraves patterns into &9Silicon Wafers&r based on the type of &9Lens&r it is given. After the wafers are engraved, they must be passed through a &3Cutting Machine&r to turn them into components ready to be put into Circuits." - "" - "Higher tier Engravers can etch more complex wafers for more efficient Circuits." - ] + description: ["{quests.medium_voltage.mv_laser_engraver.desc}"] icon: "gtceu:mv_laser_engraver" id: "315169840E06110F" - shape: "square" - size: 0.75d + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_laser_engraver.subtitle}" tasks: [{ id: "75E27D981733ED44" item: "gtceu:mv_laser_engraver" type: "item" }] - title: "Laser Engraving" - x: 4.5d - y: 2.625d + title: "{quests.medium_voltage.mv_laser_engraver.title}" + x: 7.0d + y: 8.0d } { dependencies: [ "75F38905DEA60F15" "16A1EF8B80A96633" ] - description: [ - "A &7LV&r Battery Buffer and two &7LV&r Energy Hatches likely won't cut it anymore. Let's remedy that!" - "" - "Upgrade your Electric Blast Furnace with a &3MV Energy Hatch&r. Now, you can run it with &bMV&r Generators without having to mess around with &3Transformers&r." - ] + description: ["{quests.medium_voltage.mv_energy_hatch.desc}"] icon: "gtceu:mv_energy_input_hatch" id: "2AD44111B9B39C90" - shape: "square" - size: 0.75d - subtitle: "LV is so old-school!" + shape: "octagon" + size: 1.5d + subtitle: "{quests.medium_voltage.mv_energy_hatch.subtitle}" tasks: [{ id: "1C69557EB4F9E50F" item: "gtceu:mv_energy_input_hatch" type: "item" }] - title: "Upgrade your EBF!" - x: 3.375d - y: -0.75d + title: "{quests.medium_voltage.mv_energy_hatch.title}" + x: 3.0d + y: 10.0d } { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: [ - "The &3Assembler&r is a staple for every Tier; an important goal to unlock more recipes and progress further into the Age. Many in the community see crafting a voltage tier's Assembler as a sign of &oproperly&r reaching said voltage." - "" - "That being said, welcome to &bMV&r!" - "" - "The &bMV &3Assembler&r unlocks &eTransistors&r, &eCapacitors&r and &eInductors&r, used for the next tiers of Circuits." - ] + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.mv_assembler.desc}"] icon: "gtceu:mv_assembler" id: "75F38905DEA60F15" - shape: "square" - size: 0.75d + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_assembler.subtitle}" tasks: [{ id: "2396FECF2A11AA8E" item: "gtceu:mv_assembler" type: "item" }] - title: "Advanced Assembler" - x: 1.125d - y: -0.75d + title: "{quests.medium_voltage.mv_assembler.title}" + x: 3.0d + y: 5.0d } { dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: [ - "GregTech doesn't provide ways to farm plants or trees, so we made a custom multiblock for the modpack!" - "" - "The multiblock &3Greenhouse&r will be your source of &aWood&r and other plants if you wish." - "" - "The &aWood&r production should be enough to run &32 Pyrolyse Ovens&r at their lowest Power." - "" - "You can also use this for automated &aResin&r. The yields are kept low to incentivize other rubber sources later in the game." - "{@pagebreak}" - "&9Note: &rWith &d40 EU/t&r recipes, it needs either 1 &bMV&r energy hatch or 2 &7LV&r energy hatches. Multiblocks will &cnot&r use 2A of one tier to reach the next one for recipe voltage minimums. " - "" - "In other words, the controller needs to say at least \"&bMV&r\" in the GUI to run recipes which say \"&bMV&r\" in JEI, even if they can draw enough EU/t with a lower tier hatch configuration." - "" - "&9Note:&r The structure requires a lot of &9Wrought Iron&r. Make sure you have an &3Arc Furnace&r for that." - "{@pagebreak}" - "&l&3Lore:&r&o We originally implemented a Chemical Reactor recipe for wood in the modpack to solve the tree problem. Our implementation turned out to be completely busted, so we decided that a rebalance was due. Hopefully, the Greenhouse is a happy middle ground." - ] - icon: "minecraft:oak_sapling" - id: "2655B72C9FF3B372" - shape: "square" - size: 0.75d - subtitle: "The power of KubeJS" - tasks: [{ - id: "35CFA225ADAD5D06" - item: "gtceu:greenhouse" - type: "item" - }] - title: "Greenhouse" - x: 0.0d - y: 2.625d - } - { - dependencies: [ - "1646BF9194100E57" "2AD44111B9B39C90" + "4058958C4743E522" + "1646BF9194100E57" ] - description: [ - "&3Kanthal Heating Coils&r are the next major step in progression. They increase the temperature of your &3Blast Furnace&r to &d2,700K&r, allowing you to process new materials. They may also &eaccelerate&r less hot recipes - check the quest to the top-left for details." - "" - "You will need a staggering &a128 Ingots&r for a full set of Coils, which will easily take over an hour. We advise that you move on to other projects while your &3EBF&r is hard at work - that or build another one!" - "" - "An &3MV Chemical Bath&r is required to cool &cHot Ingots&r down. They're &chot&r when held, as the name implies. &oMaybe you should save your hands and automate this...&r" - "" - "With the construction of a &3Kanthal EBF&r, you're now able to make &dSilicon Ingots&r!" - ] + description: ["{quests.medium_voltage.mv_kanthal_coil.desc}"] + hide_dependency_lines: false icon: "gtceu:kanthal_coil_block" id: "1C55AE6AD5BDE304" shape: "square" - size: 0.75d - subtitle: "Is it getting hot in here?" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_kanthal_coil.subtitle}" tasks: [{ count: 16L id: "0737586F9DFFC0FE" item: "gtceu:kanthal_coil_block" type: "item" }] - title: "Kanthal Coils" - x: 4.5d - y: -0.75d - } - { - dependencies: ["1C55AE6AD5BDE304"] - description: [ - "This is a guide on how to automatically route &lall&r&o your Hot Ingots to your Chemical Bath, while keeping everything automated in tip-top shape." - "" - "The cheap way would be to use filters, and manually add Hot Ingots one by one... which is so boring! Let's try the fun option." - "" - "Install an &aItem Tag Filter&r Cover on the side of your &3Chemical Bath&r, open it and set it to whitelist \"&e&lingots/hot&r\"." - "" - "From here, you can route with &9any logistics system&r of your choice." - "{@pagebreak}" - "Connect the output of your &3EBF(s)&r to the input of your &3Chemical Bath&r and the output dump (Chest or Crate)." - "You can also have a &dRestrictive Pipe&r in front of the output dump to ensure the Chemical Bath will be prioritized." - "" - "&l&9Note:&r If you wish to know more tags for more automation setups, they will display if you press Shift when hovering over an item. For instance, an item tagged with &e&o#forge:plates/copper&r would be filtered as &e&lplates/copper&r." - "" - "&9Other Note:&r The Item Tag Filter partially supports &dregex&r. Hover over the info icon for more information." - ] - icon: "gtceu:item_tag_filter" - id: "13A976D0D612BC84" - size: 0.66d - tasks: [{ - id: "76A20EE57CB39857" - item: "gtceu:item_tag_filter" - type: "item" - }] - title: "250IQ" - x: 3.375d - y: -1.875d - } - { - dependencies: [ - "10FB27DD3C7BEC2F" - "75F38905DEA60F15" - "1C55AE6AD5BDE304" - ] - description: ["A circuit component that you can now produce thanks to the &3MV Assembler&r and your shiny new &3Kanthal EBF&r."] - icon: "gtceu:transistor" - id: "375684F9CBEF9132" - shape: "square" - size: 0.75d - tasks: [{ - id: "240735279EBC0193" - item: "gtceu:transistor" - type: "item" - }] - title: "Moore's Law" - x: 6.75d - y: -0.75d + title: "{quests.medium_voltage.mv_kanthal_coil.title}" + x: 1.5d + y: 10.0d } { dependencies: [ "60D7F6C1EE918B66" - "375684F9CBEF9132" "1E7BF65DB32B8B3E" + "5DD01CBADFFF3571" ] - description: [ - "Alright... technically, obtaining &6HV&r Circuits and Stainless Steel lets you progress to &6HV&r - but let's not rush things." - "" - "The first thing you should make with these is a &3MV Circuit Assembler&r to unlock the new tier of Circuits right away; cheaper recipes is the &dreal payoff&r here." - ] + description: ["{quests.medium_voltage.mv_first_hv.desc}"] icon: "gtceu:advanced_integrated_circuit" id: "26394C1290D70AB6" shape: "square" - size: 0.75d - subtitle: "...but hold on before getting too giddy" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_first_hv.subtitle}" tasks: [{ id: "75EB5730046212D0" item: "gtceu:advanced_integrated_circuit" type: "item" }] - title: "First HV Circuits!" - x: 6.75d - y: 0.375d + title: "{quests.medium_voltage.mv_first_hv.title}" + x: 3.0d + y: 16.5d } { dependencies: ["315169840E06110F"] - description: ["&aRandom Access Memory&r is required for more advanced Electronic Components."] + description: ["{quests.medium_voltage.mv_ram.desc}"] icon: "gtceu:ram_chip" id: "1E7BF65DB32B8B3E" shape: "square" - size: 0.75d - subtitle: "Random Access Memories" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_ram.subtitle}" tasks: [ { id: "40E0E6FD45AEC7B1" @@ -784,79 +520,68 @@ { id: "2EACE2CF99B4B3D3" item: "gtceu:ram_wafer" + optional_task: true type: "item" } { - count: 32L id: "28AC6209CFD8345C" item: "gtceu:ram_chip" type: "item" } ] - title: "Download more RAM" - x: 5.625d - y: 1.5d + title: "{quests.medium_voltage.mv_ram.title}" + x: 8.5d + y: 10.0d } { dependencies: ["6F6D2829FC42F21C"] description: [ - "The Integrated Logic Circuit is an alternate &7LV &aCircuit&r, which is easier to mass-produce, and can be upgraded to &bMV&r (and then &6HV&r)." - "" - "&9Note:&r This is not a strict upgrade to the cost of Circuits - you would need to get to the next Tier for that, just slightly further down in &bMV&r. It is still an important upgrade, and is required to get to &6HV circuits&r." + "{quests.medium_voltage.mv_more_lv.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o The circuit progression in GTCEu is mostly based on GT5u's progression. It has been rebalanced to not be as painful. &lSpecifically&r this circuit tier, which was a trap!" + "{quests.medium_voltage.mv_more_lv.desc.2}" ] icon: "gtceu:basic_integrated_circuit" id: "5C17BF90DA2AAEEE" shape: "square" - size: 0.75d - subtitle: "You have unlocked a new tier of Circuits!" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_more_lv.subtitle}" tasks: [{ id: "2301CD2A841F17D9" item: "gtceu:basic_integrated_circuit" type: "item" }] - title: "More LV Circuits" - x: 6.75d - y: 2.625d + title: "{quests.medium_voltage.mv_more_lv.title}" + x: 3.0d + y: 12.0d } { dependencies: ["5C17BF90DA2AAEEE"] - description: ["The &bMV&r Circuit for the Integrated Tier."] + description: ["{quests.medium_voltage.mv_more_mv.desc}"] icon: "gtceu:good_integrated_circuit" id: "60D7F6C1EE918B66" shape: "square" - size: 0.75d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_more_mv.subtitle}" tasks: [{ id: "0622E51767B0AB58" item: "gtceu:good_integrated_circuit" type: "item" }] - title: "More MV Circuits" - x: 6.75d - y: 1.5d + title: "{quests.medium_voltage.mv_more_mv.title}" + x: 3.0d + y: 14.0d } { dependencies: [ - "4073577B7EF9B593" "1E9BE8D3F8A602DC" + "3DB03EA806B2D8A1" ] - description: [ - "&9Silicon Boules&r are made in the &3EBF&r with half a stack of &aSilicon Dust&r and a pinch of &aGallium Arsenide&r. Their primary purpose is engraving &6Circuit Wafers&r." - "" - "After making the Boule, process it in the &3Cutter&r to get 16 Silicon Wafers ready for engraving." - "" - "The recommended &aSilicon&r source at this point would be... hm, either &dGlass Dust&r or &dSodalite&r." - "" - "&cWarning:&r Each Silicon Boule takes &47.5 minutes&r to make at 120 EU/t, or 1,080,000 EU! If the EBF loses power midway, the recipe will start to &close progress&r." - "" - "With that being said, Silicon Boules take an absolute age to craft, so consider parallelizing the recipe in multiple &3EBF&rs and stockpiling them." - ] + description: ["{quests.medium_voltage.mv_silicon_boule.desc}"] icon: "gtceu:silicon_boule" id: "71412502C81F21C1" shape: "square" - size: 0.75d - subtitle: "These wafers are fully fungible" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_silicon_boule.subtitle}" tasks: [ { id: "1A18D503A429CC17" @@ -870,302 +595,184 @@ type: "item" } ] - title: "Silicon Lottery" - x: 4.5d - y: 3.75d + title: "{quests.medium_voltage.mv_silicon_boule.title}" + x: 9.0d + y: 8.0d } { dependencies: ["26394C1290D70AB6"] - description: [ - "As is common for every tier, the &3Circuit Assembler&r is an essential part of progression, always opening up a new Tier of circuits." - "" - "At this point you should be placing an &3Extractor&r next to your Circuit Assembler. Send off dozens of stacks of &aSoldering Alloy&r Ingots, and you won't have to worry about refilling again." - ] + description: ["{quests.medium_voltage.mv_circuit_assembler.desc}"] icon: "gtceu:mv_circuit_assembler" id: "0DE5C3FBC9A6A690" - shape: "square" - size: 0.75d - subtitle: "Yippee, yahoo" + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_circuit_assembler.subtitle}" tasks: [{ id: "7ED7103DAF7E4413" item: "gtceu:mv_circuit_assembler" type: "item" }] - title: "Advanced Circuit Assembler" - x: 7.875d - y: 0.375d + title: "{quests.medium_voltage.mv_circuit_assembler.title}" + x: 1.0d + y: 14.0d } { dependencies: ["26394C1290D70AB6"] - description: [ - "At its lowest power (Cupronickel coils and &7LV&r Voltage), the &dMulti Smelter&r smelts 32 items in just 12 seconds - equivalent to &926.7 Furnaces&r, or 3.3 Steam Ovens!" - "" - "If that wasn't already enough to convince you, standard &aoverclocks&r can be applied with sufficient voltage." - "" - "And even better - higher tier &3Coils&r increase the amount of items it can smelt in &dparallel&r!" - ] + description: ["{quests.medium_voltage.mv_multi_smelter.desc}"] icon: "gtceu:multi_smelter" id: "6DDDE2268B691F74" - shape: "square" - size: 0.75d - subtitle: "Possibly the most powerful furnace you've seen" + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_multi_smelter.subtitle}" tasks: [{ id: "0A42FE4B72071451" item: "gtceu:multi_smelter" type: "item" }] - title: "Ultimate Smelter" - x: 5.625d - y: 0.375d + title: "{quests.medium_voltage.mv_multi_smelter.title}" + x: 6.0d + y: 16.5d } { dependencies: [ "4600221BF0A30C3A" - "6E9E15DA847DD0A1" "0DE5C3FBC9A6A690" ] - description: [ - "&6The best LV Circuits&r! You can start to churn these guys out, as you'll be making them for the rest of the game." - "" - "Try to keep a stockpile of these crafted at all times - making these on-demand can take a while." - "" - "Reaching &5EV&r will unlock methods to make them even cheaper." - ] + description: ["{quests.medium_voltage.mv_best_lv.desc}"] icon: "gtceu:microchip_processor" id: "5E76D4C24026157D" - shape: "square" - size: 0.75d + shape: "octagon" + size: 1.5d + subtitle: "{quests.medium_voltage.mv_best_lv.subtitle}" tasks: [{ id: "4E076080D7B23372" item: "gtceu:microchip_processor" type: "item" }] - title: "Best LV Circuits" - x: 7.875d - y: -0.75d + title: "{quests.medium_voltage.mv_best_lv.title}" + x: -1.0d + y: 12.0d } { dependencies: [ "4600221BF0A30C3A" "0DE5C3FBC9A6A690" - "6E9E15DA847DD0A1" - ] - description: [ - "&6The best MV Circuits&r! You will be making these for the remainder of the game." - "" - "Eventually (in &1IV&r), they will become even cheaper." ] + description: ["{quests.medium_voltage.mv_best_mv.desc}"] icon: "gtceu:micro_processor" id: "38DE506FF5B32031" - shape: "square" - size: 0.75d + shape: "octagon" + size: 1.5d + subtitle: "{quests.medium_voltage.mv_best_mv.subtitle}" tasks: [{ id: "120B63C2E40D359A" item: "gtceu:micro_processor" type: "item" }] - title: "Best MV Circuits" - x: 7.875d - y: 1.5d - } - { - dependencies: [ - "1FCF2C103E25972B" - "5063FDFFBE3E4855" - "3568BC9742092FC5" - ] - description: [ - "Your first &5EV&r Circuit gets a unique texture." - "" - "It'll be needed in &6HV&r." - ] - icon: "gtceu:micro_processor_computer" - id: "4AFD3073C731A1E4" - shape: "square" - size: 0.75d - tasks: [{ - id: "34EA9B71F8BF607F" - item: "gtceu:micro_processor_computer" - type: "item" - }] - title: "First EV Circuits!" - x: 7.875d - y: 3.75d + title: "{quests.medium_voltage.mv_best_mv.title}" + x: -1.0d + y: 14.0d } { dependencies: [ "38DE506FF5B32031" "3DFFA8F91452C62A" ] - description: [ - "Better &6HV&r Circuits - much &dcheaper&r and easier to make than before." - "" - "&6You should now be ready to move on the HV Chapter&r, unless you're yet to scale up your Power Production." - ] + description: ["{quests.medium_voltage.mv_second_hv.desc}"] icon: "gtceu:micro_processor_assembly" id: "5063FDFFBE3E4855" - shape: "square" - size: 0.75d + shape: "gear" + size: 3.0d + subtitle: "{quests.medium_voltage.mv_second_hv.subtitle}" tasks: [{ id: "2FE33281A44C34F6" item: "gtceu:micro_processor_assembly" type: "item" }] - title: "More HV Circuits" - x: 7.875d - y: 2.625d + title: "{quests.medium_voltage.mv_second_hv.title}" + x: -1.0d + y: 16.5d } { - dependencies: [ - "375684F9CBEF9132" - "10FB27DD3C7BEC2F" - ] - description: ["A circuit component that you can now produce thanks to the &3MV Assembler&r!"] - icon: "gtceu:capacitor" - id: "6E9E15DA847DD0A1" - shape: "square" - size: 0.75d - subtitle: "No cap, bussin frfr" - tasks: [{ - id: "60D8154F5C9C0EAC" - item: "gtceu:capacitor" - type: "item" - }] - title: "Capacitors" - x: 7.875d - y: -1.875d - } - { - dependencies: ["648BCF486E16CCB2"] - description: [ - "&aBlue Alloy&r is an excellent Cable material for &6HV&r power." - "" - "Nothing is preventing you from using it for &bMV&r power too! Make sure that you don't overvolt your machines, though." - "" - "Superconductors for both &bMV&r and &6HV&r are unlocked... later." - "" - "&aElectrotine&r is obtained from the &cNether&r, so don't craft it in the Mixer!" - "" - "Furthermore, &aElectrotine&r can be separated for &dElectrum&r and &dRedstone&r." - ] - icon: "gtceu:blue_alloy_ingot" - id: "1FCF2C103E25972B" - size: 0.66d - tasks: [{ - id: "15C7369398FAB8DB" - item: "gtceu:blue_alloy_ingot" - type: "item" - }] - title: "Blue Alloy" - x: 6.75d - y: 3.75d - } - { - dependencies: ["6E9E15DA847DD0A1"] - description: [ - "A Circuit Component that you can now make thanks to the &3MV Assembler&r." - "" - "If you want the cheapest recipe, &aNickel-Zinc Ferrite&r is the way to go." - ] + dependencies: ["10FB27DD3C7BEC2F"] + description: ["{quests.medium_voltage.mv_inductor.desc}"] icon: "gtceu:inductor" id: "3DFFA8F91452C62A" shape: "square" - size: 0.75d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_inductor.subtitle}" tasks: [{ id: "6690451CCAB62CA1" item: "gtceu:inductor" type: "item" }] - title: "Inductors" - x: 9.0d - y: 0.375d + title: "{quests.medium_voltage.mv_inductor.title}" + x: -5.0d + y: 16.5d } { dependencies: ["6BB98D128822730E"] - description: [ - "If you want to be less fancy, just call it plastic." - "" - "For the polymerization process, add &aOxygen&r, which gives better returns than Air, then solidify like you would with Rubber." - "" - "&aPolyethylene (PE)&r is the key to unlocking &6many new things&r. It's commonly used as &dSheets&r, or in &dFluid&r form." - "" - "&l&3Lore:&r&o The OreDict and fluid name for Polyethylene in 1.12.2 GTCEu was &bplastic&f, for cross-mod compatibility." - ] + description: ["{quests.medium_voltage.mv_polyethylene.desc}"] icon: "gtceu:polyethylene_plate" id: "10FB27DD3C7BEC2F" shape: "gear" - size: 1.2d - subtitle: "Baby's first polymer!" + size: 3.0d + subtitle: "{quests.medium_voltage.mv_polyethylene.subtitle}" tasks: [{ id: "15E5F008339B8964" item: "gtceu:polyethylene_plate" type: "item" }] - title: "Polyethylene" - x: 6.75d - y: -3.0d + title: "{quests.medium_voltage.mv_polyethylene.title}" + x: -10.0d + y: 10.0d } { dependencies: ["10FB27DD3C7BEC2F"] - description: [ - "No, but seriously." - "" - "This is the &cu&6l&et&ai&bm&9a&5t&4e&r portable Fluid storage solution. &64,000 buckets of storage&r - in one single block!" - "" - "Like Drums, Super Tanks &6keep their fluids when broken&r, and can be cleared in the crafting grid." - "" - "If you hunger for &9even more&r storage, take a look at higher tier Super Tanks or AE2 Fluid Storage Cells." - ] + description: ["{quests.medium_voltage.mv_tank.desc}"] icon: "gtceu:lv_super_tank" id: "6C53B01A05FFF1DC" - size: 0.66d - subtitle: "Super Tanks are OP!" + optional: true + shape: "heart" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_tank.subtitle}" tasks: [{ id: "47EA273D728C158F" item: "gtceu:lv_super_tank" type: "item" }] - title: "Super Tank" - x: 5.625d - y: -1.875d + title: "{quests.medium_voltage.mv_tank.title}" + x: -14.0d + y: 10.0d } { dependencies: ["10FB27DD3C7BEC2F"] - description: [ - "&aPolyvinyl Chloride (PVC)&r is the 3rd-most produced plastic in real life. Here in CEu, it can be substituted for Polyethylene in the production of &aPlastic Circuit Boards&r and other items to increase the yield. It is required from &5EV&r onwards to wrap Cables." - "" - "PVC item pipes also have the &6highest throughput&r available for a while, but most of your setups right now won't need such speed. Still, it's good to keep this knowledge in your pocket." - "" - "&9Pro tip:&r The fluid form of PVC is never used in base GTCEu, so feel free to solidify all of it into sheets." - ] + description: ["{quests.medium_voltage.mv_pvc.desc}"] icon: "gtceu:polyvinyl_chloride_plate" id: "40408FFD02134148" shape: "square" - size: 0.75d - subtitle: "You've already made one polymer, what's two?" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_pvc.subtitle}" tasks: [{ id: "72696AD2B77F805B" item: "gtceu:polyvinyl_chloride_plate" type: "item" }] - title: "Polyvinyl Chloride" - x: 6.75d - y: -4.125d + title: "{quests.medium_voltage.mv_pvc.title}" + x: -5.0d + y: 11.0d } { dependencies: [ "4353AB0E20601AEC" "10FB27DD3C7BEC2F" ] - description: [ - "At this point, you have all the tools available to start making Plastic Boards." - "" - "The recipe chains are starting to get pretty long, so we recommend processing large batches in two dedicated &3Chemical Reactors&r." - ] + description: ["{quests.medium_voltage.mv_boards.desc}"] icon: "gtceu:plastic_printed_circuit_board" id: "4600221BF0A30C3A" shape: "square" - size: 0.75d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_boards.subtitle}" tasks: [ { id: "68B5E2667EDAE895" @@ -1178,577 +785,398 @@ type: "item" } ] - title: "Plastic Boards" - x: 7.875d - y: -3.0d - } - { - dependencies: [ - "5263F866638D875C" - "3D98819A799D2E64" - ] - description: [ - "&aSodium Persulfate&r can be used in &9Ore Processing&r in the &3Chemical Bath&r to get various bonus outputs you would not normally obtain. It is completely optional, but pretty rewarding." - "" - "&lWait, stop! That's only a distraction&r - the real topic of this Quest is..." - "" - "&aSodium Persulfate&r and &aIron III Chloride&r are used to make cheaper &9Good Circuit Boards&r, as their inclusion cuts Silver usage by a factor of four." - "" - "They're also &drequired&r to make &9Plastic Circuit Boards&r." - "{@pagebreak}" - "Making &aSodium Persulfate&r will yield &aHydrochloric Acid&r as a coproduct, which you may re-use to make &aIron III Chloride&r. This should the best approach right now, but the decision is entirely yours." - "" - "With more automation later in the game, Iron III Chloride will be the cheaper and more straight forward path." - "" - "This Quest can be completed with &eeither&r Fluid." - ] - icon: "gtceu:iron_iii_chloride_bucket" - id: "4353AB0E20601AEC" - shape: "square" - size: 0.75d - subtitle: "Let's etch some Copper off Circuit Boards!" - tasks: [ - { - id: "78987D2587319508" - item: "gtceu:iron_iii_chloride_bucket" - type: "item" - } - { - id: "33509BA5416BC14F" - item: "gtceu:sodium_persulfate_bucket" - type: "item" - } - ] - title: "Sodium Persulfate / Iron III Chloride" - x: 7.875d - y: -4.125d - } - { - dependencies: [ - "3D98819A799D2E64" - "1A77CA35F054F988" - ] - description: [ - "JEI might look a little overwhelming here, so we'll go through the best path for Sulfuric Acid here." - "" - "Making &eSulfuric Acid&r is a three step process. It is used in many important reactions, so you should automate its production ASAP." - "{@pagebreak}" - "To automate it, you will need &3three LV Chemical Reactors&r. We would recommend building a dedicated setup somewhere with &3a single LV Generator&r to power all three machines. You can then spaghetti your pipes to handle input and output &m...or simply use AE2&r." - "" - "&9-&r Step 1: React &aSulfur&r with &bOxygen&r to form &aSulfur Dioxide&r." - "&9-&r Step 2: React &aSulfur Dioxide&r with more &bOxygen&r to form &aSulfur Trioxide&r." - "&9-&r Step 3: React &aSulfur Trioxide&r with &bWater&r to form &eSulfuric Acid&r." - "{@pagebreak}" - "&l&3Lore:&r&o GregTech 5's Chemical Reactor only had one Fluid slot. To circumvent that, they would do &dcell chemistry&f. The way you would automate Sulfuric Acid was by having one cell travel from machine to machine and then loop back to its starting position. A somewhat fun and interesting automation challenge, but also a chore!" - ] - id: "316FF60D6FFE97CE" - shape: "square" - size: 0.75d - tasks: [{ - id: "6A7372203A20D7CA" - item: "gtceu:sulfuric_acid_bucket" - type: "item" - }] - title: "Sulfuric Acid" - x: 1.125d - y: -4.125d + title: "{quests.medium_voltage.mv_boards.title}" + x: -5.0d + y: 12.0d } { dependencies: [ "32B08E6F414A00C0" "3D98819A799D2E64" + "0EFEE489906256AA" + "79E8DC4D9B5F6B97" ] + dependency_requirement: "one_completed" description: [ - "Obtain &9Hydrochloric Acid&r by mixing &aHydrogen&r and &aChlorine&r." - "" - "This acid is also obtained as waste from a lot of reactions involving &aChlorine&r. Depending on your setups, you may never need to produce it directly." + "{quests.medium_voltage.mv_sodium_iron.desc.1}" "{@pagebreak}" - "&cNote:&r We have a $medicine command on our Discord:" - "" - "\"&b&oDo not attempt this in real life - it is not only illegal, but also stupidly dangerous&r\"." - "" - "This applies to toying with chemicals. Please don't do it." - "" - "Side note - we can guarantee you have a sample of this with you right now! It's in your stomach as a part of gastric acid." + "{quests.medium_voltage.mv_sodium_iron.desc.2}" ] + hide_dependency_lines: true + icon: "gtceu:iron_iii_chloride_bucket" + id: "4353AB0E20601AEC" + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_sodium_iron.subtitle}" + tasks: [ + { + id: "118468CD578081CF" + item: "gtceu:sodium_persulfate_bucket" + optional_task: true + type: "item" + } + { + id: "1B7EDF573783D986" + item: "gtceu:iron_iii_chloride_bucket" + optional_task: true + type: "item" + } + { + id: "06279C01C8950D46" + type: "checkmark" + } + ] + title: "{quests.medium_voltage.mv_sodium_iron.title}" + x: -5.0d + y: 14.0d + } + { + dependencies: [ + "3D98819A799D2E64" + "0EFEE489906256AA" + ] + dependency_requirement: "one_completed" + description: [ + "{quests.medium_voltage.mv_sulfuric_acid.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_sulfuric_acid.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_sulfuric_acid.desc.3}" + ] + hide_dependency_lines: true + id: "316FF60D6FFE97CE" + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_sulfuric_acid.subtitle}" + tasks: [{ + id: "06B5F04DEFC12458" + item: "gtceu:sulfuric_acid_bucket" + type: "item" + }] + title: "{quests.medium_voltage.mv_sulfuric_acid.title}" + x: -10.0d + y: -0.5d + } + { + dependencies: [ + "694DF1C33B53A0D5" + "042E4EF7CF366C0C" + ] + dependency_requirement: "one_completed" + description: ["{quests.medium_voltage.mv_hydrochloric.desc}"] icon: "gtceu:hydrochloric_acid_bucket" id: "64CACABB48635904" - size: 0.66d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_hydrochloric.subtitle}" tasks: [{ - id: "447B1F9FF3A2D837" + id: "34147C1DD7B8DE55" item: "gtceu:hydrochloric_acid_bucket" type: "item" }] - title: "Hydrochloric Acid" - x: 3.375d - y: -4.125d + title: "{quests.medium_voltage.mv_hydrochloric.title}" + x: -10.0d + y: -2.5d } { dependencies: [ "316FF60D6FFE97CE" "64CACABB48635904" ] + dependency_requirement: "one_completed" description: [ - "You may notice that some fluids say they are \"&aAcidic&r\", with &9Sulfuric Acid&r being one of them." - "" - "This means that many fluid pipes will not be able to transport them safely!" - "" - "At &bMV&r, the cheapest pipes for acid transportation are probably &aGold&r, with the more expensive &aVanadium Steel&r or &aChrome&r pipes taking second and third place." - "" - "&aStainless Steel&r or &aPolytetrafluoroethylene&r (try saying that fast) will be valid options once you are in &6HV&r." + "{quests.medium_voltage.mv_aciditic.desc.1}" "{@pagebreak}" - "You have three options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks will be unlocked after &9Polyethylene&r, and can store any fluid without restriction." - "" - "&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!" - "" - "&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6." + "{quests.medium_voltage.mv_aciditic.desc.2}" ] - icon: "minecraft:bamboo_sign" + icon: "gtceu:acid_hazard_sign_block" id: "079442C113D54856" shape: "circle" - size: 0.66d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_aciditic.subtitle}" tasks: [{ id: "2D0DE3FB6E5E4146" - title: "I'm an acid professional, don't worry" + title: "{quests.medium_voltage.mv_aciditic.task}" type: "checkmark" }] - title: "It will Melt Your Flesh" - x: 2.25d - y: -4.125d + title: "{quests.medium_voltage.mv_aciditic.title}" + x: -10.0d + y: -1.5d } { - dependencies: [ - "63CD0236B337EAAD" - "6D9D54FAB21EC086" - ] - description: [ - "&bMV&r Batteries will be convenient to buffer Energy, just like &7LV&r." - "" - "The cost in &aSodium&r, &aLithium&r or &aCadmium&r jumps up to 8 dusts, so you may use whatever you have the most of." - "" - "The difference in capacity is not that huge after all." - "" - "Get &eeither&r Battery to complete the Quest." - ] + dependencies: ["6F898B934BB79016"] + description: ["{quests.medium_voltage.mv_batteries.desc}"] icon: "gtceu:hv_battery_hull" id: "2202AA5DC6DB0A26" shape: "square" - size: 0.75d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_batteries.subtitle}" tasks: [{ id: "5FEE671A75766B78" item: { Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - display: { - Name: "{\"text\":\"Any mv battery\"}" - } "ftbfiltersystem:filter": "or(item_tag(gtceu:batteries/mv))" } } title: "Any MV Battery" type: "item" }] - title: "Better Batteries" - x: 4.5d - y: -1.875d + title: "{quests.medium_voltage.mv_batteries.title}" + x: 9.0d + y: -0.5d } { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] - description: [ - "We &lSINCERELY&r hope at &cno&r point you made the &7LV&r Extruder, because only the &bMV&r Extruder is actually useful. If you did, immediately &arecycle it&r through the Arc Furnace." - "" - "The Extruder shapes solid materials into (almost!) any form using &aIngots&r. This is a great way to reduce the amount of microcrafting, as well as keeping a high conversion ratio." - "" - "The Extruder can make &6Bolts&r, &6&6Small Gears&r, &6Gears&r, and &6&6Rings&r at the highest efficiency in a single step!" - "" - "You may also like to use it for &dPipes&r, &dLong Rods&r, and &dRotors&r." - ] + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.mv_extruder.desc}"] icon: "gtceu:mv_extruder" id: "22B5AD670496C02D" - shape: "square" - size: 0.75d - subtitle: "The biggest upgrade you'll make" + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_extruder.subtitle}" tasks: [{ id: "73E8504BA235C4BF" item: "gtceu:mv_extruder" type: "item" }] - title: "Advanced Extruder" - x: 1.125d - y: 0.375d + title: "{quests.medium_voltage.mv_extruder.title}" + x: 3.0d + y: -3.5d } { - dependencies: ["22B5AD670496C02D"] - description: [ - "Aluminium Cells are a big upgrade over the Steel Cells or Universal Fluid Cells." - "" - "They can hold any fraction of Fluid - up to &d32 buckets&r!" - ] + dependencies: ["75F38905DEA60F15"] + description: ["{quests.medium_voltage.mv_cells.desc}"] icon: "gtceu:aluminium_fluid_cell" id: "53B0D08DB90EC369" - size: 0.66d + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_cells.subtitle}" tasks: [{ id: "105EA8621A99C1EC" item: "gtceu:aluminium_fluid_cell" type: "item" }] - title: "Large Cells" - x: 2.25d - y: 0.375d + title: "{quests.medium_voltage.mv_cells.title}" + x: 4.5d + y: 5.0d } { - dependencies: [ - "7567E885B7166603" - "0DBC148D92A9F69F" - ] + dependencies: ["22E462070F8B027A"] description: [ - "It's quite the investment to own a &3Fluid Drilling Rig&r, but it is &oby far&r the most prominent &6source of Oil&r." - "" - "It pumps fluids from underneath Bedrock itself. Note that the fluids aren't actually there, instead being simulated." - "" - "Fluid veins are stored within regions of &48x8 chunks&r. Each vein has a different fluid, but they are mostly types of Oil." - "" - "You are not able to carry out prospecting for fluid veins &oyet&r - this will come at &6HV&r." + "{quests.medium_voltage.mv_fluid_rig.desc.1}" "{@pagebreak}" - "Each vein generates with a different base yield. This is typically between &d150L&r to &d300L per second&r." - "" - "When drained, fluid veins will slowly deplete. This will cause the fluid yield to decrease over time until it reaches its depletion yield. At that point, you should move the Rig to a different vein." - "" - "A &3Basic Fluid Drilling Rig&r will last for 100,000 operations (with 1 second per operation) until depletion. This is enough for &6well over 10,000&r buckets of Oil. Higher tier Rigs will massively increase the yield, while also decreasing the depletion rate." + "{quests.medium_voltage.mv_fluid_rig.desc.2}" "{@pagebreak}" - "&lWhat you can find in the &2Overworld&r&l:&r" - "" - "&9Oil:&r richer in &aLight Fuel&r, the most appreciated variant." - "&9Light Oil:&r richer in &aRefinery Gas&r, usable for power." - "&9Heavy Oil:&r richer in &aHeavy Fuel&r, which has uses that are more niche." - "&9Raw Oil:&r richer in &aNaphtha&r, the best source of the early-game oil products." - "&9Natural Gas:&r grants &aRefinery Gas&r with no distillation required." - "&l&9Salt Water:&r grants &aSodium&r and &aChlorine&r, useful later." + "{quests.medium_voltage.mv_fluid_rig.desc.3}" "{@pagebreak}" - "&lWhat you can find in the &cNether&r&l:&r" - "" - "&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein." - "&9Lava:&r hopefully, you know what this is." - "" - "When starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig." + "{quests.medium_voltage.mv_fluid_rig.desc.4}" ] icon: "gtceu:mv_fluid_drilling_rig" id: "05ADBAE5B6F38956" + optional: true shape: "square" - size: 0.75d - subtitle: "Fluid Drilling Rigs in CEu!" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_fluid_rig.subtitle}" tasks: [{ id: "3FB527F5B10381D2" item: "gtceu:mv_fluid_drilling_rig" type: "item" }] - title: "Fluid Drilling Rigs" - x: -1.125d - y: 0.375d + title: "{quests.medium_voltage.mv_fluid_rig.title}" + x: -2.5d + y: 2.5d } { - dependencies: ["648BCF486E16CCB2"] - description: [ - "Get any kind of &3Pump&r, place it above an Oil spout and... give it some power." - "" - "Do &cnot&r pump above an Ocean, as the pump will attempt to pull water, resulting in getting the pump stuck. Sorry!" - "{@pagebreak}" - "Each Oil deposit can have between &63,000&r and &69,200&r buckets of Oil, which is a LOT! Refining the Oil&r onsite into either &aLight Fuel&r or &aDiesel&r (or both) is perfectly viable. The next few Quests will explain each type's pros and cons." - "" - "Store any obtained Oil in &3Drums&r, but you would do yourself a favour to use a &3Super Tank&r as soon as you can make them." - "" - "&cWarning: &rDo not forget to &dchunkload&r with FTB Utilities (open the map in the top left corner, claim the chunks with left-click, and enable force loading with shift-left-click)." - "{@pagebreak}" - "&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r" - "" - "For now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r." - "" - "Oil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options." - "" - "If you chose this path, you should use it for both Power and Ethylene." - "" - "Oil spouts are a &6great starting point&r - they will tide you over until you unlock Fluid Drilling Rigs." - "{@pagebreak}" - "&l&3Lore:&r&o Oil geysers were originally from Buildcraft. If you played a GregTech 5 modpack &cwithout&f Buildcraft, you needed to use the Fluid Rig and tap randomly to try and get lucky, or wait until &6HV&f, where prospecting for fluids was available." - ] - icon: "gtceu:oil_bucket" - id: "0774EC59CD3DD7A5" - size: 0.66d - subtitle: "Ever mined into an Oil deposit?" + dependencies: ["6A304E453D74C57C"] + description: ["{quests.medium_voltage.mv_oilsands.desc}"] + id: "575B07D390D9D079" + optional: true + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_oilsands.subtitle}" tasks: [{ - id: "05B59556092AC5EB" - item: "gtceu:oil_bucket" + id: "1838F842C9D12880" + item: "gtceu:oilsands_dust" type: "item" }] - title: "US Simulator" - x: -1.125d - y: -0.75d - } - { - dependencies: ["648BCF486E16CCB2"] - description: [ - "The underground has pure Oilsands ore veins. You may &3centrifuge&r the Dust to get &aOil&r." - "" - "&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r" - "" - "For now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r." - "" - "Oil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options." - "" - "If you chose this path, you should use it for both Power and Ethylene." - "" - "Oilsands are a &6great starting point&r - they'll tide you over until you unlock Fluid Drilling Rigs." - ] - icon: "gtceu:marble_oilsands_ore" - id: "575B07D390D9D079" - size: 0.66d - tasks: [ - { - id: "1838F842C9D12880" - item: "gtceu:oilsands_dust" - optional_task: true - type: "item" - } - { - id: "18DBDA6D5021E9FA" - item: "gtceu:oil_bucket" - type: "item" - } - ] - title: "America Simulator" - x: -2.25d - y: -0.75d + title: "{quests.medium_voltage.mv_oilsands.title}" + x: -2.5d + y: 1.0d } { dependencies: [ "53DC6E32C41C94C3" "6EB68C28BEE24DEF" - "0774EC59CD3DD7A5" - "575B07D390D9D079" "05ADBAE5B6F38956" ] - dependency_requirement: "one_completed" description: [ - "Before we start, here's some important information if you're aiming to make Ethylene:" - "" - "Taking the &aOil&r route will require &oat least&r a &3LV Distillery&r." - "" - "With the &aBiomass&r route, you will &lneed&r a &3MV Distillery&r." - "" - "Get &eeither&r to complete this quest." + "{quests.medium_voltage.mv_distillery.desc.1}" "{@pagebreak}" - "Got all that? &6Alright&r! Let's discuss a complex topic: &9Distillation&r. We'll try to help you understand how and why the &aJEI&r recipes are the way they are, so stick with us." - "" - "Nearly all the &3Distillery&r recipes are duplicates from the &3Distillation Tower&r, except that they only have one Fluid output, and void everything else." - "" - "In other words, you could argue the &3Distillery&r is an &dinferior&r &3Distillation Tower&r." + "{quests.medium_voltage.mv_distillery.desc.2}" "{@pagebreak}" - "This doesn't mean that the &3Distillery&r is the worse of the two. It is unlocked earlier, and it is &dsmaller&r, &dcheaper&r, and &dmore energy efficient&r per recipe." - "" - "Hell, in many cases, you won't even mind losing the other Fluids." - "" - "&3Distilleries&r are an essential component for power generation, whether you pick &aDiesel&r or &aBenzene&r." - "" - "You'll probably want many of them at as low-tier as possible to avoid the energy losses from Overclocking." + "{quests.medium_voltage.mv_distillery.desc.3}" ] icon: "gtceu:mv_distillery" id: "6A304E453D74C57C" + min_required_dependencies: 1 shape: "square" - size: 0.75d + size: 1.0d + subtitle: "{quests.medium_voltage.mv_distillery.subtitle}" tasks: [{ id: "685043442271A0D0" item: { Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - display: { - Name: "{\"text\":\"Either an LV or MV Distillery\"}" - } - "ftbfiltersystem:filter": "or(item(gtceu:lv_distillery)item(gtceu:mv_distillery))" + "ftbfiltersystem:filter": "or(item(gtceu:mv_distillery)item(gtceu:lv_distillery))" } } - title: "Either an LV or MV Distillery" + title: "{quests.medium_voltage.mv_distillery.task}" type: "item" }] - title: "Distillery" - x: -1.125d - y: -1.875d + title: "{quests.medium_voltage.mv_distillery.title}" + x: -5.5d + y: 1.0d } { dependencies: ["05ADBAE5B6F38956"] description: [ - "&aRefinery Gas&r, &aLPG&r and &aMethane&r are &9Gas Fuels&r. LPG (Liquid Petroleum Gas) is a mix of hydrocarbons typically used in heating appliances." - "" - "Refinery Gas is obtained either through &dNatural Gas&r or &dLight Oil&r, the latter yielding more, yet requiring an extra step of distillation." - "" - "Use of a &3Centrifuge&r to separate into &aLPG&r and &aMethane&r should always be done, as it's practically free." + "{quests.medium_voltage.mv_lpg.desc.1}" "{@pagebreak}" - "&a&aLPG&r and &aMethane&r are burned in a &3Gas Turbine&r. Among the other fuel options, they are the easier to set up which makes them excellent to get started. Their drawback is that they cannot be refined further, so upgrading the &3Fluid Drilling Rig&r may be a top priority if you stick to this fuel source." - "" - "&aMethane&r can also be obtained from a few &anatural sources&r. &eBetween us&r, they're memes, but you can explore them if you wish. Ultimately, your power source is your choice." + "{quests.medium_voltage.mv_lpg.desc.2}" ] icon: "gtceu:natural_gas_bucket" id: "227D89550BB9BD55" - size: 0.66d - subtitle: "Whoever smelt it..." + optional: true + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_lpg.subtitle}" tasks: [ { - id: "55FA956EF00E68C9" - item: "gtceu:lpg_bucket" + id: "027B41ACE1566E28" + item: "gtceu:refinery_gas_bucket" type: "item" } { - id: "0669F66C86C8D31B" + id: "0ABB837337D9CAF9" item: "gtceu:methane_bucket" type: "item" } { - id: "4B82683A47C13A07" - item: "gtceu:refinery_gas_bucket" + id: "401B9B85969AE681" + item: "gtceu:lpg_bucket" type: "item" } ] - title: "The Church of Natural Farts" - x: -2.25d - y: 0.375d + title: "{quests.medium_voltage.mv_lpg.title}" + x: -2.5d + y: 4.0d } { dependencies: ["6A304E453D74C57C"] description: [ - "&aBenzene&r is a &9Gas Fuel&r. To skip some frustration, let's check out the two best ways to obtain it." - "" - "The first option is typically &dWood based&r. Put Logs in the &3Pyrolyse Oven&r for &9Wood Tar&r. The Charcoal you obtain can then be processed in &3Extractors&r for even more &9Wood Tar&r, which you &3distill&r for &aBenzene&r." - "" - "Your second option is &dHeavy Oil based&r. Put Heavy Oil in a &3Distillery&r for &9Heavy Fuel&r, which you &aseverely steam-crack&r and &3distill&r again for &aBenzene&r." + "{quests.medium_voltage.mv_benzene.desc.1}" "{@pagebreak}" - "For information on how to process Oil, check the Light Fuel and Naphtha Quests." - "" - "In general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources." - "" - "&aBenzene&r is burned in a &3Gas Turbine&r. This power source starts weaker than its &eDiesel&r cousin, but gets a big boost when refined to &6Nitrobenzene&r in &6HV&r. Ultimately, your power source is your choice." + "{quests.medium_voltage.mv_benzene.desc.2}" ] icon: "gtceu:benzene_bucket" id: "00E1A728E6F6D6A0" - size: 0.66d + optional: true + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_benzene.subtitle}" tasks: [{ - id: "63594021204B976A" + id: "4E9EBCCCC7BBAFDD" item: "gtceu:benzene_bucket" type: "item" }] - title: "The Church of Benzene" - x: -2.25d - y: -1.875d + title: "{quests.medium_voltage.mv_benzene.title}" + x: -5.0d + y: 2.5d } { dependencies: ["6A304E453D74C57C"] - description: [ - "Distillating &aOil&r will give you Fuel that you will need to desulfurize." - "" - "&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r." - "" - "To automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r." - "" - "&aLight Fuel&r is a good &9Power&r option, but there's something even greater... check the Quest to the left." - ] + description: ["{quests.medium_voltage.mv_light_fuel.desc}"] icon: "gtceu:lightly_hydro_cracked_heavy_fuel_bucket" id: "61972B16805FC9EE" - size: 0.66d + optional: true + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_light_fuel.subtitle}" tasks: [ { - id: "694F46D263E7A235" + id: "6E4D818CE088D7D4" + item: "gtceu:sulfuric_light_fuel_bucket" + optional_task: true + type: "item" + } + { + id: "36D70C00EF5171D6" item: "gtceu:light_fuel_bucket" type: "item" } - { - id: "7FE38BAB7B545EF9" - item: "gtceu:sulfuric_light_fuel_bucket" - type: "item" - } ] - title: "Light Fuel" - x: -1.125d - y: -3.0d + title: "{quests.medium_voltage.mv_light_fuel.title}" + x: -6.0d + y: 2.5d } { dependencies: ["61972B16805FC9EE"] description: [ - "&aDiesel&r is a &dOil-based &9Combustion Fuel&r." - "" - "To mix &aLight Fuel&r and &aHeavy Fuel&r, the right ratio for &3Distilleries&r is &63:2&r from &dOil&r or &dRaw Oil&r." - "" - "This would necessitate 3 Distilleries for Light Fuel, or 2 Distilleries for Heavy Fuel." + "{quests.medium_voltage.mv_diesel.desc.1}" "{@pagebreak}" - "You can cut the amount of &dOil&r required &6drastically&r by using &dHeavy Oil&r for &aHeavy Fuel&r specifically. &dOilsands&r is a great option if you wish to go down this route!" - "" - "&o(For the math nerds, you go from 8.33 Oil -> 6 Diesel, to 5 Oil + 0.4 Heavy Oil -> 6 Diesel)&r" - "" - "&eNote:&r Do &cnot attempt&r to put Oil in the &3Distillation Tower&r You might think it's a good idea because it gives both Light Fuel and Heavy Fuel. However, this process requires a lot of overclocking to be worth your time, and you will lose more energy than what the byproducts are worth." + "{quests.medium_voltage.mv_diesel.desc.2}" "{@pagebreak}" - "In general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources." - "" - "&aDiesel&r is burned in a &3Combustion Generator&r. It can be further refined to &6Cetane-Boosted Diesel&r in &6HV&r. Compared to the other power sources, it is generally more efficient, but a more demanding processing line. If you take the &eOil&r route for &aPolyethylene&r, this can work great with existing infrastructure. Ultimately, the power source you want to use is your choice." + "{quests.medium_voltage.mv_diesel.desc.3}" ] icon: "gtceu:diesel_bucket" id: "45769156F4253C86" - size: 0.66d - subtitle: "Mother, how is diesel made?" + optional: true + size: 1.0d + subtitle: "{quests.medium_voltage.mv_diesel.subtitle}" tasks: [{ - id: "49A059992EE21C9A" + id: "10BAA54947D975AF" item: "gtceu:diesel_bucket" type: "item" }] - title: "The Church of Diesel" - x: -2.25d - y: -3.0d + title: "{quests.medium_voltage.mv_diesel.title}" + x: -5.5d + y: 3.5d } { dependency_requirement: "one_started" - description: [ - "Regular &o&dGregTech&r Fluid Pipes can only transport one fluid type at a time." - "" - "&3Quadruple Fluid Pipes&r can transfer four different types of fluids. &3Nonuple Fluid Pipes&r can transfer nine different types! Useful for compact setups." - "" - "&3Nonuple Fluid Pipes&r will be useful in &5EV&r for handling the many outputs of the &3Distillation Tower&r." - "" - "Get &eeither&r to finish this quest." - ] + description: ["{quests.medium_voltage.mv_mutli_channel.desc}"] icon: "gtceu:tungsten_steel_quadruple_fluid_pipe" id: "66041DE10C882382" - size: 0.66d + optional: true + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_mutli_channel.subtitle}" tasks: [{ id: "2620FA131244B3DA" item: { Count: 1 id: "ftbfiltersystem:smart_filter" tag: { - display: { - Name: "{\"text\":\"Any Quadruple or Nonuple Pipe\"}" - } - "ftbfiltersystem:filter": "or(item_tag(forge:quadruple_fluid_pipes)item_tag(forge:nonuple_fluid_pipes))" + "ftbfiltersystem:filter": "or(item(gtceu:aluminium_quadruple_fluid_pipe)item(gtceu:blue_steel_quadruple_fluid_pipe)item(gtceu:steel_quadruple_fluid_pipe))" } } title: "Multiple Channel Potin Pipes, please" type: "item" }] - title: "Multiple Channel Pipes" - x: 4.5d - y: -4.125d + title: "{quests.medium_voltage.mv_mutli_channel.title}" + x: -8.0d + y: 1.0d } { dependencies: ["315169840E06110F"] - description: [ - "Using a Ruby Lens, engrave a Silicon Wafer into an ILC Wafer." - "" - "This can be processed in a Cutter for IC Chips, which are important components that will be precious when improving upon your circuit crafting capabilities." - ] + description: ["{quests.medium_voltage.mv_ic.desc}"] icon: "gtceu:ilc_chip" id: "6F6D2829FC42F21C" - size: 0.66d - subtitle: "I C U" + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_ic.subtitle}" tasks: [ { id: "295D2CE93D4CE067" @@ -1768,20 +1196,18 @@ type: "item" } ] - title: "IC Chips" - x: 5.625d - y: 2.625d + title: "{quests.medium_voltage.mv_ic.title}" + x: 7.0d + y: 10.0d } { dependencies: ["315169840E06110F"] - description: [ - "Using a Sapphire Lens, engrave a Silicon Wafer into an ULPIC Wafer." - "" - "This can be processed in a Cutter for ULPIC Chips, which are important for some multiblock components!" - ] + description: ["{quests.medium_voltage.mv_ulpic.desc}"] icon: "gtceu:ulpic_chip" id: "16A1EF8B80A96633" - size: 0.66d + shape: "square" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_ulpic.subtitle}" tasks: [ { id: "6D4D63F75646DB1C" @@ -1801,56 +1227,23 @@ type: "item" } ] - title: "IC Chips" - x: 4.5d - y: 0.375d + title: "{quests.medium_voltage.mv_ulpic.title}" + x: 5.5d + y: 10.0d } { - dependencies: ["5C94CF50090D7DA0"] + dependencies: ["45449ECE4F8128E7"] description: [ - "&3Long-Distance Item Pipes&r can be used to send items across great distances. Place one endpoint at each end, and connect them with pipeline blocks." - "" - "These pipes instantly transfer from the input side to the output side." - "" - "They also have a minimum distance between pipe endpoints, so you can't use these for short-range operations." - ] - icon: "gtceu:long_distance_item_pipeline_endpoint" - id: "653345427522D728" - size: 0.66d - subtitle: "Wondering how to move those ores around?" - tasks: [ - { - count: 2L - id: "0A8CADD371444760" - item: "gtceu:long_distance_item_pipeline_endpoint" - type: "item" - } - { - id: "66D528959958D445" - item: "gtceu:long_distance_item_pipeline" - type: "item" - } - ] - title: "Long-Distance Items" - x: -3.375d - y: 0.375d - } - { - dependencies: [ - "0774EC59CD3DD7A5" - "575B07D390D9D079" - ] - description: [ - "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks." - "" - "These pipes instantly transfer from the input side to the output side." - "" - "They also have a minimum distance between pipe endpoints, so you can't use these for short-range operations." + "{quests.medium_voltage.mv_long_pipe.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_long_pipe.desc.2}" ] icon: "gtceu:long_distance_fluid_pipeline_endpoint" id: "5480AF2EDEDB6A36" - size: 0.66d - subtitle: "Wondering how to move that oil around?" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_long_pipe.subtitle}" tasks: [ { count: 2L @@ -1864,11 +1257,262 @@ type: "item" } ] - title: "Long-Distance Fluids" - x: -3.375d - y: -0.75d + title: "{quests.medium_voltage.mv_long_pipe.title}" + x: -9.5d + y: -6.5d + } + { + dependencies: ["45769156F4253C86"] + dependency_requirement: "one_completed" + description: ["{quests.medium_voltage.mv_.desc}"] + id: "6FA956DAA72D6139" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_.subtitle}" + tasks: [{ + id: "022324F9630960C6" + item: { + Count: 1 + id: "gtceu:liquid_fuel_jetpack" + tag: { } + } + type: "item" + }] + title: "{quests.medium_voltage.mv_jetpack.title}" + x: -5.5d + y: 5.0d + } + { + dependencies: ["75F38905DEA60F15"] + dependency_requirement: "one_completed" + description: ["{quests.medium_voltage.mv_jetpack_2.desc}"] + id: "21F70EACF6D81E6A" + optional: true + shape: "heart" + size: 1.0d + subtitle: "{quests.medium_voltage.mv_jetpack_2.subtitle}" + tasks: [{ + id: "1940421A45E45E25" + item: { + Count: 1 + id: "gtceu:electric_jetpack" + tag: { } + } + type: "item" + }] + title: "{quests.medium_voltage.mv_jetpack_2.title}" + x: 1.5d + y: 5.0d + } + { + dependencies: [ + "10FB27DD3C7BEC2F" + "1C55AE6AD5BDE304" + ] + description: ["{quests.medium_voltage.mv_electronic_components.desc}"] + id: "5DD01CBADFFF3571" + shape: "square" + subtitle: "{quests.medium_voltage.mv_electronic_components.subtitle}" + tasks: [ + { + id: "128CD77BAAB2775E" + item: "gtceu:capacitor" + type: "item" + } + { + id: "4D8C5B8BEE0AF29C" + item: "gtceu:transistor" + type: "item" + } + { + id: "796E58783B37BA74" + item: "gtceu:diode" + type: "item" + } + ] + title: "{quests.medium_voltage.mv_electronic_components.title}" + x: 0.5d + y: 10.0d + } + { + dependencies: [ + "45449ECE4F8128E7" + "0EFEE489906256AA" + "32B08E6F414A00C0" + ] + dependency_requirement: "one_completed" + description: ["{quests.medium_voltage.mv_chlorine.desc}"] + id: "694DF1C33B53A0D5" + subtitle: "{quests.medium_voltage.mv_chlorine.subtitle}" + tasks: [{ + id: "28B146A81C429249" + item: "gtceu:chlorine_bucket" + type: "item" + }] + title: "{quests.medium_voltage.mv_chlorine.title}" + x: -9.5d + y: -3.5d + } + { + dependencies: ["45449ECE4F8128E7"] + description: ["{quests.medium_voltage.mv_hydrogen.desc}"] + id: "042E4EF7CF366C0C" + optional: true + subtitle: "{quests.medium_voltage.mv_hydrogen.subtitle}" + tasks: [{ + id: "089961E2732EDC72" + item: "gtceu:hydrogen_bucket" + type: "item" + }] + title: "{quests.medium_voltage.mv_hydrogen.title}" + x: -10.5d + y: -3.5d + } + { + dependency_requirement: "one_started" + description: ["{quests.medium_voltage.mv_seawater.desc}"] + id: "45449ECE4F8128E7" + optional: true + subtitle: "{quests.medium_voltage.mv_seawater.subtitle}" + tasks: [{ + id: "77395198DC98E3A5" + item: "tfc:bucket/salt_water" + type: "item" + }] + title: "{quests.medium_voltage.mv_seawater.title}" + x: -10.0d + y: -5.0d + } + { + dependencies: ["583D0CC4FAA4FC98"] + description: ["{quests.medium_voltage.mv_battery.desc}"] + id: "6F898B934BB79016" + subtitle: "{quests.medium_voltage.mv_battery.subtitle}" + tasks: [{ + id: "50BDD4D0FAFBE5E6" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:mv_battery_buffer_4x)item(gtceu:mv_battery_buffer_8x)item(gtceu:mv_battery_buffer_16x))" + } + } + type: "item" + }] + title: "{quests.medium_voltage.mv_battery.title}" + x: 7.0d + y: -0.5d + } + { + dependencies: [ + "16A6AE5C770DB83A" + "10FB27DD3C7BEC2F" + ] + description: ["{quests.medium_voltage.hv_machine_hull.desc}"] + id: "3E25696C98A6F123" + shape: "gear" + size: 4.0d + subtitle: "{quests.medium_voltage.hv_machine_hull.subtitle}" + tasks: [{ + id: "23FB958E73846929" + item: "gtceu:hv_machine_hull" + type: "item" + }] + title: "{quests.medium_voltage.hv_machine_hull.title}" + x: -4.0d + y: 7.5d + } + { + description: [ + "{quests.medium_voltage.mv_machine_hull.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_machine_hull.desc.2}" + "{@pagebreak}" + "{quests.medium_voltage.mv_machine_hull.desc.3}" + "{@pagebreak}" + "{quests.medium_voltage.mv_machine_hull.desc.4}" + ] + id: "22E462070F8B027A" + shape: "gear" + size: 3.0d + subtitle: "{quests.medium_voltage.mv_machine_hull.subtitle}" + tasks: [{ + id: "242FDFA23A5DEC91" + item: "gtceu:mv_machine_hull" + type: "item" + }] + title: "{quests.medium_voltage.mv_machine_hull.title}" + x: 3.0d + y: 1.0d + } + { + dependencies: ["1E9BE8D3F8A602DC"] + description: [ + "{quests.medium_voltage.mv_kanthal_ingot.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_kanthal_ingot.desc.2}" + ] + icon: "gtceu:kanthal_ingot" + id: "4058958C4743E522" + subtitle: "{quests.medium_voltage.mv_kanthal_ingot.subtitle}" + tasks: [ + { + count: 128L + id: "5D22FAD1B450AFAB" + item: "gtceu:kanthal_ingot" + type: "item" + } + { + id: "55774A7953C56E25" + item: "gtceu:hot_kanthal_ingot" + optional_task: true + type: "item" + } + { + id: "1C6FECE08B6DC1B8" + item: "gtceu:mv_chemical_bath" + type: "item" + } + ] + title: "{quests.medium_voltage.mv_kanthal_ingot.title}" + x: 1.5d + y: 9.0d + } + { + dependencies: ["22E462070F8B027A"] + description: ["{quests.medium_voltage.mv_.desc}"] + id: "79E8DC4D9B5F6B97" + shape: "octagon" + size: 2.0d + subtitle: "{quests.medium_voltage.mv_.subtitle}" + tasks: [{ + id: "04A6D4858DA3CE94" + item: "gtceu:mv_chemical_reactor" + type: "item" + }] + title: "{quests.medium_voltage.mv_chemical_reactor.title}" + x: 7.0d + y: -3.5d + } + { + description: [ + "{quests.medium_voltage.mv_silicon.desc.1}" + "{@pagebreak}" + "{quests.medium_voltage.mv_silicon.desc.2}" + ] + id: "3DB03EA806B2D8A1" + subtitle: "{quests.medium_voltage.mv_silicon.subtitle}" + tasks: [{ + id: "001C8867E5DAE7D7" + item: "gtceu:silicon_dust" + type: "item" + }] + title: "{quests.medium_voltage.mv_silicon.title}" + x: 9.0d + y: 6.0d } ] - subtitle: ["Venture into petrochemistry and refine electronics"] - title: "&bMV&r - Medium Voltage" + subtitle: ["{quests.medium_voltage.subtitle}"] + title: "{quests.medium_voltage}" } diff --git a/config/ftbquests/quests/chapters/ore_processing.snbt b/config/ftbquests/quests/chapters/ore_processing.snbt new file mode 100644 index 000000000..2941f44cf --- /dev/null +++ b/config/ftbquests/quests/chapters/ore_processing.snbt @@ -0,0 +1,836 @@ +{ + default_hide_dependency_lines: false + default_quest_shape: "" + filename: "ore_processing" + group: "33020D1D0ECDF301" + icon: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:crushed_iron_ore" + } + id: "24C1683140DBB5F2" + order_index: 0 + quest_links: [ ] + quests: [ + { + description: ["{quests.ore_proc.native_ore.desc}"] + id: "5D09BEE61210DF02" + size: 1.5d + subtitle: "{quests.ore_proc.native_ore.subtitle}" + tasks: [ + { + id: "047DA2872D107BA0" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(tfc:ore_pieces))" + } + } + optional_task: true + title: "{quests.ore_proc.native_ore.task}" + type: "item" + } + { + id: "2D0D9226FDB3CAC9" + type: "checkmark" + } + ] + title: "{quests.ore_proc.native_ore.title}" + x: 0.5d + y: -8.5d + } + { + dependencies: [ + "514AEDB447F4AF42" + "68A48B07F9489620" + ] + dependency_requirement: "one_completed" + description: ["{quests.ore_proc.crushed_ores.desc}"] + id: "28419A1010EEE93A" + subtitle: "{quests.ore_proc.crushed_ores.subtitle}" + tasks: [ + { + id: "321A5E0E6EA03930" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(forge:crushed_ores))" + } + } + optional_task: true + type: "item" + } + { + id: "4A590589A3C1B57E" + type: "checkmark" + } + ] + title: "{quests.ore_proc.crushed_ores.title}" + x: 0.5d + y: -4.5d + } + { + dependencies: ["5D09BEE61210DF02"] + description: ["{quests.ore_proc.macerator_byproduct.desc}"] + icon: "gtceu:hv_macerator" + id: "68A48B07F9489620" + subtitle: "{quests.ore_proc.macerator_byproduct.subtitle}" + tasks: [ + { + id: "34740ED2B48819BB" + item: "gtceu:hv_macerator" + optional_task: true + type: "item" + } + { + id: "0A045AAA4BBEF63F" + item: "greate:stainless_steel_crushing_wheel" + optional_task: true + type: "item" + } + { + id: "0E86067C993E18BF" + type: "checkmark" + } + ] + title: "{quests.ore_proc.macerator_byproduct.title}" + x: 0.0d + y: -6.5d + } + { + dependencies: ["5D09BEE61210DF02"] + description: ["{quests.ore_proc.macerator_noproduct.desc}"] + icon: "greate:steel_millstone" + id: "514AEDB447F4AF42" + subtitle: "{quests.ore_proc.macerator_noproduct.subtitle}" + tasks: [ + { + id: "5EC14F048516D792" + item: "greate:steel_millstone" + optional_task: true + type: "item" + } + { + id: "5D23CEE2220A31FD" + item: "tfc:quern" + optional_task: true + type: "item" + } + { + id: "3D6010FE11723186" + item: "gtceu:hp_steam_forge_hammer" + optional_task: true + type: "item" + } + { + id: "79C87A0922F99B91" + type: "checkmark" + } + ] + title: "{quests.ore_proc.macerator_noproduct.title}" + x: 1.0d + y: -6.5d + } + { + dependencies: ["28419A1010EEE93A"] + description: ["{quests.ore_proc.ore_washer.desc}"] + icon: "greate:steel_encased_fan" + id: "35995A8DD303B08D" + subtitle: "{quests.ore_proc.ore_washer.subtitle}" + tasks: [ + { + id: "768C7F10A1490AB7" + item: "gtceu:lv_ore_washer" + optional_task: true + type: "item" + } + { + id: "58FCB68304F6943D" + item: "greate:steel_encased_fan" + optional_task: true + type: "item" + } + { + id: "3150FF938CABCC54" + type: "checkmark" + } + ] + title: "{quests.ore_proc.ore_washer.title}" + x: 0.5d + y: -2.5d + } + { + dependencies: ["28419A1010EEE93A"] + description: ["{quests.ore_proc.mercury_ores.desc}"] + icon: "gtceu:mercury_bucket" + id: "7C67BAEE68852188" + subtitle: "{quests.ore_proc.mercury_ores.subtitle}" + tasks: [ + { + id: "1BB9800D737EBEE4" + item: "gtceu:lv_chemical_bath" + optional_task: true + type: "item" + } + { + id: "0D235407594C22F2" + item: "gtceu:mercury_bucket" + optional_task: true + type: "item" + } + { + id: "09E366F7C581F34F" + type: "checkmark" + } + ] + title: "{quests.ore_proc.mercury_ores.title}" + x: 2.0d + y: -2.5d + } + { + dependencies: ["28419A1010EEE93A"] + description: ["{quests.ore_proc.sodium_persuflate.desc}"] + icon: "gtceu:sodium_persulfate_bucket" + id: "3513778F204293CD" + subtitle: "{quests.ore_proc.sodium_persuflate.subtitle}" + tasks: [ + { + id: "6E0289DE2614FDB2" + item: "gtceu:lv_chemical_bath" + optional_task: true + type: "item" + } + { + id: "5615AC3A2E3F915E" + item: "gtceu:sodium_persulfate_bucket" + optional_task: true + type: "item" + } + { + id: "33B1AD17A68606A6" + type: "checkmark" + } + ] + title: "{quests.ore_proc.sodium_persuflate.title}" + x: -1.0d + y: -2.5d + } + { + dependencies: ["7C67BAEE68852188"] + description: ["{quests.ore_proc.mercury.desc}"] + id: "68AC3E2C9093FCFE" + optional: true + subtitle: "{quests.ore_proc.mercury.subtitle}" + tasks: [ + { + id: "3FC4A7F71B918F68" + item: "gtceu:crushed_platinum_ore" + type: "item" + } + { + id: "417A27E90C01166E" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:crushed_nickel_ore" + } + type: "item" + } + { + id: "3D85D53762AA09F5" + item: "gtceu:crushed_cooperite_ore" + type: "item" + } + ] + title: "{quests.ore_proc.mercury.title}" + x: 3.5d + y: -2.5d + } + { + dependencies: ["3513778F204293CD"] + description: ["{quests.ore_proc.sodium_ores.desc}"] + id: "0502E478E27D4B73" + optional: true + subtitle: "{quests.ore_proc.sodium_ores.subtitle}" + tasks: [ + { + id: "605F3A1BFD554922" + item: "gtceu:crushed_aluminium_ore" + type: "item" + } + { + id: "5ADFEF5AF8FDD5AF" + item: "gtceu:crushed_bauxite_ore" + type: "item" + } + { + id: "28A082F6FF520B21" + item: "gtceu:crushed_cobalt_ore" + type: "item" + } + { + id: "46B6DEFD1A7BEA60" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:crushed_tetrahedrite_ore" + } + type: "item" + } + ] + title: "{quests.ore_proc.sodium_ores.title}" + x: -2.5d + y: -2.5d + } + { + dependencies: [ + "3513778F204293CD" + "7C67BAEE68852188" + "35995A8DD303B08D" + ] + dependency_requirement: "one_completed" + description: ["{quests.ore_proc.purified_ores.desc}"] + id: "544EA7FF98FDCFB7" + subtitle: "{quests.ore_proc.purified_ores.subtitle}" + tasks: [ + { + id: "4C6F60AC9C803D7B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(forge:purified_ores))" + } + } + optional_task: true + type: "item" + } + { + id: "3C194AEB554DA4CA" + type: "checkmark" + } + ] + title: "{quests.ore_proc.purified_ores.title}" + x: 0.5d + y: -0.5d + } + { + dependencies: ["544EA7FF98FDCFB7"] + description: ["{quests.ore_proc.indium.desc}"] + icon: "gtceu:indium_dust" + id: "642FD77427A3B2FA" + subtitle: "{quests.ore_proc.indium.subtitle}" + tasks: [ + { + id: "199F216EDD90F24E" + item: "gtceu:indium_dust" + optional_task: true + type: "item" + } + { + id: "0373F4E380F2A0BC" + item: "gtceu:indium_concentrate_bucket" + optional_task: true + type: "item" + } + { + id: "246799A19B9A47B6" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:purified_sphalerite_ore" + } + optional_task: true + type: "item" + } + { + id: "54041D4FF39893F5" + item: "gtceu:purified_galena_ore" + optional_task: true + type: "item" + } + { + id: "52FCA464BD827E37" + type: "checkmark" + } + ] + title: "{quests.ore_proc.indium.title}" + x: -1.0d + y: -0.5d + } + { + dependencies: ["544EA7FF98FDCFB7"] + description: ["{quests.ore_proc.platline.desc}"] + icon: "gtceu:platinum_group_sludge_dust" + id: "7B2EE67E37809269" + subtitle: "{quests.ore_proc.platline.subtitle}" + tasks: [ + { + id: "2CEBE8BC5E3AF11A" + item: "gtceu:platinum_group_sludge_dust" + optional_task: true + type: "item" + } + { + id: "1F185450C1FF7379" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:purified_chalcocite_ore" + } + optional_task: true + type: "item" + } + { + id: "6140EA15476B4A16" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:purified_chalcopyrite_ore" + } + optional_task: true + type: "item" + } + { + id: "6F239C59DC002095" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:purified_bornite_ore" + } + optional_task: true + type: "item" + } + { + id: "29D38459E25A0D3E" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:purified_pentlandite_ore" + } + optional_task: true + type: "item" + } + { + id: "22DF4DB3FF6976EA" + item: "gtceu:purified_cooperite_ore" + optional_task: true + type: "item" + } + { + id: "1A8C5E755FE82C59" + item: { + Count: 1 + ForgeCaps: { + "tfc:item_heat": { + heat: 0.0f + ticks: 0L + } + } + id: "gtceu:purified_tetrahedrite_ore" + } + optional_task: true + type: "item" + } + { + id: "1637CE96CB926DF2" + type: "checkmark" + } + ] + title: "{quests.ore_proc.platline.title}" + x: 2.0d + y: -0.5d + } + { + dependencies: ["544EA7FF98FDCFB7"] + description: ["{quests.ore_proc.thermal_centrifuge.desc}"] + icon: "gtceu:lv_thermal_centrifuge" + id: "6BAC3BE1D4FE0F6B" + subtitle: "{quests.ore_proc.thermal_centrifuge.subtitle}" + tasks: [ + { + id: "5626010B0878F067" + item: "gtceu:lv_thermal_centrifuge" + optional_task: true + type: "item" + } + { + id: "5C4C3401C72CC768" + type: "checkmark" + } + ] + title: "{quests.ore_proc.thermal_centrifuge.title}" + x: 0.5d + y: 1.5d + } + { + dependencies: ["544EA7FF98FDCFB7"] + description: ["{quests.ore_proc.sifter.desc}"] + icon: "gtceu:lv_sifter" + id: "31A6A236B6710B95" + subtitle: "{quests.ore_proc.sifter.subtitle}" + tasks: [ + { + id: "018A18B6F52ED096" + item: "gtceu:lv_sifter" + optional_task: true + type: "item" + } + { + id: "019C7598748D30E1" + item: "vintageimprovements:vibrating_table" + optional_task: true + type: "item" + } + { + id: "1BA3E3F150F2296C" + type: "checkmark" + } + ] + title: "{quests.ore_proc.sifter.title}" + x: 2.0d + y: 1.0d + } + { + dependencies: ["31A6A236B6710B95"] + description: ["{quests.ore_proc.centrifuge_sifter.desc}"] + icon: "vintageimprovements:centrifuge" + id: "2F1AFDB17C5FC291" + subtitle: "{quests.ore_proc.centrifuge_sifter.subtitle}" + tasks: [ + { + id: "7B3C64B98597B573" + item: "gtceu:lv_centrifuge" + optional_task: true + type: "item" + } + { + id: "288ABE9C064D983F" + item: "vintageimprovements:centrifuge" + optional_task: true + type: "item" + } + { + id: "54EA71173CCA6298" + type: "checkmark" + } + ] + title: "{quests.ore_proc.centrifuge_sifter.title}" + x: 2.0d + y: 2.0d + } + { + dependencies: ["544EA7FF98FDCFB7"] + description: ["{quests.ore_proc.macerator_separator.desc}"] + icon: "greate:stainless_steel_crushing_wheel" + id: "630D44C9BD1D7190" + subtitle: "{quests.ore_proc.macerator_separator.subtitile}" + tasks: [ + { + id: "57FD0D0741991622" + item: "gtceu:hv_macerator" + optional_task: true + type: "item" + } + { + id: "473B6D9D44F5CA51" + item: "greate:stainless_steel_crushing_wheel" + optional_task: true + type: "item" + } + { + id: "5DE1F541B6A2C27E" + type: "checkmark" + } + ] + title: "{quests.ore_proc.macerator_separator.title}" + x: -1.0d + y: 1.0d + } + { + dependencies: ["630D44C9BD1D7190"] + description: ["{quests.ore_proc.electro_separator.desc}"] + icon: "gtceu:lv_electromagnetic_separator" + id: "5DC7D0B4E591417D" + subtitle: "{quests.ore_proc.electro_separator.subtitle}" + tasks: [ + { + id: "2F017A29A979276C" + item: "gtceu:hv_electromagnetic_separator" + optional_task: true + type: "item" + } + { + id: "6B3DD2CB3874478A" + item: "gtceu:pure_bastnasite_dust" + optional_task: true + type: "item" + } + { + id: "753028DDF077DCFD" + item: "gtceu:pure_naquadah_dust" + optional_task: true + type: "item" + } + { + id: "4347664AB3BF5736" + type: "checkmark" + } + ] + title: "{quests.ore_proc.electro_separator.title}" + x: -1.0d + y: 2.0d + } + { + dependencies: [ + "5DC7D0B4E591417D" + "6BAC3BE1D4FE0F6B" + "2F1AFDB17C5FC291" + ] + dependency_requirement: "one_completed" + description: ["{quests.ore_proc.dust_processed.desc}"] + id: "22C1D541452D4AD4" + subtitle: "{quests.ore_proc.dust_processed.subtitle}" + tasks: [ + { + id: "3EA3BABECE52085B" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item_tag(forge:dusts))" + } + } + type: "item" + } + { + id: "1A1B2762EFD6C6B0" + type: "checkmark" + } + ] + title: "{quests.ore_proc.dust_processed.title}" + x: 0.5d + y: 3.5d + } + { + dependencies: ["22C1D541452D4AD4"] + description: ["{quests.ore_proc.electrolyzer.desc}"] + icon: "gtceu:lv_electrolyzer" + id: "1BE7400D97562227" + subtitle: "{quests.ore_proc.electrolyzer.subtitle}" + tasks: [ + { + id: "266A62102285A81F" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_electrolyzer)item(gtceu:mv_electrolyzer)item(gtceu:hv_electrolyzer)item(gtceu:ev_electrolyzer)item(gtceu:iv_electrolyzer)item(gtceu:luv_electrolyzer)item(gtceu:zpm_electrolyzer)item(gtceu:uv_electrolyzer))" + } + } + optional_task: true + type: "item" + } + { + id: "63355BE55659968E" + type: "checkmark" + } + ] + title: "{quests.ore_proc.electrolyzer.title}" + x: 0.0d + y: 5.5d + } + { + dependencies: ["22C1D541452D4AD4"] + description: ["{quests.ore_proc.packer.desc}"] + icon: "gtceu:lv_packer" + id: "0D75C3A7D69E12C2" + subtitle: "{quests.ore_proc.packer.subtitle}" + tasks: [ + { + id: "5B4F1397CD746E02" + item: "gtceu:lv_packer" + optional_task: true + type: "item" + } + { + id: "1652532FFCF3E37A" + type: "checkmark" + } + ] + title: "{quests.ore_proc.packer.title}" + x: 1.0d + y: 5.5d + } + { + dependencies: ["5D09BEE61210DF02"] + description: ["{quests.ore_proc.gtcy.desc}"] + icon: "gtceu:alloy_blast_smelter" + id: "335FE15E81D3AB06" + shape: "octagon" + size: 1.25d + subtitle: "{quests.ore_proc.gtcy.subtitle}" + tasks: [ + { + id: "5B6E8C5E63F5AF97" + item: "gtceu:large_maceration_tower" + optional_task: true + type: "item" + } + { + id: "3A25030D00212FC6" + item: "gtceu:large_centrifuge" + optional_task: true + type: "item" + } + { + id: "4A3FE7BC2DBA8D37" + item: "gtceu:large_sifting_funnel" + optional_task: true + type: "item" + } + { + id: "4035CEFA54AF8CA7" + item: "gtceu:large_chemical_bath" + optional_task: true + type: "item" + } + { + id: "757E5A50BE7FDF72" + item: "gtceu:large_electromagnet" + optional_task: true + type: "item" + } + { + id: "087302FFE78EA9AB" + item: "gtceu:large_electrolyzer" + optional_task: true + type: "item" + } + { + id: "243D67333DA333D8" + item: "gtceu:large_packer" + optional_task: true + type: "item" + } + { + id: "5C78A0155B10864F" + type: "checkmark" + } + ] + title: "{quests.ore_proc.gtcy.title}" + x: 3.0d + y: -8.5d + } + { + dependencies: ["5D09BEE61210DF02"] + description: ["{quests.ore_proc.ae2.desc}"] + icon: "expatternprovider:tag_storage_bus" + id: "4ED1E28BDDE50E6C" + shape: "octagon" + size: 1.25d + subtitle: "{quests.ore_proc.ae2.subtitle}" + tasks: [ + { + id: "120F92F5742F409A" + item: "ae2:controller" + optional_task: true + type: "item" + } + { + id: "32D21FB6D64AB61E" + item: "expatternprovider:tag_storage_bus" + optional_task: true + type: "item" + } + { + id: "3F6075F8DEA148A6" + type: "checkmark" + } + ] + title: "{quests.ore_proc.ae2.title}" + x: -2.0d + y: -8.5d + } + { + dependencies: ["5D09BEE61210DF02"] + description: ["{quests.ore_proc.robot_arm.desc}"] + icon: "gtceu:item_tag_filter" + id: "5AB0C996B1325FDC" + shape: "octagon" + size: 1.25d + subtitle: "{quests.ore_proc.robot_arm.subtitle}" + tasks: [ + { + id: "7CB8EAD1E4450C34" + item: "gtceu:item_tag_filter" + optional_task: true + type: "item" + } + { + id: "028E7DEC8CE595E8" + item: "gtceu:item_smart_filter" + optional_task: true + type: "item" + } + { + id: "0DCF304790B84769" + item: "gtceu:lv_robot_arm" + optional_task: true + type: "item" + } + { + id: "208DF030039D27B3" + type: "checkmark" + } + ] + title: "{quests.ore_proc.robot_arm.title}" + x: 0.5d + y: -11.0d + } + ] + subtitle: ["{quests.ore_proc.subtitle}"] + title: "{quests.ore_proc}" +} diff --git a/config/ftbquests/quests/chapters/progression.snbt b/config/ftbquests/quests/chapters/progression.snbt index bbf0b3a3a..3d444f219 100644 --- a/config/ftbquests/quests/chapters/progression.snbt +++ b/config/ftbquests/quests/chapters/progression.snbt @@ -12,322 +12,340 @@ } } id: "28EBC0FF82EFD94B" - order_index: 3 + order_index: 2 quest_links: [ { id: "77A0335E38D755CA" linked_quest: "0DBC148D92A9F69F" - shape: "rsquare" - size: 0.8d + shape: "square" x: 0.0d y: 1.0d } { id: "750818879C23F373" linked_quest: "26394C1290D70AB6" - shape: "rsquare" - size: 0.8d + shape: "square" x: 1.0d y: 2.0d } { id: "0074100DE2B5BE5A" linked_quest: "5E76D4C24026157D" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d y: 0.0d } { id: "1C05814535C12FED" linked_quest: "60D7F6C1EE918B66" - shape: "rsquare" - size: 0.75d + shape: "square" x: 1.0d y: 1.0d } { id: "513A34184609CA31" linked_quest: "5C17BF90DA2AAEEE" - shape: "rsquare" - size: 0.75d + shape: "square" x: 1.0d y: 0.0d } { id: "22CF428EE30F5B4B" linked_quest: "38DE506FF5B32031" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d y: 1.0d } { id: "33618A4FD8ED62D7" linked_quest: "5063FDFFBE3E4855" - shape: "rsquare" - size: 0.75d + shape: "square" x: 2.0d y: 2.0d } - { - id: "0B4D429E3441C906" - linked_quest: "4AFD3073C731A1E4" - shape: "rsquare" - size: 0.8d - x: 2.0d - y: 3.0d - } { id: "2B8FBCD290196265" linked_quest: "14D277A164202FF8" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d y: 4.0d } { id: "0E8AC841C484408C" linked_quest: "15EC934CE8F4DC86" - shape: "rsquare" - size: 0.8d + shape: "square" x: 2.0d y: -1.0d } { id: "6ABFBA6855A6E7E9" linked_quest: "196FC518F744B983" - shape: "rsquare" - size: 0.8d + shape: "square" x: 3.0d y: 2.0d } { id: "629EAE6BC0519572" linked_quest: "0017FFFAD7CD2EFE" - shape: "rsquare" - size: 0.75d + shape: "square" x: 3.0d y: 3.0d } { id: "59568D32C47265ED" linked_quest: "5CC9B0E832545569" - shape: "rsquare" - size: 0.75d + shape: "square" x: 3.0d y: 4.0d } { id: "42DA2C0B99DB2545" linked_quest: "58BBD540D7D4FF01" - shape: "rsquare" - size: 0.8d + shape: "square" x: 3.0d y: 5.0d } { id: "39C4E4082B9B5731" linked_quest: "49C1D61741AA288E" - shape: "rsquare" - size: 0.8d + shape: "square" x: 4.0d y: 3.0d } { id: "346904314F61ABDB" linked_quest: "698B5F65F2DE4439" - shape: "rsquare" - size: 0.75d + shape: "square" x: 4.0d y: 4.0d } { id: "1C0407D7B45603FC" linked_quest: "145F71A817C5996E" - shape: "rsquare" - size: 0.75d + shape: "square" x: 4.0d y: 5.0d } { id: "20BCF31B1430ECFC" linked_quest: "327C3E02CD751453" - shape: "rsquare" - size: 0.8d + shape: "square" x: 4.0d y: 6.0d } { id: "384FE989BF9BD89D" linked_quest: "082AB255886E73C2" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d y: 5.0d } { id: "3DD1B0AE6630A8E5" linked_quest: "370FC1CDF5F9A9CC" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d y: 6.0d } { id: "519774012E47875A" linked_quest: "359121584E056022" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d y: 7.0d } { id: "0B488F9F519FBA61" linked_quest: "3B49BD004F38E1A2" - shape: "rsquare" - size: 0.8d + shape: "square" x: 6.0d y: 8.0d } { id: "025C3D8C61A9C011" linked_quest: "42CD789B8C40E424" - shape: "rsquare" - size: 0.8d + shape: "square" x: 5.0d y: 4.0d } { id: "54F1B023BEC98314" linked_quest: "47087361D6DE7DCF" - shape: "rsquare" - size: 0.75d + shape: "square" x: 5.0d y: 5.0d } { id: "4EABE2BF51A06FC8" linked_quest: "7AE681E2AB31EA0D" - shape: "rsquare" - size: 0.75d + shape: "square" x: 5.0d y: 6.0d } { id: "607E9492E895927E" linked_quest: "79E4E53E9DF45549" - shape: "rsquare" - size: 0.8d + shape: "square" x: 5.0d y: 7.0d } { id: "709FB8C1561E7BB8" linked_quest: "1646BF9194100E57" - x: -1.0d - y: -5.0d - } - { - id: "499941B0EDEFBF54" - linked_quest: "1C55AE6AD5BDE304" - x: 0.0d - y: -5.0d + x: 10.0d + y: -3.0d } { id: "10F2DA9FCC5E3860" linked_quest: "6B08799BCFD01D3D" - x: 1.0d - y: -5.0d + x: 10.0d + y: -1.0d } { id: "72CBEEAD5A41685E" linked_quest: "069FD86133D7D582" - x: 2.0d - y: -5.0d + x: 10.0d + y: 0.0d } { id: "76C69275A82861C8" linked_quest: "7A1E3C3A2D699C5B" - x: 3.0d - y: -5.0d + x: 10.0d + y: 1.0d } { id: "6C144735C40EE615" linked_quest: "2FCBA0D780DBDA9E" - x: 4.0d - y: -5.0d + x: 10.0d + y: 2.0d } { id: "5FDCCB7CE9DACB34" linked_quest: "4C7C0F6A6598BC24" - x: 5.0d - y: -5.0d + x: 10.0d + y: 3.0d } { id: "4ACE1AFCEDC37A05" linked_quest: "6AF3A40BC9CE7122" - x: 6.0d - y: -5.0d - } - { - id: "1EA07F998161450C" - linked_quest: "30A6EDDF25A5E5F8" - shape: "rsquare" - size: 0.66d - x: 2.0d - y: -4.0d + x: 10.0d + y: 4.0d } { id: "532482B324E31386" linked_quest: "1776FA1F3255731E" - shape: "rsquare" - size: 0.66d - x: 3.0d - y: -4.0d + shape: "square" + x: 11.0d + y: 1.0d } { id: "0F86FC5CD130B2E1" linked_quest: "78277DBC07D3C45C" - shape: "rsquare" - size: 0.66d - x: 4.0d - y: -4.0d + shape: "square" + x: 11.0d + y: 2.0d } { id: "7D227159C48FAB94" linked_quest: "0DC999F79A685194" - shape: "rsquare" - size: 0.66d - x: 5.0d - y: -4.0d + shape: "square" + x: 11.0d + y: 3.0d } { id: "718938D16A6098A7" linked_quest: "35F13B6D60361904" - shape: "rsquare" - size: 0.66d - x: 6.0d - y: -4.0d + shape: "square" + x: 11.0d + y: 4.0d + } + { + id: "713A4F2E798A8BDB" + linked_quest: "6A451F43F3D7A671" + shape: "square" + x: 2.0d + y: 3.0d + } + { + id: "5BECAA6A55634AC3" + linked_quest: "3D8174C64DDC268B" + x: 0.0d + y: 0.0d + } + { + id: "13ADAD728012FCB1" + linked_quest: "1C55AE6AD5BDE304" + x: 10.0d + y: -2.0d + } + { + id: "7C16D34BB19B0B27" + linked_quest: "4058958C4743E522" + x: 11.0d + y: -2.0d + } + { + id: "5D77547BEDCC8C01" + linked_quest: "033E74BC588E7EAD" + x: 0.0d + y: -2.0d + } + { + id: "34C19E3EFD65554D" + linked_quest: "2C35D4E01AEC02AA" + x: 0.0d + y: -1.0d + } + { + id: "6C5CB6A5A223CB66" + linked_quest: "48A8E3210B2BAE1C" + x: 8.5d + y: -3.0d + } + { + id: "40D9CA59F1C83729" + linked_quest: "3C173357029AB649" + x: 8.5d + y: -2.0d + } + { + id: "1DF239C119DF26F3" + linked_quest: "174DA15847665CF8" + x: 8.5d + y: -1.0d + } + { + id: "2FF35C2F777C21C9" + linked_quest: "04DE7C58F20B535A" + x: 8.5d + y: 0.0d + } + { + id: "5A2EFA6523C736B0" + linked_quest: "56CA2EB7812529C5" + x: 8.5d + y: 2.0d + } + { + id: "5F9DCB9698B1FBC7" + linked_quest: "52DAF93E2F3D688A" + x: 8.5d + y: 1.0d } ] quests: [ { dependencies: ["0DBC148D92A9F69F"] - description: [ - "Early game Circuits are hand craftable." - "" - "Pick up the &3Circuit Assembler&r to make them a lot more efficient." - ] + description: ["{quests.development.hull_lv.desc}"] hide_dependency_lines: true - icon: "gtceu:bronze_machine_casing" + icon: "gtceu:lv_machine_hull" id: "4252B1AF36FFB4F6" progression_mode: "linear" - size: 0.85d - subtitle: "Hand crafted and artisanal" - title: "Craftable in &6Steam Age&r and &7LV&r" + size: 1.0d + subtitle: "{quests.development.hull_lv.subtitle}" + title: "{quests.development.hull_lv.title}" x: 0.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -336,21 +354,19 @@ "26394C1290D70AB6" ] description: [ - "The &9Integrated&r Circuit line may not be a strict upgrade in terms of cost, but will tide you over as a stepping stone towards the next tier." - "" - "They will require a MV &3Laser Engraver&r and a MV &3Cutting Machine&r." + "{quests.development.hull_mv.desc.1}" "{@pagebreak}" - "&l&3Lore:&r&o In Omnifactory, and in previous Gregicality, this circuit line was called &9Refined&r and was standardized like further tiers." + "{quests.development.hull_mv.desc.2}" ] hide_dependency_lines: true icon: "gtceu:mv_machine_hull" id: "5E4FBB2287D9E635" progression_mode: "linear" - size: 0.85d - subtitle: "Integrated Dynamics" - title: "Craftable in &bMV&r" + size: 1.0d + subtitle: "{quests.development.hull_mv.subtitle}" + title: "{quests.development.hull_mv.title}" x: 1.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -358,23 +374,18 @@ "38DE506FF5B32031" "5063FDFFBE3E4855" "14D277A164202FF8" - "4AFD3073C731A1E4" "5E76D4C24026157D" ] - description: [ - "&eMicro&r Circuits are where the &3Cleanroom&r becomes a requirement to progress." - "" - "Don't get caught out by the &aMainframe&r - it requires a &3HV Circuit Assembler&r." - ] + description: ["{quests.development.hull_hv.desc}"] hide_dependency_lines: true icon: "gtceu:hv_machine_hull" id: "1D717E742E50A6BD" progression_mode: "linear" - size: 0.85d - subtitle: "Micro Miners" - title: "Craftable in &bMV&r and &6HV&r" + size: 1.0d + subtitle: "{quests.development.hull_hv.subtitle}" + title: "{quests.development.hull_hv.title}" x: 2.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -383,25 +394,16 @@ "0017FFFAD7CD2EFE" "58BBD540D7D4FF01" ] - description: [ - "This is the &9Nano&r Circuit line." - "" - "Starting from here, circuit progression will follow a pattern:" - "" - "&9-&r Processor" - "&9-&r Assembly" - "&9-&r Cupercomputer" - "&9-&r Mainframe" - ] + description: ["{quests.development.hull_ev.desc}"] hide_dependency_lines: true icon: "gtceu:ev_machine_hull" id: "29C2A82490261F1C" progression_mode: "linear" - size: 0.85d - subtitle: "Nano Age" - title: "Craftable in &5EV&r" + size: 1.0d + subtitle: "{quests.development.hull_ev.subtitle}" + title: "{quests.development.hull_ev.title}" x: 3.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -410,20 +412,16 @@ "698B5F65F2DE4439" "145F71A817C5996E" ] - description: [ - "Welcome to the &9Quantum&r Circuit line." - "" - "You may want to invest in &aPBI&r at this point, as &dAdvanced SMDs&r will skyrocket your circuit production." - ] + description: ["{quests.development.hull_iv.desc}"] hide_dependency_lines: true icon: "gtceu:iv_machine_hull" id: "66A23AC2EE9BC4AE" progression_mode: "linear" - size: 0.85d - subtitle: "GregTech gets Quantum" - title: "Craftable in &1IV&r" + size: 1.0d + subtitle: "{quests.development.hull_iv.subtitle}" + title: "{quests.development.hull_iv.title}" x: 4.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -432,20 +430,16 @@ "47087361D6DE7DCF" "7AE681E2AB31EA0D" ] - description: [ - "This is the &9Crystal&r Circuit line." - "" - "It's locked behind &3Fusion&r." - ] + description: ["{quests.development.hull_luv.desc}"] hide_dependency_lines: true icon: "gtceu:luv_machine_hull" id: "6906121936A688C0" progression_mode: "linear" - size: 0.85d - subtitle: "Crystallisation" - title: "Craftable in &dLuV&r" + size: 1.0d + subtitle: "{quests.development.hull_luv.subtitle}" + title: "{quests.development.hull_luv.title}" x: 5.0d - y: -2.0d + y: -3.0d } { dependencies: [ @@ -454,30 +448,34 @@ "370FC1CDF5F9A9CC" "359121584E056022" ] - description: [ - "This is the &9Wetware&r Circuit line." - "" - "It will be the biggest automation challenge to face in this modpack. Best of luck." - ] + description: ["{quests.development.hull_zpm.desc}"] hide_dependency_lines: true icon: "gtceu:zpm_machine_hull" id: "629E023752317A31" progression_mode: "linear" - size: 0.85d - subtitle: "Soft and Wetware" - title: "Craftable in &cZPM&r" + size: 1.0d + subtitle: "{quests.development.hull_zpm.subtitle}" + title: "{quests.development.hull_zpm.title}" x: 6.0d - y: -2.0d + y: -3.0d } { - dependencies: ["15EC934CE8F4DC86"] - description: ["On this line you can see the Steam, or &8&8ULV&r, equivalents."] + dependencies: [ + "15EC934CE8F4DC86" + "2C35D4E01AEC02AA" + ] + description: ["{quests.development.ulv.desc}"] hide_dependency_lines: true - icon: "gtceu:ulv_machine_hull" + icon: "tfg:ulv_universal_circuit" id: "1C1976238A2FBEE0" progression_mode: "linear" - size: 0.85d - title: "&8ULV&r Circuits" + size: 1.0d + tasks: [{ + id: "2AD889754295F941" + item: "tfg:ulv_universal_circuit" + type: "item" + }] + title: "{quests.development.ulv.title}" x: -1.0d y: -1.0d } @@ -485,22 +483,20 @@ dependencies: [ "5C17BF90DA2AAEEE" "5E76D4C24026157D" + "3D8174C64DDC268B" ] - description: [ - "Circuits along this line are &7LV&r, and are interchangeable in recipes." - "" - "&cElectronic Circuits&r are the \"worst\" in terms of cost and effort required to produce, but you have to start somewhere." - "" - "&eBasic Integrated Processors&r act as a middle layer between &cElectronic Circuits&r and &2Microchip Processors.&r" - "" - "Finally, &2Microchip Processors&r will be the best option for the rest of the playthrough." - ] + description: ["{quests.development.lv.desc}"] hide_dependency_lines: true - icon: "gtceu:lv_machine_casing" + icon: "tfg:lv_universal_circuit" id: "7707E5B061A7FFF7" progression_mode: "linear" - size: 0.85d - title: "&7LV&r Circuits" + size: 1.0d + tasks: [{ + id: "4149ADB96051A419" + item: "tfg:lv_universal_circuit" + type: "item" + }] + title: "{quests.development.lv.title}" x: -1.0d y: 0.0d } @@ -510,17 +506,18 @@ "38DE506FF5B32031" "0DBC148D92A9F69F" ] - description: [ - "Circuits along this line are &bMV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.mv.desc}"] hide_dependency_lines: true - icon: "gtceu:mv_machine_casing" + icon: "tfg:mv_universal_circuit" id: "45CA8DCA8226945A" progression_mode: "linear" - size: 0.85d - title: "&bMV&r Circuits" + size: 1.0d + tasks: [{ + id: "44666202162E1A4B" + item: "tfg:mv_universal_circuit" + type: "item" + }] + title: "{quests.development.mv.title}" x: -1.0d y: 1.0d } @@ -530,37 +527,38 @@ "5063FDFFBE3E4855" "26394C1290D70AB6" ] - description: [ - "Circuits along this line are &6HV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.hv.desc}"] hide_dependency_lines: true - icon: "gtceu:hv_machine_casing" + icon: "tfg:hv_universal_circuit" id: "54CF2016ED44CC45" progression_mode: "linear" - size: 0.85d - title: "&6HV&r Circuits" + size: 1.0d + tasks: [{ + id: "3FDE8021CF8F3454" + item: "tfg:hv_universal_circuit" + type: "item" + }] + title: "{quests.development.hv.title}" x: -1.0d y: 2.0d } { dependencies: [ "49C1D61741AA288E" - "4AFD3073C731A1E4" "0017FFFAD7CD2EFE" ] - description: [ - "Circuits along this line are &5EV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.ev.desc}"] hide_dependency_lines: true - icon: "gtceu:ev_machine_casing" + icon: "tfg:ev_universal_circuit" id: "2A9ECD745E15A5D8" progression_mode: "linear" - size: 0.85d - title: "&5EV&r Circuits" + size: 1.0d + tasks: [{ + id: "1812896EEEA3FE5B" + item: "tfg:ev_universal_circuit" + type: "item" + }] + title: "{quests.development.ev.title}" x: -1.0d y: 3.0d } @@ -571,17 +569,18 @@ "14D277A164202FF8" "5CC9B0E832545569" ] - description: [ - "Circuits along this line are &1IV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - ] + description: ["{quests.development.iv.desc}"] hide_dependency_lines: true - icon: "gtceu:iv_machine_casing" + icon: "tfg:iv_universal_circuit" id: "5B0AC445672E14B6" progression_mode: "linear" - size: 0.85d - title: "&1IV&r Circuits" + size: 1.0d + tasks: [{ + id: "5FAB6E6EB15D3ECD" + item: "tfg:iv_universal_circuit" + type: "item" + }] + title: "{quests.development.iv.title}" x: -1.0d y: 4.0d } @@ -592,21 +591,18 @@ "145F71A817C5996E" "58BBD540D7D4FF01" ] - description: [ - "Circuits along this line are &dLuV&r, and are interchangeable in recipes." - "" - "The pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce." - "" - "Make sure to set up &3wetware board production&r as soon as possible! These take a &6very long time&r to make." - "" - "It's &dLuV&r, not &4LUV&r." - ] + description: ["{quests.development.luv.desc}"] hide_dependency_lines: true - icon: "gtceu:luv_machine_casing" + icon: "tfg:luv_universal_circuit" id: "140E91C53C30C096" progression_mode: "linear" - size: 0.85d - title: "&dLuV&r Circuits" + size: 1.0d + tasks: [{ + id: "0DAA2B1A9C206D9A" + item: "tfg:luv_universal_circuit" + type: "item" + }] + title: "{quests.development.luv.title}" x: -1.0d y: 5.0d } @@ -616,13 +612,18 @@ "327C3E02CD751453" "7AE681E2AB31EA0D" ] - description: ["Circuits along this line are &cZPM&r, and are interchangeable in recipes."] + description: ["{quests.development.zpm.desc}"] hide_dependency_lines: true - icon: "gtceu:zpm_machine_casing" + icon: "tfg:zpm_universal_circuit" id: "2E00E10D4E92F64D" progression_mode: "linear" - size: 0.85d - title: "&cZPM&r Circuits" + size: 1.0d + tasks: [{ + id: "12D2A967F5348D7C" + item: "tfg:zpm_universal_circuit" + type: "item" + }] + title: "{quests.development.zpm.title}" x: -1.0d y: 6.0d } @@ -631,75 +632,78 @@ "79E4E53E9DF45549" "359121584E056022" ] - description: ["Circuits along this line are &3UV&r, and are interchangeable for each other."] + description: ["{quests.development.uv.desc}"] hide_dependency_lines: true - icon: "gtceu:uv_machine_casing" + icon: "tfg:uv_universal_circuit" id: "35EFFA6C85EFCA58" progression_mode: "linear" - size: 0.85d - title: "&3UV&r Circuits" + size: 1.0d + tasks: [{ + id: "100577EC5C3F37C4" + item: "tfg:uv_universal_circuit" + type: "item" + }] + title: "{quests.development.uv.title}" x: -1.0d y: 7.0d } { dependencies: ["3B49BD004F38E1A2"] - description: [ - "Congratulations! You've reached the end of the circuit progression." - "" - "The only &4UHV&r circuit is the &6Wetware Mainframe&r, which is used for crafting some endgame stuff." - ] + description: ["{quests.development.uhv.desc}"] hide_dependency_lines: true - icon: "gtceu:uhv_machine_casing" + icon: "tfg:uhv_universal_circuit" id: "177ADFFD33DDA624" progression_mode: "linear" - size: 0.85d - title: "&4UHV&r Circuits" + size: 1.0d + tasks: [{ + id: "3E4D08045C74E4B8" + item: "tfg:uhv_universal_circuit" + type: "item" + }] + title: "{quests.development.uhv.title}" x: -1.0d y: 8.0d } { dependencies: ["5B2696206205CB2E"] id: "70432F650591353C" - shape: "rsquare" - size: 0.66d + shape: "square" + size: 1.0d tasks: [{ id: "77875BBDC0A937A9" item: "gtceu:cupronickel_ingot" type: "item" }] - x: -1.0d - y: -4.0d + x: 11.0d + y: -3.0d } { - dependencies: [ - "2AD44111B9B39C90" - "4A92AFD2532EED26" + description: [ + "{quests.development.explanation.desc.1}" + "{@pagebreak}" + "{quests.development.explanation.desc.2}" + "{@pagebreak}" + "{quests.development.explanation.desc.3}" ] - id: "66805BB78A828C00" - shape: "rsquare" - size: 0.66d + icon: { + Count: 1 + id: "gtceu:programmed_circuit" + tag: { + Configuration: 0 + } + } + id: "78885A5847FAE785" + subtitle: "{quests.development.explanation.subtitle}" tasks: [{ - id: "76206DC9E7ABD07A" - item: "gtceu:kanthal_ingot" - type: "item" + id: "629C40E1C85EC9EC" + title: "{quests.development.explanation.task}" + type: "checkmark" }] - x: 0.0d - y: -4.0d - } - { - dependencies: ["6958029B5514D4EC"] - id: "1CBA5477CB7C45E7" - shape: "rsquare" - size: 0.66d - tasks: [{ - id: "1104AC52E0A0A472" - item: "gtceu:nichrome_ingot" - type: "item" - }] - x: 1.0d - y: -4.0d + title: "{quests.development.explanation.title}" + x: -1.0d + y: -3.0d } ] - subtitle: ["A step forward is always rewarding"] - title: "Development table" + subtitle: ["{quests.development.subtitle}"] + title: "{quests.development}" } diff --git a/config/ftbquests/quests/chapters/questsmetallurgy.snbt b/config/ftbquests/quests/chapters/questsmetallurgy.snbt index 1427e9b64..284f43c5c 100644 --- a/config/ftbquests/quests/chapters/questsmetallurgy.snbt +++ b/config/ftbquests/quests/chapters/questsmetallurgy.snbt @@ -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" diff --git a/config/ftbquests/quests/chapters/questssteam_age.snbt b/config/ftbquests/quests/chapters/questssteam_age.snbt index e6c121a2c..29d5fa410 100644 --- a/config/ftbquests/quests/chapters/questssteam_age.snbt +++ b/config/ftbquests/quests/chapters/questssteam_age.snbt @@ -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}"] diff --git a/config/ftbquests/quests/chapters/queststfc_tips.snbt b/config/ftbquests/quests/chapters/queststfc_tips.snbt index 855826efa..138c07991 100644 --- a/config/ftbquests/quests/chapters/queststfc_tips.snbt +++ b/config/ftbquests/quests/chapters/queststfc_tips.snbt @@ -6,7 +6,12 @@ icon: "minecraft:apple" id: "5D74D1A68158F29E" order_index: 1 - quest_links: [ ] + quest_links: [{ + id: "1AD1F9822B738105" + linked_quest: "2E36E5755B2F551C" + x: 2.0d + y: 4.0d + }] quests: [ { dependencies: ["427814F6E9386772"] @@ -1133,6 +1138,7 @@ "4891E995D3EC2BD1" "5D865179941E7B3A" ] + dependency_requirement: "one_completed" description: ["{quests.tfg_tips.create_sticky_resin.desc}"] id: "6FFD4990FF07078A" size: 1.0d @@ -2064,23 +2070,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 @@ -2315,10 +2305,7 @@ y: 9.5d } { - dependencies: [ - "2D959136A5FC5F46" - "56CA2EB7812529C5" - ] + dependencies: ["2D959136A5FC5F46"] description: ["{quests.tfg_tips.lamps.desc}"] id: "037CDA933FBE2CBE" subtitle: "{quests.tfg_tips.lamps.subtitle}" @@ -4289,9 +4276,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" @@ -4311,7 +4298,7 @@ type: "item" } ] - title: "{quests.tfg_tips.grapple_upgrade_length.title}" + title: "{quests.tfg_tips.grapple_length.title}" x: -17.0d y: 4.5d } @@ -4337,7 +4324,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: [{ @@ -4526,6 +4517,314 @@ x: -13.5d y: 6.5d } + { + description: [ + "&3Long-Distance Item Pipes&r can be used to send items across great distances. Place one endpoint at each end, and connect them with pipeline blocks." + "" + "These pipes instantly transfer from the input side to the output side." + "" + "They also have a minimum distance between pipe endpoints, so you can't use these for short-range operations." + ] + icon: "gtceu:long_distance_item_pipeline_endpoint" + id: "22B0E30FF38145E7" + shape: "square" + size: 1.0d + subtitle: "Wondering how to move those ores around?" + tasks: [ + { + count: 2L + id: "7D5959A062BEE77C" + item: "gtceu:long_distance_item_pipeline_endpoint" + type: "item" + } + { + id: "30A1D0C682D0FC2E" + item: "gtceu:long_distance_item_pipeline" + type: "item" + } + ] + title: "Long-Distance Items" + x: 5.5d + y: 2.0d + } + { + dependencies: ["02FDECC931B5E8EF"] + dependency_requirement: "one_completed" + description: [ + "The &aPortable Scanner&r, or &aTricorder&r, is GTCEu's debug tool." + "" + "Using it will show you a block's details, the details of the energy network, its current status and contents, and its impact on performance." + "" + "It'll also display a percentage of fluid remaining in the fluid vein for the &3Fluid Rigs&r." + "{@pagebreak}" + "&l&3Lore:&r&o This little useful device comes from GregTech 5. It was extremely useful in the early days, because very little information (basically nothing) was given by GUIs or WAILA." + ] + id: "58D40A430654C997" + shape: "square" + size: 1.0d + subtitle: "For the nosiest GregTech players" + tasks: [{ + id: "1E2E112D32893B8D" + item: "gtceu:portable_scanner" + type: "item" + }] + title: "Tricorder" + x: 3.0d + y: 6.0d + } + { + description: [ + "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks." + "" + "These pipes instantly transfer from the input side to the output side." + "" + "They also have a minimum distance between pipe endpoints, so you can't use these for short-range operations." + "{@pagebreak}" + "These pipes have a reputation of being &4buggy&r to set up. If they don't seem to work at first, try rotating the endpoints with a &eWrench&r." + ] + icon: "gtceu:long_distance_fluid_pipeline_endpoint" + id: "0B1AA0D4CEBD06A8" + optional: true + shape: "square" + size: 1.0d + subtitle: "Wondering how to move that oil around?" + tasks: [ + { + count: 2L + id: "2B2586817A16F100" + item: "gtceu:long_distance_fluid_pipeline_endpoint" + type: "item" + } + { + id: "246FB107C0C2B28C" + item: "gtceu:long_distance_fluid_pipeline" + type: "item" + } + ] + title: "Long-Distance Pipeline" + x: 3.5d + y: 2.0d + } + { + dependencies: ["74AE7DB845B88CF3"] + description: [ + "In this quest, we'll bestow upon you &5cursed wisdom&r... the ability to easily automate the Electrolyzer." + "" + "The &9Smart Item Filter&r is a filter that recognises Recipe Maps. When placed on the side of a machine, you can set it to \"&3Electrolyzer&r\" to allow insertion of electrolyzable items specifically. You heard that right - no need to filter manually!" + "" + "Oh, and it only gets &abetter&r. If you combine this bad boy with a &aRobot Arm&r, it'll only supply the &6exact amount&r of items required for a successful recipe to the machine." + "{@pagebreak}" + "Place the &aRobot Arm&r on your Electrolyzer, open its GUI, then place the &9Smart Filter&r inside. Ensure that the Smart Filter is set to Electrolyzer." + "" + "Next, configure it to &d&lImport&r and &d&lSupply Exact&r. Finally, attach any inventory &7(a chest will do)&r onto the side where you placed the &aRobot Arm&r. Ta-dah! You've figured out how to handle &6all&r Electrolyzer recipes!" + "" + "What about the output of the &3Electrolyzer&r? You may want to route the Fluids to several Tanks - or even &3Super Tanks&r if you've gotten that far. We highly recommend that you avoid any methods involving voiding Fluids.&7.&8. except for Water for obvious reasons." + "{@pagebreak}" + "&9Note:&r The Robot Arm has to facilitate the item transfer for its filtering functionality to work! Inserting directly into the machine &7(for instance, pushing with a Hopper!)&r will ignore the Robot Arm's &dSupply Exact&r setting." + ] + icon: "gtceu:item_smart_filter" + id: "222295CD03AF00DC" + shape: "square" + size: 1.0d + subtitle: "Knock, knock - who's that? It's MENSA!" + tasks: [{ + id: "11EC9A6D9E2C4B7E" + item: "gtceu:item_smart_filter" + type: "item" + }] + title: "200IQ" + x: 9.0d + y: 3.0d + } + { + dependencies: ["74AE7DB845B88CF3"] + description: [ + "This is a guide on how to automatically route &lall&r your Hot Ingots to your Chemical Bath, while keeping everything automated in tip-top shape." + "" + "The cheap way would be to use filters, and manually add Hot Ingots one by one... which is so boring! Let's try the fun option." + "" + "Install an &aItem Tag Filter&r Cover on the side of your &3Chemical Bath&r, open it and set it to whitelist \"&e&lhot_ingots&r\"." + "" + "From here, you can route with &9any logistics system&r of your choice." + "{@pagebreak}" + "Connect the output of your &3EBF(s)&r to the input of your &3Chemical Bath&r and the output dump (Chest or Crate)." + "You can also have a &dRestrictive Pipe&r in front of the output dump to ensure the Chemical Bath will be prioritized." + "" + "&l&9Note:&r If you wish to know more tags for more automation setups, they will display if you press Shift when hovering over an item. For instance, an item tagged with &e&o#forge:plates/copper&r would be filtered as &e&lplates/copper&r." + "" + "&9Other Note:&r The Item Tag Filter partially supports &dregex&r. Hover over the info icon for more information." + ] + icon: "gtceu:item_tag_filter" + id: "7C1FD81C5DCFB74E" + shape: "square" + size: 1.0d + subtitle: "Stop burning your darn hands!" + tasks: [ + { + id: "34DEDF3B7F0DB3BC" + item: "gtceu:item_tag_filter" + type: "item" + } + { + id: "35CAF01644B8D9A2" + item: "gtceu:fluid_tag_filter" + type: "item" + } + ] + title: "250IQ" + x: 9.0d + y: 4.0d + } + { + dependencies: ["02FDECC931B5E8EF"] + description: [ + "In theory, Crates are flat upgrades to Chests. A single block space that stores more items - what more could you ask for?" + "" + "Unfortunately, there's a small downside - Crates do not support item movement shortcuts well. We plan on fixing this in the long-term." + "" + "Where they shine however is the fact that they &6accept Covers&r, making them perfect candidates for buffers in automation." + ] + icon: "gtceu:bronze_crate" + id: "6702D52922D85C0D" + shape: "square" + size: 1.0d + subtitle: "Earlygame buffering" + tasks: [{ + id: "2F8D9ACDF8EB5B8D" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:wood_crate)item(gtceu:bronze_crate)item(gtceu:steel_crate)item(gtceu:aluminium_crate)item(gtceu:stainless_steel_crate)item(gtceu:titanium_crate)item(gtceu:tungsten_steel_crate))" + } + } + type: "item" + }] + title: "GregTech Storage" + x: 6.5d + y: 3.0d + } + { + dependencies: ["6702D52922D85C0D"] + description: ["With that tape you wil be able to move around the crate. The main advantage? You can put anything in a crate, weight won't be an issue here."] + icon: "gtceu:basic_tape" + id: "36B64597F76625ED" + shape: "square" + size: 1.0d + subtitle: "Moving stuff around" + tasks: [{ + id: "1257FC299E957859" + item: "gtceu:basic_tape" + type: "item" + }] + title: "Tape for Crate" + x: 6.5d + y: 2.0d + } + { + dependencies: ["02FDECC931B5E8EF"] + description: ["With &5GregTech&r, you get access to various &6filters&r that help you ease into &aautomation&r. All of them are compatible with different &dCovers&r, which you'll learn more about during the &7LV&r Chapter.\\n\\nHere, we're introducing two more specific filters that you might find &bhandy&r in certain situations.\\n\\nTo use a filter, simply apply it as a &dCover&r on any &5GT Machine&r or &6pipe&r."] + icon: "gtceu:item_filter" + id: "74AE7DB845B88CF3" + subtitle: "filters" + tasks: [{ + id: "268110D7B7999A7B" + title: "Filters" + type: "checkmark" + }] + x: 8.0d + y: 3.5d + } + { + dependencies: ["02FDECC931B5E8EF"] + description: ["You may have realized that most &eMultiblocks&r require a &6Maintenance Hatch&r. Until &6HV&r, where you can get an &aAutomatic Maintenance Hatch&r, you can use this item to fix the hatch without needing to use all of your maintenance tools.\\n\\nIt can be really useful if you don't want to invest in an &aAuto Maintenance Hatch&r yet, or if you're simply &cnot there yet&r."] + id: "179E89C50E900DC0" + tasks: [{ + id: "7D2E6F5F843864DE" + item: "gtceu:duct_tape" + type: "item" + }] + x: 4.0d + y: 6.0d + } + { + description: ["The &6Nano Saber&r is a powerful weapon you’ll be able to unlock once you reach &5EV&r. Simply use &dShift + Right-Click&r to activate the &cbzzzzz mode&r."] + id: "7A4C6930EF68646E" + tasks: [{ + id: "41A7611367BBD2A7" + item: "gtceu:nano_saber" + type: "item" + }] + x: 10.0d + y: 4.5d + } + { + description: ["The &6Item Magnet&r is exactly what you'd expect β€” a magnet that pulls nearby &6items&r straight to you. &aVery useful&r. What more could you ask for?"] + id: "49D2EFFFC15563F9" + tasks: [{ + id: "6290D18A38A1583C" + item: { + Count: 1 + id: "ftbfiltersystem:smart_filter" + tag: { + "ftbfiltersystem:filter": "or(item(gtceu:lv_item_magnet)item(gtceu:hv_item_magnet))" + } + } + type: "item" + }] + x: 10.0d + y: 6.5d + } + { + dependencies: ["02FDECC931B5E8EF"] + description: ["&bThe Terminal&r has one main purpose, and &awe highly encourage you to craft it&r.\\n\\nBuilding all these &eMultiblocks&r can be a bit &cintimidating&r, right? Well, here's a tip: use &dShift + Right-Click&r on any &6Multiblock Controller&r to &aautomatically assemble the entire structure&r!\\n\\nYou might need to &emove around some buses and hatches&r to suit your setup, but overall, this feature will save you a &alot of time&r."] + id: "2F6C9A987865B966" + tasks: [{ + id: "6A86F6C3566828BF" + item: "gtceu:terminal" + type: "item" + }] + x: 2.0d + y: 3.0d + } + { + description: ["The &6Face Mask&r will protect you from &cinhaling dangerous dust&r. It’s quite &aeasy to craft&r and should prevent issues when working with &5arsenic&r."] + id: "361AC06D62D9BCCF" + tasks: [{ + id: "7AC3F8AF754C76E2" + item: { + Count: 1 + id: "gtceu:face_mask" + tag: { + Damage: 0 + } + } + type: "item" + }] + x: 7.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}" diff --git a/config/ftbquests/quests/data.snbt b/config/ftbquests/quests/data.snbt index 33d92ad39..f00b49de4 100644 --- a/config/ftbquests/quests/data.snbt +++ b/config/ftbquests/quests/data.snbt @@ -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 } diff --git a/config/gtceu.yaml b/config/gtceu.yaml index acc5d5331..7cbef731e 100644 --- a/config/gtceu.yaml +++ b/config/gtceu.yaml @@ -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 diff --git a/config/inventorysorter-client.toml b/config/inventorysorter-client.toml deleted file mode 100644 index d06cb08bd..000000000 --- a/config/inventorysorter-client.toml +++ /dev/null @@ -1,8 +0,0 @@ - -#Inventory sorter modules -[modules] - #Sorting module - sortingmodule = true - #Wheel move module - wheelmovemodule = true - diff --git a/config/storagedrawers-client.toml b/config/storagedrawers-client.toml deleted file mode 100644 index 52196c767..000000000 --- a/config/storagedrawers-client.toml +++ /dev/null @@ -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 - diff --git a/config/storagedrawers-common.toml b/config/storagedrawers-common.toml deleted file mode 100644 index 3dacccf2e..000000000 --- a/config/storagedrawers-common.toml +++ /dev/null @@ -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 - diff --git a/config/tfc_punishment_for_death-common.toml b/config/tfc_punishment_for_death-common.toml new file mode 100644 index 000000000..5eca91ce8 --- /dev/null +++ b/config/tfc_punishment_for_death-common.toml @@ -0,0 +1,58 @@ + +#General Settings +[general] + #Hunger handling mode: TFC (default), MANUAL (set value), KEEP (preserve after death) + #Allowed Values: TFC, MANUAL, KEEP + hungerMode = "KEEP" + #Thirst handling mode: TFC (default), MANUAL (set value), KEEP (preserve after death) + #Allowed Values: TFC, MANUAL, KEEP + thirstMode = "TFC" + #Health handling mode: TFC (default), MANUAL (set value) + #Allowed Values: TFC, MANUAL + healthMode = "TFC" + #Manual food level [1-20] + #Active only when hungerMode = MANUAL + #Range: 1 ~ 20 + food_level = 6 + #Manual thirst level [5-100] + #Active only when thirstMode = MANUAL + #Range: 5 ~ 100 + thirst_level = 25 + #Manual health value [1-100] + #Active only when healthMode = MANUAL + #Range: 1 ~ 100 + health = 10 + +#Death Penalties +[penalties] + #Base level for all applied effects (0 = I level, max 5) + #Range: 0 ~ 5 + effect_amplifier = 0 + #Cooldown in minutes before corpse interaction (0-60) + #Range: 0 ~ 60 + corpse_cooldown = 0 + #Thirst effect duration in seconds (0-600) + #Range: 0 ~ 600 + thirst_duration = 30 + #Exhaustion effect duration in seconds (0-600) + #Range: 0 ~ 600 + exhausted_duration = 30 + #Pinned effect duration in seconds (0-600) + #Range: 0 ~ 600 + pinned_duration = 0 + #Blindness effect duration in seconds (0-600) + #Range: 0 ~ 600 + blindness_duration = 0 + #Nausea effect duration in seconds (0-600) + #Range: 0 ~ 600 + confusion_duration = 10 + #Hunger effect duration in seconds (0-600) + #Range: 0 ~ 600 + hunger_duration = 0 + #Slowness effect duration in seconds (0-600) + #Range: 0 ~ 600 + movement_duration = 0 + #Darkness effect duration in seconds (0-600) + #Range: 0 ~ 600 + darkness_duration = 0 + diff --git a/config/tfcastikorcarts-common.toml b/config/tfcastikorcarts-common.toml index fbc9f46a5..f202e1249 100644 --- a/config/tfcastikorcarts-common.toml +++ b/config/tfcastikorcarts-common.toml @@ -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 diff --git a/config/tfccaelum-common.toml b/config/tfccaelum-common.toml new file mode 100644 index 000000000..f56f08cc2 --- /dev/null +++ b/config/tfccaelum-common.toml @@ -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 + diff --git a/config/tfchotornot-common.toml b/config/tfchotornot-common.toml index 7e77ea351..ed10d7c44 100644 --- a/config/tfchotornot-common.toml +++ b/config/tfchotornot-common.toml @@ -10,7 +10,7 @@ yeet = true #This sets the temperature when a hot object should start burning the player (in celsius). #Range: > -2147483648 - hotTemperature = 300 + hotTemperature = 500 #This sets the temperature when a cold object should add effects to the player (in celsius). #Range: > -2147483648 coldTemperature = -20 @@ -25,10 +25,10 @@ itemTemperatureModifier = 2.0 #How often the heat of your tongs, mittens or potholders should increase. Higher value -> slower. Too high and items won't heat up. #Range: > 1 - itemHeatTimeInterval = 1 + itemHeatTimeInterval = 4 #How often the durability of your tongs, mittens or potholders should take damage. Higher value -> slower. Holding multiple hot items will damage your insulating items faster! #Range: > 1 - itemDamageTimeInterval = 10 + itemDamageTimeInterval = 60 #Durability for wooden tongs. #Range: > 0 woodenTongsDurability = 250 diff --git a/config/tfcimprovedbadlands-common.toml b/config/tfcimprovedbadlands-common.toml new file mode 100644 index 000000000..57588d479 --- /dev/null +++ b/config/tfcimprovedbadlands-common.toml @@ -0,0 +1,18 @@ + +[General] + # + # Toggles generation of sand layers. Disabling this (false) will shorten world generation time. + enableSandLayers = false + # + # Maximum rainfall for where sand layers can generate. Set to 500 to enable everywhere. + #Range: 4.9E-324 ~ 1.7976931348623157E308 + sandLayerRainfall = 100.0 + # + # The center point (rainfall) at which some biomes will start to turn into sand dunes. Set to any arbitrary large or low number to disable entirely. + #Range: > -2147483648 + duneThreshold = 20 + # + # The center point (rainfall) at which badland biomes will start to turn into their normal terrain. Set to any arbitrary large or low number to disable entirely. + #Range: > -2147483648 + badlandsThreshold = 140 + diff --git a/config/visual_workbench.json b/config/visual_workbench.json index e99524fcb..2ccd212e7 100644 --- a/config/visual_workbench.json +++ b/config/visual_workbench.json @@ -1,276 +1,37 @@ { - "__comment": "Crafting table blocks to enable Visual Workbench support for.", - "values": [ - "minecraft:crafting_table", - "blue_skies:bluebright_crafting_table", - "blue_skies:starlit_crafting_table", - "blue_skies:frostbright_crafting_table", - "blue_skies:lunar_crafting_table", - "blue_skies:dusk_crafting_table", - "blue_skies:maple_crafting_table", - "blue_skies:cherry_crafting_table", - "blocksplus:spruce_crafting_table", - "blocksplus:birch_crafting_table", - "blocksplus:jungle_crafting_table", - "blocksplus:acacia_crafting_table", - "blocksplus:dark_oak_crafting_table", - "blocksplus:crimson_crafting_table", - "blocksplus:warped_crafting_table", - "blocksplus:bamboo_crafting_table", - "blocksplus:mushroom_crafting_table", - "mctb:spruce_crafting_table", - "mctb:birch_crafting_table", - "mctb:acacia_crafting_table", - "mctb:jungle_crafting_table", - "mctb:dark_oak_crafting_table", - "mctb:warped_crafting_table", - "mctb:crimson_crafting_table", - "mctb:cherry_crafting_table", - "mctb:dead_crafting_table", - "mctb:fir_crafting_table", - "mctb:hellbark_crafting_table", - "mctb:jacaranda_crafting_table", - "mctb:magic_crafting_table", - "mctb:mahogany_crafting_table", - "mctb:palm_crafting_table", - "mctb:redwood_crafting_table", - "mctb:umbran_crafting_table", - "mctb:willow_crafting_table", - "mctb:azalea_crafting_table", - "mctb:blossom_crafting_table", - "betternether:rubeus_crafting_table", - "betternether:nether_sakura_crafting_table", - "betternether:crafting_table_crimson", - "betternether:wart_crafting_table", - "betternether:crafting_table_warped", - "betternether:anchor_tree_crafting_table", - "betternether:willow_crafting_table", - "betternether:nether_mushroom_crafting_table", - "betternether:stalagnate_crafting_table", - "betternether:mushroom_fir_crafting_table", - "betternether:nether_reed_crafting_table", - "betterend:helix_tree_crafting_table", - "betterend:mossy_glowshroom_crafting_table", - "betterend:end_lotus_crafting_table", - "betterend:pythadendron_crafting_table", - "betterend:jellyshroom_crafting_table", - "betterend:tenanea_crafting_table", - "betterend:dragon_tree_crafting_table", - "betterend:lucernia_crafting_table", - "betterend:lacugrove_crafting_table", - "betterend:umbrella_tree_crafting_table", - "betterendforge:helix_tree_crafting_table", - "betterendforge:mossy_glowshroom_crafting_table", - "betterendforge:end_lotus_crafting_table", - "betterendforge:pythadendron_crafting_table", - "betterendforge:jellyshroom_crafting_table", - "betterendforge:tenanea_crafting_table", - "betterendforge:dragon_tree_crafting_table", - "betterendforge:lucernia_crafting_table", - "betterendforge:lacugrove_crafting_table", - "betterendforge:umbrella_tree_crafting_table", - "crumbs:spruce_crafting_table", - "crumbs:birch_crafting_table", - "crumbs:jungle_crafting_table", - "crumbs:acacia_crafting_table", - "crumbs:dark_oak_crafting_table", - "crumbs:crimson_crafting_table", - "crumbs:warped_crafting_table", - "byg:aspen_crafting_table", - "byg:baobab_crafting_table", - "byg:blue_enchanted_crafting_table", - "byg:cherry_crafting_table", - "byg:cika_crafting_table", - "byg:cypress_crafting_table", - "byg:ebony_crafting_table", - "byg:fir_crafting_table", - "byg:green_enchanted_crafting_table", - "byg:holly_crafting_table", - "byg:jacaranda_crafting_table", - "byg:mahogany_crafting_table", - "byg:mangrove_crafting_table", - "byg:maple_crafting_table", - "byg:pine_crafting_table", - "byg:rainbow_eucalyptus_crafting_table", - "byg:redwood_crafting_table", - "byg:skyris_crafting_table", - "byg:willow_crafting_table", - "byg:witch_hazel_crafting_table", - "byg:zelkova_crafting_table", - "byg:sythian_crafting_table", - "byg:embur_crafting_table", - "byg:palm_crafting_table", - "byg:lament_crafting_table", - "byg:bulbis_crafting_table", - "byg:nightshade_crafting_table", - "byg:ether_crafting_table", - "byg:imparius_crafting_table", - "vct:spruce_crafting_table", - "vct:birch_crafting_table", - "vct:jungle_crafting_table", - "vct:acacia_crafting_table", - "vct:dark_oak_crafting_table", - "vct:mangrove_crafting_table", - "vct:crimson_crafting_table", - "vct:warped_crafting_table", - "vct:bop_cherry_crafting_table", - "vct:bop_dead_crafting_table", - "vct:bop_fir_crafting_table", - "vct:bop_hellbark_crafting_table", - "vct:bop_jacaranda_crafting_table", - "vct:bop_magic_crafting_table", - "vct:bop_mahogany_crafting_table", - "vct:bop_palm_crafting_table", - "vct:bop_redwood_crafting_table", - "vct:bop_umbran_crafting_table", - "vct:bop_willow_crafting_table", - "vct:canopy_crafting_table", - "vct:darkwood_crafting_table", - "vct:twilight_mangrove_crafting_table", - "vct:minewood_crafting_table", - "vct:sortingwood_crafting_table", - "vct:timewood_crafting_table", - "vct:transwood_crafting_table", - "vct:twilight_oak_crafting_table", - "vct:aspen_crafting_table", - "vct:grimwood_crafting_table", - "vct:kousa_crafting_table", - "vct:morado_crafting_table", - "vct:rosewood_crafting_table", - "vct:yucca_crafting_table", - "vct:maple_crafting_table", - "vct:bamboo_crafting_table", - "vct:azalea_crafting_table", - "vct:poise_crafting_table", - "vct:cherry_crafting_table", - "vct:willow_crafting_table", - "vct:wisteria_crafting_table", - "vct:driftwood_crafting_table", - "vct:river_crafting_table", - "vct:jacaranda_crafting_table", - "vct:redbud_crafting_table", - "vct:cypress_crafting_table", - "vct:brown_mushroom_crafting_table", - "vct:red_mushroom_crafting_table", - "vct:glowshroom_crafting_table", - "vct:twisted_crafting_table", - "vct:petrified_crafting_table", - "vct:eco_azalea_crafting_table", - "vct:eco_flowering_azalea_crafting_table", - "vct:eco_coconut_crafting_table", - "vct:eco_walnut_crafting_table", - "vct:fairy_ring_mushroom_crafting_table", - "vct:azure_crafting_table", - "vct:araucaria_crafting_table", - "vct:heidiphyllum_crafting_table", - "vct:liriodendrites_crafting_table", - "vct:metasequoia_crafting_table", - "vct:protojuniperoxylon_crafting_table", - "vct:protopiceoxylon_crafting_table", - "vct:zamites_crafting_table", - "vct:quark_azalea_crafting_table", - "vct:quark_blossom_crafting_table", - "vct:grongle_crafting_table", - "vct:smogstem_crafting_table", - "vct:wigglewood_crafting_table", - "vct:congealed_crafting_table", - "vct:echo_crafting_table", - "vct:ebony_crafting_table", - "vct:pream_crafting_table", - "vct:verdant_crafting_table", - "vct:jaboticaba_crafting_table", - "vct:ramboutan_crafting_table", - "vct:bm_ancient_oak_crafting_table", - "vct:bm_blighted_balsa_crafting_table", - "vct:bm_swamp_cypress_crafting_table", - "vct:bm_willow_crafting_table", - "vct:rue_baobab_crafting_table", - "vct:rue_blackwood_crafting_table", - "vct:rue_cherry_crafting_table", - "vct:rue_cypress_crafting_table", - "vct:rue_dead_crafting_table", - "vct:rue_eucalyptus_crafting_table", - "vct:rue_joshua_crafting_table", - "vct:rue_larch_crafting_table", - "vct:rue_maple_crafting_table", - "vct:rue_mauve_crafting_table", - "vct:rue_palm_crafting_table", - "vct:rue_pine_crafting_table", - "vct:rue_redwood_crafting_table", - "vct:rue_willow_crafting_table", - "variantcraftingtables:acacia_crafting_table", - "variantcraftingtables:birch_crafting_table", - "variantcraftingtables:dark_oak_crafting_table", - "variantcraftingtables:jungle_crafting_table", - "variantcraftingtables:spruce_crafting_table", - "variantcraftingtables:mangrove_crafting_table", - "variantcraftingtables:crimson_crafting_table", - "variantcraftingtables:warped_crafting_table", - "variantcraftingtables:rubber_crafting_table", - "variantcraftingtables:bamboo_crafting_table", - "variantcraftingtables:charred_crafting_table", - "variantcraftingtables:legacy_crafting_table", - "variantcraftingtables:white_oak_crafting_table", - "variantcraftingtables:herringbone_acacia_crafting_table", - "variantcraftingtables:herringbone_birch_crafting_table", - "variantcraftingtables:herringbone_dark_oak_crafting_table", - "variantcraftingtables:herringbone_jungle_crafting_table", - "variantcraftingtables:herringbone_oak_crafting_table", - "variantcraftingtables:herringbone_spruce_crafting_table", - "variantcraftingtables:herringbone_white_oak_crafting_table", - "variantcraftingtables:herringbone_bamboo_crafting_table", - "variantcraftingtables:herringbone_charred_crafting_table", - "variantcraftingtables:herringbone_crimson_crafting_table", - "variantcraftingtables:herringbone_warped_crafting_table", - "variantcraftingtables:cherry_oak_crafting_table", - "variantcraftingtables:dark_amaranth_crafting_table", - "variantcraftingtables:palm_crafting_table", - "variantcraftingtables:cypress_crafting_table", - "variantcraftingtables:dragons_blood_crafting_table", - "variantcraftingtables:elder_crafting_table", - "variantcraftingtables:juniper_crafting_table", - "variantcraftingtables:dreamwood_crafting_table", - "variantcraftingtables:livingwood_crafting_table", - "variantcraftingtables:mossy_dreamwood_crafting_table", - "variantcraftingtables:mossy_livingwood_crafting_table", - "variantcraftingtables:shimmerwood_crafting_table", - "variantcraftingtables:black_crafting_table", - "variantcraftingtables:blue_crafting_table", - "variantcraftingtables:brown_crafting_table", - "variantcraftingtables:cyan_crafting_table", - "variantcraftingtables:gray_crafting_table", - "variantcraftingtables:green_crafting_table", - "variantcraftingtables:light_blue_crafting_table", - "variantcraftingtables:light_gray_crafting_table", - "variantcraftingtables:lime_crafting_table", - "variantcraftingtables:magenta_crafting_table", - "variantcraftingtables:orange_crafting_table", - "variantcraftingtables:pink_crafting_table", - "variantcraftingtables:purple_crafting_table", - "variantcraftingtables:red_crafting_table", - "variantcraftingtables:white_crafting_table", - "variantcraftingtables:yellow_crafting_table", - "variantcraftingtables:ancient_oak_crafting_table", - "variantcraftingtables:blighted_balsa_crafting_table", - "variantcraftingtables:swamp_cypress_crafting_table", - "variantcraftingtables:willow_crafting_table", - "variantcraftingtables:mango_crafting_table", - "variantcraftingtables:wisteria_crafting_table", - "variantcraftingtables:bamboo_crafting_table_ve", - "variantcraftingtables:redwood_crafting_table", - "variantcraftingtables:azalea_crafting_table", - "variantcraftingtables:coconut_crafting_table", - "variantcraftingtables:flowering_azalea_crafting_table", - "variantcraftingtables:walnut_crafting_table", - "variantcraftingtables:stripped_bamboo_crafting_table", - "variantcraftingtables:crystal_crafting_table", - "variantcraftingtables:golden_oak_crafting_table", - "variantcraftingtables:orange_crafting_table_pl", - "variantcraftingtables:skyroot_crafting_table", - "variantcraftingtables:wisteria_crafting_table_pl", - "variantcraftingtables:cinnamon_crafting_table", - "variantcraftingtables:jade_crafting_table", - "variantcraftingtables:moon_crafting_table", - "variantcraftingtables:shadow_crafting_table" - ] + "__comment": "Crafting table blocks to enable Visual Workbench support for.", + "values": [ + "afc:wood/planks/fig_workbench", + "afc:wood/planks/ironwood_workbench", + "afc:wood/planks/ipe_workbench", + "afc:wood/planks/cypress_workbench", + "afc:wood/planks/teak_workbench", + "afc:wood/planks/tualang_workbench", + "afc:wood/planks/hevea_workbench", + "afc:wood/planks/mahogany_workbench", + "afc:wood/planks/eucalyptus_workbench", + "afc:wood/planks/baobab_workbench", + "beneath:wood/planks/crimson_workbench", + "beneath:wood/planks/warped_workbench", + "tfc:wood/planks/kapok_workbench", + "tfc:wood/planks/hickory_workbench", + "tfc:wood/planks/douglas_fir_workbench", + "tfc:wood/planks/chestnut_workbench", + "tfc:wood/planks/blackwood_workbench", + "tfc:wood/planks/birch_workbench", + "tfc:wood/planks/acacia_workbench", + "tfc:wood/planks/ash_workbench", + "tfc:wood/planks/aspen_workbench", + "tfc:wood/planks/sycamore_workbench", + "tfc:wood/planks/spruce_workbench", + "tfc:wood/planks/sequoia_workbench", + "tfc:wood/planks/rosewood_workbench", + "tfc:wood/planks/pine_workbench", + "tfc:wood/planks/palm_workbench", + "tfc:wood/planks/oak_workbench", + "tfc:wood/planks/maple_workbench", + "tfc:wood/planks/mangrove_workbench", + "tfc:wood/planks/willow_workbench", + "tfc:wood/planks/white_cedar_workbench" + ] } \ No newline at end of file diff --git a/config/visualworkbench-client.toml b/config/visualworkbench-client.toml index 13a2e7913..c0223adf3 100644 --- a/config/visualworkbench-client.toml +++ b/config/visualworkbench-client.toml @@ -1,7 +1,7 @@ #Rotate crafting table contents so they always face the closest player. -rotate_ingredients = true +rotate_ingredients = false #Makes crafting table contents lay flat on the table instead of floating above. -flat_rendering = false +flat_rendering = true #Render the result of the crafting operation in addition to crafting table contents. -render_result = true +render_result = false diff --git a/defaultconfigs/beneath-server.toml b/defaultconfigs/beneath-server.toml new file mode 100644 index 000000000..80b32e383 --- /dev/null +++ b/defaultconfigs/beneath-server.toml @@ -0,0 +1,6 @@ + +[general] + # + # If the sacrifice method should be allowed for getting to the nether, rather than building a portal (requires black steel pickaxe) + allowSacrifice = false + diff --git a/defaultconfigs/create-server.toml b/defaultconfigs/create-server.toml index a3d5e69b6..e387d1cf3 100644 --- a/defaultconfigs/create-server.toml +++ b/defaultconfigs/create-server.toml @@ -130,7 +130,7 @@ #. #Game ticks required for a Fan-based processing recipe to take effect. #Range: > 0 - fanProcessingTime = 150 + fanProcessingTime = 400 #. #Moving Contraptions @@ -292,7 +292,7 @@ gearbox = 0.0 hose_pulley = 0.5 elevator_pulley = 0.5 - mechanical_crafter = 0.25 + mechanical_crafter = 0.125 #. #[in Stress Units] @@ -300,10 +300,10 @@ [kinetics.stressValues.v2.capacity] copper_valve_handle = 2.0 hand_crank = 2.0 - steam_engine = 32.0 + steam_engine = 16.0 creative_motor = 16384.0 - large_water_wheel = 32.0 - water_wheel = 8.0 + large_water_wheel = 16.0 + water_wheel = 4.0 windmill_bearing = 32.0 #. @@ -329,7 +329,7 @@ #[in Blocks] #The maximum distance a hose pulley can draw fluid blocks from. #Range: > 1 - hosePulleyRange = 128 + hosePulleyRange = 256 #. #[in Blocks] #[-1 to disable this behaviour] diff --git a/defaultconfigs/greate-server.toml b/defaultconfigs/greate-server.toml index 570e2e47d..6ffe2115a 100644 --- a/defaultconfigs/greate-server.toml +++ b/defaultconfigs/greate-server.toml @@ -284,7 +284,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - andesiteMaxCapacity = 16 + andesiteMaxCapacity = 32 #. #Settings related to steel tier machines @@ -292,7 +292,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - steelMaxCapacity = 64 + steelMaxCapacity = 128 #. #Settings related to aluminium tier machines @@ -300,7 +300,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - aluminiumMaxCapacity = 256 + aluminiumMaxCapacity = 512 #. #Settings related to stainless steel tier machines @@ -308,7 +308,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - stainlessSteelMaxCapacity = 1024 + stainlessSteelMaxCapacity = 2048 #. #Settings related to titanium tier machines @@ -316,7 +316,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - titaniumMaxCapacity = 4096 + titaniumMaxCapacity = 8192 #. #Settings related to tungstensteel tier machines @@ -324,7 +324,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - tungstensteelMaxCapacity = 16384 + tungstensteelMaxCapacity = 32768 #. #Settings related to palladium tier machines @@ -332,7 +332,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - palladiumMaxCapacity = 65536 + palladiumMaxCapacity = 131072 #. #Settings related to naquadah tier machines @@ -340,7 +340,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - naquadahMaxCapacity = 262144 + naquadahMaxCapacity = 524288 #. #Settings related to darmstadtium tier machines @@ -348,7 +348,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - darmstadtiumMaxCapacity = 1048576 + darmstadtiumMaxCapacity = 2097152 #. #Settings related to neutronium tier machines @@ -356,7 +356,7 @@ fanSpeedMultiplier = 0.75 #. #Configure the max stress a kinetic block of this tier can support. #Range: > -2147483648 - neutroniumMaxCapacity = 2097152 + neutroniumMaxCapacity = 8388608 #. #Fine tune settings related to pumps @@ -368,32 +368,32 @@ fanSpeedMultiplier = 0.75 [kinetics.pumps.pressure] #. #Range: 0.0 ~ 3.4028234663852886E38 - andesitePressure = 4.0 + andesitePressure = 8.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - steelPressure = 16.0 + steelPressure = 32.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - aluminiumPressure = 64.0 + aluminiumPressure = 128.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - stainlessSteelPressure = 256.0 + stainlessSteelPressure = 512.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - titaniumPressure = 1028.0 + titaniumPressure = 2048.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - tungstensteelPressure = 4096.0 + tungstensteelPressure = 8192.0 #. #Range: 0.0 ~ 3.4028234663852886E38 palladiumPressure = 16384.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - naquadahPressure = 65536.0 + naquadahPressure = 32768.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - darmstadtiumPressure = 262144.0 + darmstadtiumPressure = 131072.0 #. #Range: 0.0 ~ 3.4028234663852886E38 - neutroniumPressure = 1048576.0 + neutroniumPressure = 524288.0 diff --git a/kubejs/assets/ad_astra/lang/en_us.json b/kubejs/assets/ad_astra/lang/en_us.json new file mode 100644 index 000000000..1995e0fa3 --- /dev/null +++ b/kubejs/assets/ad_astra/lang/en_us.json @@ -0,0 +1,24 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.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", + "tagprefix.anorthosite": "Anorthosite %s Ore", + "tagprefix.basanite": "Basanite %s Ore", + "tagprefix.syenite": "Syenite %s Ore" +} \ No newline at end of file diff --git a/kubejs/assets/beneath/lang/en_us.json b/kubejs/assets/beneath/lang/en_us.json index 7d988d17a..cdeb75e30 100644 --- a/kubejs/assets/beneath/lang/en_us.json +++ b/kubejs/assets/beneath/lang/en_us.json @@ -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", diff --git a/kubejs/assets/create/lang/en_us.json b/kubejs/assets/create/lang/en_us.json index 5aa93fb5d..6ce3acd87 100644 --- a/kubejs/assets/create/lang/en_us.json +++ b/kubejs/assets/create/lang/en_us.json @@ -1,5 +1,7 @@ { "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.create.dark_oak_window": "Hickory Window", + "block.create.dark_oak_window_pane": "Hickory Window Pane", "block.create.andesite_bars": "Metal Bars", "block.create.andesite_belt_funnel": "Metal Belt Funnel", "block.create.andesite_casing": "Metal Casing", diff --git a/kubejs/assets/createconnected/lang/en_us.json b/kubejs/assets/createconnected/lang/en_us.json new file mode 100644 index 000000000..2c1a83ebf --- /dev/null +++ b/kubejs/assets/createconnected/lang/en_us.json @@ -0,0 +1,5 @@ +{ + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "create_connected:cherry_window": "Fig Window", + "create_connected:cherry_window_pane": "Fig Window Pane" +} \ No newline at end of file diff --git a/kubejs/assets/emi/recipe/filters/categories.json b/kubejs/assets/emi/recipe/filters/categories.json index 19a43d2d5..8b7fd72fd 100644 --- a/kubejs/assets/emi/recipe/filters/categories.json +++ b/kubejs/assets/emi/recipe/filters/categories.json @@ -92,6 +92,9 @@ }, { "category": "vintageimprovements:auto_curving" + }, + { + "category": "vintageimprovements:laser_cutting" } ] } \ No newline at end of file diff --git a/kubejs/assets/greate/lang/en_us.json b/kubejs/assets/greate/lang/en_us.json index 31f6b4e00..c17139505 100644 --- a/kubejs/assets/greate/lang/en_us.json +++ b/kubejs/assets/greate/lang/en_us.json @@ -32,9 +32,7 @@ "block.greate.large_andesite_alloy_cogwheel": "Large Basic Cogwheel", "block.greate.metal_girder_encased_andesite_alloy_shaft": "Metal Girder Encased Basic Shaft", "block.greate.powered_andesite_alloy_shaft": "Powered Basic Shaft", - "block.greate.rubber_belt_andesite_alloy": "Basic Belt", - "block.greate.rubber_belt_steel": "Basic Belt", - "item.greate.rubber_belt_connector": "Basic Belt", + "item.greate.rubber_belt_connector": "Rubber Belt", "item.greate.silicone_rubber_belt_connector": "Silicone Rubber Belt", "block.greate.polyethylene_belt_titanium": "Styrene Butadiene Rubber Belt", "block.greate.polyethylene_belt_tungsten_steel": "Styrene Butadiene Rubber Belt", diff --git a/kubejs/assets/gtceu/lang/en_us.json b/kubejs/assets/gtceu/lang/en_us.json index cfce3d307..2ed03e10f 100644 --- a/kubejs/assets/gtceu/lang/en_us.json +++ b/kubejs/assets/gtceu/lang/en_us.json @@ -53,6 +53,15 @@ "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", + "material.gtceu.fayalite": "Fayalite", + "material.gtceu.diopside": "Diopside", + "material.gtceu.enstatite": "Enstatite", + "material.gtceu.armalcolite": "Armalcolite", + "material.gtceu.desh": "Desh", + "material.gtceu.ostrum": "Ostrum", + "material.gtceu.calorite": "Calorite", + "material.gtceu.etrium": "Etrium", "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", diff --git a/kubejs/assets/gtceu/models/block/material_sets/quartz/raw_ore_block.json b/kubejs/assets/gtceu/models/block/material_sets/quartz/raw_ore_block.json new file mode 100644 index 000000000..729a31785 --- /dev/null +++ b/kubejs/assets/gtceu/models/block/material_sets/quartz/raw_ore_block.json @@ -0,0 +1,7 @@ +{ + "parent": "gtceu:block/cube_2_layer/tinted_both/all_translucent", + "textures": { + "bot_all": "gtceu:block/material_sets/quartz/raw_ore_block", + "top_all": "gtceu:block/material_sets/quartz/raw_ore_block_secondary" + } +} \ No newline at end of file diff --git a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore.png b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore.png index dbfd1f9d7..3f69dd889 100644 Binary files a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore.png and b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive.png b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive.png index dbfd1f9d7..3f69dd889 100644 Binary files a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive.png and b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive_layer2.png b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive_layer2.png index 9cc19b938..4d2418f81 100644 Binary files a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive_layer2.png and b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_emissive_layer2.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_layer2.png b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_layer2.png index 9cc19b938..4d2418f81 100644 Binary files a/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_layer2.png and b/kubejs/assets/gtceu/textures/block/material_sets/nether_quartz/ore_layer2.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/quartz/raw_ore_block.png b/kubejs/assets/gtceu/textures/block/material_sets/quartz/raw_ore_block.png new file mode 100644 index 000000000..ee0f329c0 Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/quartz/raw_ore_block.png differ diff --git a/kubejs/assets/gtceu/textures/block/material_sets/quartz/raw_ore_block_secondary.png b/kubejs/assets/gtceu/textures/block/material_sets/quartz/raw_ore_block_secondary.png new file mode 100644 index 000000000..e6470040e Binary files /dev/null and b/kubejs/assets/gtceu/textures/block/material_sets/quartz/raw_ore_block_secondary.png differ diff --git a/kubejs/assets/minecraft/atlases/armor_trims.json b/kubejs/assets/minecraft/atlases/armor_trims.json new file mode 100644 index 000000000..e69c5d5f9 --- /dev/null +++ b/kubejs/assets/minecraft/atlases/armor_trims.json @@ -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" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/atlases/blocks.json b/kubejs/assets/minecraft/atlases/blocks.json new file mode 100644 index 000000000..d0a87f124 --- /dev/null +++ b/kubejs/assets/minecraft/atlases/blocks.json @@ -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" + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/minecraft/lang/en_us.json b/kubejs/assets/minecraft/lang/en_us.json index a274ef417..93e6cc9b5 100644 --- a/kubejs/assets/minecraft/lang/en_us.json +++ b/kubejs/assets/minecraft/lang/en_us.json @@ -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", diff --git a/kubejs/assets/tfc/lang/en_us.json b/kubejs/assets/tfc/lang/en_us.json index fdae4da32..733c9f510 100644 --- a/kubejs/assets/tfc/lang/en_us.json +++ b/kubejs/assets/tfc/lang/en_us.json @@ -1,2612 +1,2660 @@ { - "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", - "block.tfc.fluid.salt_water": "Sea Water", - "block.tfc.cauldron.salt_water": "Sea Water Cauldron", - "block.gtceu.andesite_almandine_ore.prospected": "Almandine", - "block.gtceu.andesite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.andesite_alunite_ore.prospected": "Alunite", - "block.gtceu.andesite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.andesite_apatite_ore.prospected": "Apatite", - "block.gtceu.andesite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.andesite_barite_ore.prospected": "Barite", - "block.gtceu.andesite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.andesite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.andesite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.andesite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.andesite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.andesite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.andesite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.andesite_borax_ore.prospected": "Borax", - "block.gtceu.andesite_bornite_ore.prospected": "Bornite", - "block.gtceu.andesite_calcite_ore.prospected": "Calcite", - "block.gtceu.andesite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.andesite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.andesite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.andesite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.andesite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.andesite_chromite_ore.prospected": "Chromite", - "block.gtceu.andesite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.andesite_coal_ore.prospected": "Coal", - "block.gtceu.andesite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.andesite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.andesite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.andesite_copper_ore.prospected": "Copper", - "block.gtceu.andesite_diamond_ore.prospected": "Diamond", - "block.gtceu.andesite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.andesite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.andesite_emerald_ore.prospected": "Emerald", - "block.gtceu.andesite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.andesite_galena_ore.prospected": "Galena", - "block.gtceu.andesite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.andesite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.andesite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.andesite_goethite_ore.prospected": "Goethite", - "block.gtceu.andesite_gold_ore.prospected": "Gold", - "block.gtceu.andesite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.andesite_graphite_ore.prospected": "Graphite", - "block.gtceu.andesite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.andesite_grossular_ore.prospected": "Grossular", - "block.gtceu.andesite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.andesite_hematite_ore.prospected": "Hematite", - "block.gtceu.andesite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.andesite_iron_ore.prospected": "Iron", - "block.gtceu.andesite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.andesite_lapis_ore.prospected": "Lapis", - "block.gtceu.andesite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.andesite_lead_ore.prospected": "Lead", - "block.gtceu.andesite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.andesite_lithium_ore.prospected": "Lithium", - "block.gtceu.andesite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.andesite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.andesite_malachite_ore.prospected": "Malachite", - "block.gtceu.andesite_mica_ore.prospected": "Mica", - "block.gtceu.andesite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.andesite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.andesite_monazite_ore.prospected": "Monazite", - "block.gtceu.andesite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.andesite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.andesite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.andesite_nickel_ore.prospected": "Nickel", - "block.gtceu.andesite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.andesite_olivine_ore.prospected": "Olivine", - "block.gtceu.andesite_opal_ore.prospected": "Opal", - "block.gtceu.andesite_palladium_ore.prospected": "Palladium", - "block.gtceu.andesite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.andesite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.andesite_platinum_ore.prospected": "Platinum", - "block.gtceu.andesite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.andesite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.andesite_powellite_ore.prospected": "Powellite", - "block.gtceu.andesite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.andesite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.andesite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.andesite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.andesite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.andesite_realgar_ore.prospected": "Realgar", - "block.gtceu.andesite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.andesite_redstone_ore.prospected": "Redstone", - "block.gtceu.andesite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.andesite_ruby_ore.prospected": "Ruby", - "block.gtceu.andesite_salt_ore.prospected": "Salt", - "block.gtceu.andesite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.andesite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.andesite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.andesite_silver_ore.prospected": "Silver", - "block.gtceu.andesite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.andesite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.andesite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.andesite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.andesite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.andesite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.andesite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.andesite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.andesite_talc_ore.prospected": "Talc", - "block.gtceu.andesite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.andesite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.andesite_thorium_ore.prospected": "Thorium", - "block.gtceu.andesite_tin_ore.prospected": "Tin", - "block.gtceu.andesite_topaz_ore.prospected": "Topaz", - "block.gtceu.andesite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.andesite_trona_ore.prospected": "Trona", - "block.gtceu.andesite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.andesite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.andesite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.andesite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.andesite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.andesite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.andesite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.basalt_almandine_ore.prospected": "Almandine", - "block.gtceu.basalt_aluminium_ore.prospected": "Aluminium", - "block.gtceu.basalt_alunite_ore.prospected": "Alunite", - "block.gtceu.basalt_amethyst_ore.prospected": "Amethyst", - "block.gtceu.basalt_apatite_ore.prospected": "Apatite", - "block.gtceu.basalt_asbestos_ore.prospected": "Asbestos", - "block.gtceu.basalt_barite_ore.prospected": "Barite", - "block.gtceu.basalt_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.basalt_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.basalt_bauxite_ore.prospected": "Bauxite", - "block.gtceu.basalt_bentonite_ore.prospected": "Bentonite", - "block.gtceu.basalt_beryllium_ore.prospected": "Beryllium", - "block.gtceu.basalt_bismuth_ore.prospected": "Bismuth", - "block.gtceu.basalt_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.basalt_borax_ore.prospected": "Borax", - "block.gtceu.basalt_bornite_ore.prospected": "Bornite", - "block.gtceu.basalt_calcite_ore.prospected": "Calcite", - "block.gtceu.basalt_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.basalt_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.basalt_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.basalt_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.basalt_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.basalt_chromite_ore.prospected": "Chromite", - "block.gtceu.basalt_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.basalt_coal_ore.prospected": "Coal", - "block.gtceu.basalt_cobalt_ore.prospected": "Cobalt", - "block.gtceu.basalt_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.basalt_cooperite_ore.prospected": "Cooperite", - "block.gtceu.basalt_copper_ore.prospected": "Copper", - "block.gtceu.basalt_diamond_ore.prospected": "Diamond", - "block.gtceu.basalt_diatomite_ore.prospected": "Diatomite", - "block.gtceu.basalt_electrotine_ore.prospected": "Electrotine", - "block.gtceu.basalt_emerald_ore.prospected": "Emerald", - "block.gtceu.basalt_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.basalt_galena_ore.prospected": "Galena", - "block.gtceu.basalt_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.basalt_garnierite_ore.prospected": "Garnierite", - "block.gtceu.basalt_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.basalt_goethite_ore.prospected": "Goethite", - "block.gtceu.basalt_gold_ore.prospected": "Gold", - "block.gtceu.basalt_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.basalt_graphite_ore.prospected": "Graphite", - "block.gtceu.basalt_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.basalt_grossular_ore.prospected": "Grossular", - "block.gtceu.basalt_gypsum_ore.prospected": "Gypsum", - "block.gtceu.basalt_hematite_ore.prospected": "Hematite", - "block.gtceu.basalt_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.basalt_iron_ore.prospected": "Iron", - "block.gtceu.basalt_kyanite_ore.prospected": "Kyanite", - "block.gtceu.basalt_lapis_ore.prospected": "Lapis", - "block.gtceu.basalt_lazurite_ore.prospected": "Lazurite", - "block.gtceu.basalt_lead_ore.prospected": "Lead", - "block.gtceu.basalt_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.basalt_lithium_ore.prospected": "Lithium", - "block.gtceu.basalt_magnesite_ore.prospected": "Magnesite", - "block.gtceu.basalt_magnetite_ore.prospected": "Magnetite", - "block.gtceu.basalt_malachite_ore.prospected": "Malachite", - "block.gtceu.basalt_mica_ore.prospected": "Mica", - "block.gtceu.basalt_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.basalt_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.basalt_monazite_ore.prospected": "Monazite", - "block.gtceu.basalt_naquadah_ore.prospected": "Naquadah", - "block.gtceu.basalt_neodymium_ore.prospected": "Neodymium", - "block.gtceu.basalt_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.basalt_nickel_ore.prospected": "Nickel", - "block.gtceu.basalt_oilsands_ore.prospected": "Oilsands", - "block.gtceu.basalt_olivine_ore.prospected": "Olivine", - "block.gtceu.basalt_opal_ore.prospected": "Opal", - "block.gtceu.basalt_palladium_ore.prospected": "Palladium", - "block.gtceu.basalt_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.basalt_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.basalt_platinum_ore.prospected": "Platinum", - "block.gtceu.basalt_plutonium_ore.prospected": "Plutonium", - "block.gtceu.basalt_pollucite_ore.prospected": "Pollucite", - "block.gtceu.basalt_powellite_ore.prospected": "Powellite", - "block.gtceu.basalt_pyrite_ore.prospected": "Pyrite", - "block.gtceu.basalt_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.basalt_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.basalt_pyrope_ore.prospected": "Pyrope", - "block.gtceu.basalt_quartzite_ore.prospected": "Quartzite", - "block.gtceu.basalt_realgar_ore.prospected": "Realgar", - "block.gtceu.basalt_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.basalt_redstone_ore.prospected": "Redstone", - "block.gtceu.basalt_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.basalt_ruby_ore.prospected": "Ruby", - "block.gtceu.basalt_salt_ore.prospected": "Salt", - "block.gtceu.basalt_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.basalt_sapphire_ore.prospected": "Sapphire", - "block.gtceu.basalt_scheelite_ore.prospected": "Scheelite", - "block.gtceu.basalt_silver_ore.prospected": "Silver", - "block.gtceu.basalt_soapstone_ore.prospected": "Soapstone", - "block.gtceu.basalt_sodalite_ore.prospected": "Sodalite", - "block.gtceu.basalt_spessartine_ore.prospected": "Spessartine", - "block.gtceu.basalt_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.basalt_spodumene_ore.prospected": "Spodumene", - "block.gtceu.basalt_stibnite_ore.prospected": "Stibnite", - "block.gtceu.basalt_sulfur_ore.prospected": "Sulfur", - "block.gtceu.basalt_sylvite_ore.prospected": "Sylvite", - "block.gtceu.basalt_talc_ore.prospected": "Talc", - "block.gtceu.basalt_tantalite_ore.prospected": "Tantalite", - "block.gtceu.basalt_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.basalt_thorium_ore.prospected": "Thorium", - "block.gtceu.basalt_tin_ore.prospected": "Tin", - "block.gtceu.basalt_topaz_ore.prospected": "Topaz", - "block.gtceu.basalt_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.basalt_trona_ore.prospected": "Trona", - "block.gtceu.basalt_tungstate_ore.prospected": "Tungstate", - "block.gtceu.basalt_uraninite_ore.prospected": "Uraninite", - "block.gtceu.basalt_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.basalt_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.basalt_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.basalt_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.basalt_zeolite_ore.prospected": "Zeolite", - "block.gtceu.chalk_almandine_ore.prospected": "Almandine", - "block.gtceu.chalk_aluminium_ore.prospected": "Aluminium", - "block.gtceu.chalk_alunite_ore.prospected": "Alunite", - "block.gtceu.chalk_amethyst_ore.prospected": "Amethyst", - "block.gtceu.chalk_apatite_ore.prospected": "Apatite", - "block.gtceu.chalk_asbestos_ore.prospected": "Asbestos", - "block.gtceu.chalk_barite_ore.prospected": "Barite", - "block.gtceu.chalk_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.chalk_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.chalk_bauxite_ore.prospected": "Bauxite", - "block.gtceu.chalk_bentonite_ore.prospected": "Bentonite", - "block.gtceu.chalk_beryllium_ore.prospected": "Beryllium", - "block.gtceu.chalk_bismuth_ore.prospected": "Bismuth", - "block.gtceu.chalk_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.chalk_borax_ore.prospected": "Borax", - "block.gtceu.chalk_bornite_ore.prospected": "Bornite", - "block.gtceu.chalk_calcite_ore.prospected": "Calcite", - "block.gtceu.chalk_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.chalk_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.chalk_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.chalk_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.chalk_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.chalk_chromite_ore.prospected": "Chromite", - "block.gtceu.chalk_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.chalk_coal_ore.prospected": "Coal", - "block.gtceu.chalk_cobalt_ore.prospected": "Cobalt", - "block.gtceu.chalk_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.chalk_cooperite_ore.prospected": "Cooperite", - "block.gtceu.chalk_copper_ore.prospected": "Copper", - "block.gtceu.chalk_diamond_ore.prospected": "Diamond", - "block.gtceu.chalk_diatomite_ore.prospected": "Diatomite", - "block.gtceu.chalk_electrotine_ore.prospected": "Electrotine", - "block.gtceu.chalk_emerald_ore.prospected": "Emerald", - "block.gtceu.chalk_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.chalk_galena_ore.prospected": "Galena", - "block.gtceu.chalk_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.chalk_garnierite_ore.prospected": "Garnierite", - "block.gtceu.chalk_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.chalk_goethite_ore.prospected": "Goethite", - "block.gtceu.chalk_gold_ore.prospected": "Gold", - "block.gtceu.chalk_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.chalk_graphite_ore.prospected": "Graphite", - "block.gtceu.chalk_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.chalk_grossular_ore.prospected": "Grossular", - "block.gtceu.chalk_gypsum_ore.prospected": "Gypsum", - "block.gtceu.chalk_hematite_ore.prospected": "Hematite", - "block.gtceu.chalk_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.chalk_iron_ore.prospected": "Iron", - "block.gtceu.chalk_kyanite_ore.prospected": "Kyanite", - "block.gtceu.chalk_lapis_ore.prospected": "Lapis", - "block.gtceu.chalk_lazurite_ore.prospected": "Lazurite", - "block.gtceu.chalk_lead_ore.prospected": "Lead", - "block.gtceu.chalk_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.chalk_lithium_ore.prospected": "Lithium", - "block.gtceu.chalk_magnesite_ore.prospected": "Magnesite", - "block.gtceu.chalk_magnetite_ore.prospected": "Magnetite", - "block.gtceu.chalk_malachite_ore.prospected": "Malachite", - "block.gtceu.chalk_mica_ore.prospected": "Mica", - "block.gtceu.chalk_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.chalk_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.chalk_monazite_ore.prospected": "Monazite", - "block.gtceu.chalk_naquadah_ore.prospected": "Naquadah", - "block.gtceu.chalk_neodymium_ore.prospected": "Neodymium", - "block.gtceu.chalk_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.chalk_nickel_ore.prospected": "Nickel", - "block.gtceu.chalk_oilsands_ore.prospected": "Oilsands", - "block.gtceu.chalk_olivine_ore.prospected": "Olivine", - "block.gtceu.chalk_opal_ore.prospected": "Opal", - "block.gtceu.chalk_palladium_ore.prospected": "Palladium", - "block.gtceu.chalk_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.chalk_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.chalk_platinum_ore.prospected": "Platinum", - "block.gtceu.chalk_plutonium_ore.prospected": "Plutonium", - "block.gtceu.chalk_pollucite_ore.prospected": "Pollucite", - "block.gtceu.chalk_powellite_ore.prospected": "Powellite", - "block.gtceu.chalk_pyrite_ore.prospected": "Pyrite", - "block.gtceu.chalk_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.chalk_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.chalk_pyrope_ore.prospected": "Pyrope", - "block.gtceu.chalk_quartzite_ore.prospected": "Quartzite", - "block.gtceu.chalk_realgar_ore.prospected": "Realgar", - "block.gtceu.chalk_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.chalk_redstone_ore.prospected": "Redstone", - "block.gtceu.chalk_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.chalk_ruby_ore.prospected": "Ruby", - "block.gtceu.chalk_salt_ore.prospected": "Salt", - "block.gtceu.chalk_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.chalk_sapphire_ore.prospected": "Sapphire", - "block.gtceu.chalk_scheelite_ore.prospected": "Scheelite", - "block.gtceu.chalk_silver_ore.prospected": "Silver", - "block.gtceu.chalk_soapstone_ore.prospected": "Soapstone", - "block.gtceu.chalk_sodalite_ore.prospected": "Sodalite", - "block.gtceu.chalk_spessartine_ore.prospected": "Spessartine", - "block.gtceu.chalk_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.chalk_spodumene_ore.prospected": "Spodumene", - "block.gtceu.chalk_stibnite_ore.prospected": "Stibnite", - "block.gtceu.chalk_sulfur_ore.prospected": "Sulfur", - "block.gtceu.chalk_sylvite_ore.prospected": "Sylvite", - "block.gtceu.chalk_talc_ore.prospected": "Talc", - "block.gtceu.chalk_tantalite_ore.prospected": "Tantalite", - "block.gtceu.chalk_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.chalk_thorium_ore.prospected": "Thorium", - "block.gtceu.chalk_tin_ore.prospected": "Tin", - "block.gtceu.chalk_topaz_ore.prospected": "Topaz", - "block.gtceu.chalk_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.chalk_trona_ore.prospected": "Trona", - "block.gtceu.chalk_tungstate_ore.prospected": "Tungstate", - "block.gtceu.chalk_uraninite_ore.prospected": "Uraninite", - "block.gtceu.chalk_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.chalk_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.chalk_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.chalk_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.chalk_zeolite_ore.prospected": "Zeolite", - "block.gtceu.chert_almandine_ore.prospected": "Almandine", - "block.gtceu.chert_aluminium_ore.prospected": "Aluminium", - "block.gtceu.chert_alunite_ore.prospected": "Alunite", - "block.gtceu.chert_amethyst_ore.prospected": "Amethyst", - "block.gtceu.chert_apatite_ore.prospected": "Apatite", - "block.gtceu.chert_asbestos_ore.prospected": "Asbestos", - "block.gtceu.chert_barite_ore.prospected": "Barite", - "block.gtceu.chert_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.chert_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.chert_bauxite_ore.prospected": "Bauxite", - "block.gtceu.chert_bentonite_ore.prospected": "Bentonite", - "block.gtceu.chert_beryllium_ore.prospected": "Beryllium", - "block.gtceu.chert_bismuth_ore.prospected": "Bismuth", - "block.gtceu.chert_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.chert_borax_ore.prospected": "Borax", - "block.gtceu.chert_bornite_ore.prospected": "Bornite", - "block.gtceu.chert_calcite_ore.prospected": "Calcite", - "block.gtceu.chert_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.chert_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.chert_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.chert_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.chert_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.chert_chromite_ore.prospected": "Chromite", - "block.gtceu.chert_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.chert_coal_ore.prospected": "Coal", - "block.gtceu.chert_cobalt_ore.prospected": "Cobalt", - "block.gtceu.chert_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.chert_cooperite_ore.prospected": "Cooperite", - "block.gtceu.chert_copper_ore.prospected": "Copper", - "block.gtceu.chert_diamond_ore.prospected": "Diamond", - "block.gtceu.chert_diatomite_ore.prospected": "Diatomite", - "block.gtceu.chert_electrotine_ore.prospected": "Electrotine", - "block.gtceu.chert_emerald_ore.prospected": "Emerald", - "block.gtceu.chert_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.chert_galena_ore.prospected": "Galena", - "block.gtceu.chert_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.chert_garnierite_ore.prospected": "Garnierite", - "block.gtceu.chert_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.chert_goethite_ore.prospected": "Goethite", - "block.gtceu.chert_gold_ore.prospected": "Gold", - "block.gtceu.chert_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.chert_graphite_ore.prospected": "Graphite", - "block.gtceu.chert_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.chert_grossular_ore.prospected": "Grossular", - "block.gtceu.chert_gypsum_ore.prospected": "Gypsum", - "block.gtceu.chert_hematite_ore.prospected": "Hematite", - "block.gtceu.chert_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.chert_iron_ore.prospected": "Iron", - "block.gtceu.chert_kyanite_ore.prospected": "Kyanite", - "block.gtceu.chert_lapis_ore.prospected": "Lapis", - "block.gtceu.chert_lazurite_ore.prospected": "Lazurite", - "block.gtceu.chert_lead_ore.prospected": "Lead", - "block.gtceu.chert_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.chert_lithium_ore.prospected": "Lithium", - "block.gtceu.chert_magnesite_ore.prospected": "Magnesite", - "block.gtceu.chert_magnetite_ore.prospected": "Magnetite", - "block.gtceu.chert_malachite_ore.prospected": "Malachite", - "block.gtceu.chert_mica_ore.prospected": "Mica", - "block.gtceu.chert_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.chert_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.chert_monazite_ore.prospected": "Monazite", - "block.gtceu.chert_naquadah_ore.prospected": "Naquadah", - "block.gtceu.chert_neodymium_ore.prospected": "Neodymium", - "block.gtceu.chert_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.chert_nickel_ore.prospected": "Nickel", - "block.gtceu.chert_oilsands_ore.prospected": "Oilsands", - "block.gtceu.chert_olivine_ore.prospected": "Olivine", - "block.gtceu.chert_opal_ore.prospected": "Opal", - "block.gtceu.chert_palladium_ore.prospected": "Palladium", - "block.gtceu.chert_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.chert_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.chert_platinum_ore.prospected": "Platinum", - "block.gtceu.chert_plutonium_ore.prospected": "Plutonium", - "block.gtceu.chert_pollucite_ore.prospected": "Pollucite", - "block.gtceu.chert_powellite_ore.prospected": "Powellite", - "block.gtceu.chert_pyrite_ore.prospected": "Pyrite", - "block.gtceu.chert_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.chert_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.chert_pyrope_ore.prospected": "Pyrope", - "block.gtceu.chert_quartzite_ore.prospected": "Quartzite", - "block.gtceu.chert_realgar_ore.prospected": "Realgar", - "block.gtceu.chert_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.chert_redstone_ore.prospected": "Redstone", - "block.gtceu.chert_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.chert_ruby_ore.prospected": "Ruby", - "block.gtceu.chert_salt_ore.prospected": "Salt", - "block.gtceu.chert_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.chert_sapphire_ore.prospected": "Sapphire", - "block.gtceu.chert_scheelite_ore.prospected": "Scheelite", - "block.gtceu.chert_silver_ore.prospected": "Silver", - "block.gtceu.chert_soapstone_ore.prospected": "Soapstone", - "block.gtceu.chert_sodalite_ore.prospected": "Sodalite", - "block.gtceu.chert_spessartine_ore.prospected": "Spessartine", - "block.gtceu.chert_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.chert_spodumene_ore.prospected": "Spodumene", - "block.gtceu.chert_stibnite_ore.prospected": "Stibnite", - "block.gtceu.chert_sulfur_ore.prospected": "Sulfur", - "block.gtceu.chert_sylvite_ore.prospected": "Sylvite", - "block.gtceu.chert_talc_ore.prospected": "Talc", - "block.gtceu.chert_tantalite_ore.prospected": "Tantalite", - "block.gtceu.chert_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.chert_thorium_ore.prospected": "Thorium", - "block.gtceu.chert_tin_ore.prospected": "Tin", - "block.gtceu.chert_topaz_ore.prospected": "Topaz", - "block.gtceu.chert_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.chert_trona_ore.prospected": "Trona", - "block.gtceu.chert_tungstate_ore.prospected": "Tungstate", - "block.gtceu.chert_uraninite_ore.prospected": "Uraninite", - "block.gtceu.chert_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.chert_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.chert_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.chert_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.chert_zeolite_ore.prospected": "Zeolite", - "block.gtceu.claystone_almandine_ore.prospected": "Almandine", - "block.gtceu.claystone_aluminium_ore.prospected": "Aluminium", - "block.gtceu.claystone_alunite_ore.prospected": "Alunite", - "block.gtceu.claystone_amethyst_ore.prospected": "Amethyst", - "block.gtceu.claystone_apatite_ore.prospected": "Apatite", - "block.gtceu.claystone_asbestos_ore.prospected": "Asbestos", - "block.gtceu.claystone_barite_ore.prospected": "Barite", - "block.gtceu.claystone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.claystone_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.claystone_bauxite_ore.prospected": "Bauxite", - "block.gtceu.claystone_bentonite_ore.prospected": "Bentonite", - "block.gtceu.claystone_beryllium_ore.prospected": "Beryllium", - "block.gtceu.claystone_bismuth_ore.prospected": "Bismuth", - "block.gtceu.claystone_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.claystone_borax_ore.prospected": "Borax", - "block.gtceu.claystone_bornite_ore.prospected": "Bornite", - "block.gtceu.claystone_calcite_ore.prospected": "Calcite", - "block.gtceu.claystone_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.claystone_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.claystone_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.claystone_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.claystone_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.claystone_chromite_ore.prospected": "Chromite", - "block.gtceu.claystone_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.claystone_coal_ore.prospected": "Coal", - "block.gtceu.claystone_cobalt_ore.prospected": "Cobalt", - "block.gtceu.claystone_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.claystone_cooperite_ore.prospected": "Cooperite", - "block.gtceu.claystone_copper_ore.prospected": "Copper", - "block.gtceu.claystone_diamond_ore.prospected": "Diamond", - "block.gtceu.claystone_diatomite_ore.prospected": "Diatomite", - "block.gtceu.claystone_electrotine_ore.prospected": "Electrotine", - "block.gtceu.claystone_emerald_ore.prospected": "Emerald", - "block.gtceu.claystone_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.claystone_galena_ore.prospected": "Galena", - "block.gtceu.claystone_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.claystone_garnierite_ore.prospected": "Garnierite", - "block.gtceu.claystone_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.claystone_goethite_ore.prospected": "Goethite", - "block.gtceu.claystone_gold_ore.prospected": "Gold", - "block.gtceu.claystone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.claystone_graphite_ore.prospected": "Graphite", - "block.gtceu.claystone_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.claystone_grossular_ore.prospected": "Grossular", - "block.gtceu.claystone_gypsum_ore.prospected": "Gypsum", - "block.gtceu.claystone_hematite_ore.prospected": "Hematite", - "block.gtceu.claystone_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.claystone_iron_ore.prospected": "Iron", - "block.gtceu.claystone_kyanite_ore.prospected": "Kyanite", - "block.gtceu.claystone_lapis_ore.prospected": "Lapis", - "block.gtceu.claystone_lazurite_ore.prospected": "Lazurite", - "block.gtceu.claystone_lead_ore.prospected": "Lead", - "block.gtceu.claystone_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.claystone_lithium_ore.prospected": "Lithium", - "block.gtceu.claystone_magnesite_ore.prospected": "Magnesite", - "block.gtceu.claystone_magnetite_ore.prospected": "Magnetite", - "block.gtceu.claystone_malachite_ore.prospected": "Malachite", - "block.gtceu.claystone_mica_ore.prospected": "Mica", - "block.gtceu.claystone_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.claystone_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.claystone_monazite_ore.prospected": "Monazite", - "block.gtceu.claystone_naquadah_ore.prospected": "Naquadah", - "block.gtceu.claystone_neodymium_ore.prospected": "Neodymium", - "block.gtceu.claystone_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.claystone_nickel_ore.prospected": "Nickel", - "block.gtceu.claystone_oilsands_ore.prospected": "Oilsands", - "block.gtceu.claystone_olivine_ore.prospected": "Olivine", - "block.gtceu.claystone_opal_ore.prospected": "Opal", - "block.gtceu.claystone_palladium_ore.prospected": "Palladium", - "block.gtceu.claystone_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.claystone_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.claystone_platinum_ore.prospected": "Platinum", - "block.gtceu.claystone_plutonium_ore.prospected": "Plutonium", - "block.gtceu.claystone_pollucite_ore.prospected": "Pollucite", - "block.gtceu.claystone_powellite_ore.prospected": "Powellite", - "block.gtceu.claystone_pyrite_ore.prospected": "Pyrite", - "block.gtceu.claystone_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.claystone_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.claystone_pyrope_ore.prospected": "Pyrope", - "block.gtceu.claystone_quartzite_ore.prospected": "Quartzite", - "block.gtceu.claystone_realgar_ore.prospected": "Realgar", - "block.gtceu.claystone_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.claystone_redstone_ore.prospected": "Redstone", - "block.gtceu.claystone_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.claystone_ruby_ore.prospected": "Ruby", - "block.gtceu.claystone_salt_ore.prospected": "Salt", - "block.gtceu.claystone_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.claystone_sapphire_ore.prospected": "Sapphire", - "block.gtceu.claystone_scheelite_ore.prospected": "Scheelite", - "block.gtceu.claystone_silver_ore.prospected": "Silver", - "block.gtceu.claystone_soapstone_ore.prospected": "Soapstone", - "block.gtceu.claystone_sodalite_ore.prospected": "Sodalite", - "block.gtceu.claystone_spessartine_ore.prospected": "Spessartine", - "block.gtceu.claystone_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.claystone_spodumene_ore.prospected": "Spodumene", - "block.gtceu.claystone_stibnite_ore.prospected": "Stibnite", - "block.gtceu.claystone_sulfur_ore.prospected": "Sulfur", - "block.gtceu.claystone_sylvite_ore.prospected": "Sylvite", - "block.gtceu.claystone_talc_ore.prospected": "Talc", - "block.gtceu.claystone_tantalite_ore.prospected": "Tantalite", - "block.gtceu.claystone_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.claystone_thorium_ore.prospected": "Thorium", - "block.gtceu.claystone_tin_ore.prospected": "Tin", - "block.gtceu.claystone_topaz_ore.prospected": "Topaz", - "block.gtceu.claystone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.claystone_trona_ore.prospected": "Trona", - "block.gtceu.claystone_tungstate_ore.prospected": "Tungstate", - "block.gtceu.claystone_uraninite_ore.prospected": "Uraninite", - "block.gtceu.claystone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.claystone_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.claystone_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.claystone_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.claystone_zeolite_ore.prospected": "Zeolite", - "block.gtceu.conglomerate_almandine_ore.prospected": "Almandine", - "block.gtceu.conglomerate_aluminium_ore.prospected": "Aluminium", - "block.gtceu.conglomerate_alunite_ore.prospected": "Alunite", - "block.gtceu.conglomerate_amethyst_ore.prospected": "Amethyst", - "block.gtceu.conglomerate_apatite_ore.prospected": "Apatite", - "block.gtceu.conglomerate_asbestos_ore.prospected": "Asbestos", - "block.gtceu.conglomerate_barite_ore.prospected": "Barite", - "block.gtceu.conglomerate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.conglomerate_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.conglomerate_bauxite_ore.prospected": "Bauxite", - "block.gtceu.conglomerate_bentonite_ore.prospected": "Bentonite", - "block.gtceu.conglomerate_beryllium_ore.prospected": "Beryllium", - "block.gtceu.conglomerate_bismuth_ore.prospected": "Bismuth", - "block.gtceu.conglomerate_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.conglomerate_borax_ore.prospected": "Borax", - "block.gtceu.conglomerate_bornite_ore.prospected": "Bornite", - "block.gtceu.conglomerate_calcite_ore.prospected": "Calcite", - "block.gtceu.conglomerate_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.conglomerate_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.conglomerate_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.conglomerate_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.conglomerate_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.conglomerate_chromite_ore.prospected": "Chromite", - "block.gtceu.conglomerate_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.conglomerate_coal_ore.prospected": "Coal", - "block.gtceu.conglomerate_cobalt_ore.prospected": "Cobalt", - "block.gtceu.conglomerate_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.conglomerate_cooperite_ore.prospected": "Cooperite", - "block.gtceu.conglomerate_copper_ore.prospected": "Copper", - "block.gtceu.conglomerate_diamond_ore.prospected": "Diamond", - "block.gtceu.conglomerate_diatomite_ore.prospected": "Diatomite", - "block.gtceu.conglomerate_electrotine_ore.prospected": "Electrotine", - "block.gtceu.conglomerate_emerald_ore.prospected": "Emerald", - "block.gtceu.conglomerate_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.conglomerate_galena_ore.prospected": "Galena", - "block.gtceu.conglomerate_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.conglomerate_garnierite_ore.prospected": "Garnierite", - "block.gtceu.conglomerate_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.conglomerate_goethite_ore.prospected": "Goethite", - "block.gtceu.conglomerate_gold_ore.prospected": "Gold", - "block.gtceu.conglomerate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.conglomerate_graphite_ore.prospected": "Graphite", - "block.gtceu.conglomerate_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.conglomerate_grossular_ore.prospected": "Grossular", - "block.gtceu.conglomerate_gypsum_ore.prospected": "Gypsum", - "block.gtceu.conglomerate_hematite_ore.prospected": "Hematite", - "block.gtceu.conglomerate_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.conglomerate_iron_ore.prospected": "Iron", - "block.gtceu.conglomerate_kyanite_ore.prospected": "Kyanite", - "block.gtceu.conglomerate_lapis_ore.prospected": "Lapis", - "block.gtceu.conglomerate_lazurite_ore.prospected": "Lazurite", - "block.gtceu.conglomerate_lead_ore.prospected": "Lead", - "block.gtceu.conglomerate_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.conglomerate_lithium_ore.prospected": "Lithium", - "block.gtceu.conglomerate_magnesite_ore.prospected": "Magnesite", - "block.gtceu.conglomerate_magnetite_ore.prospected": "Magnetite", - "block.gtceu.conglomerate_malachite_ore.prospected": "Malachite", - "block.gtceu.conglomerate_mica_ore.prospected": "Mica", - "block.gtceu.conglomerate_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.conglomerate_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.conglomerate_monazite_ore.prospected": "Monazite", - "block.gtceu.conglomerate_naquadah_ore.prospected": "Naquadah", - "block.gtceu.conglomerate_neodymium_ore.prospected": "Neodymium", - "block.gtceu.conglomerate_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.conglomerate_nickel_ore.prospected": "Nickel", - "block.gtceu.conglomerate_oilsands_ore.prospected": "Oilsands", - "block.gtceu.conglomerate_olivine_ore.prospected": "Olivine", - "block.gtceu.conglomerate_opal_ore.prospected": "Opal", - "block.gtceu.conglomerate_palladium_ore.prospected": "Palladium", - "block.gtceu.conglomerate_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.conglomerate_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.conglomerate_platinum_ore.prospected": "Platinum", - "block.gtceu.conglomerate_plutonium_ore.prospected": "Plutonium", - "block.gtceu.conglomerate_pollucite_ore.prospected": "Pollucite", - "block.gtceu.conglomerate_powellite_ore.prospected": "Powellite", - "block.gtceu.conglomerate_pyrite_ore.prospected": "Pyrite", - "block.gtceu.conglomerate_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.conglomerate_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.conglomerate_pyrope_ore.prospected": "Pyrope", - "block.gtceu.conglomerate_quartzite_ore.prospected": "Quartzite", - "block.gtceu.conglomerate_realgar_ore.prospected": "Realgar", - "block.gtceu.conglomerate_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.conglomerate_redstone_ore.prospected": "Redstone", - "block.gtceu.conglomerate_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.conglomerate_ruby_ore.prospected": "Ruby", - "block.gtceu.conglomerate_salt_ore.prospected": "Salt", - "block.gtceu.conglomerate_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.conglomerate_sapphire_ore.prospected": "Sapphire", - "block.gtceu.conglomerate_scheelite_ore.prospected": "Scheelite", - "block.gtceu.conglomerate_silver_ore.prospected": "Silver", - "block.gtceu.conglomerate_soapstone_ore.prospected": "Soapstone", - "block.gtceu.conglomerate_sodalite_ore.prospected": "Sodalite", - "block.gtceu.conglomerate_spessartine_ore.prospected": "Spessartine", - "block.gtceu.conglomerate_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.conglomerate_spodumene_ore.prospected": "Spodumene", - "block.gtceu.conglomerate_stibnite_ore.prospected": "Stibnite", - "block.gtceu.conglomerate_sulfur_ore.prospected": "Sulfur", - "block.gtceu.conglomerate_sylvite_ore.prospected": "Sylvite", - "block.gtceu.conglomerate_talc_ore.prospected": "Talc", - "block.gtceu.conglomerate_tantalite_ore.prospected": "Tantalite", - "block.gtceu.conglomerate_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.conglomerate_thorium_ore.prospected": "Thorium", - "block.gtceu.conglomerate_tin_ore.prospected": "Tin", - "block.gtceu.conglomerate_topaz_ore.prospected": "Topaz", - "block.gtceu.conglomerate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.conglomerate_trona_ore.prospected": "Trona", - "block.gtceu.conglomerate_tungstate_ore.prospected": "Tungstate", - "block.gtceu.conglomerate_uraninite_ore.prospected": "Uraninite", - "block.gtceu.conglomerate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.conglomerate_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.conglomerate_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.conglomerate_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.conglomerate_zeolite_ore.prospected": "Zeolite", - "block.gtceu.dacite_almandine_ore.prospected": "Almandine", - "block.gtceu.dacite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.dacite_alunite_ore.prospected": "Alunite", - "block.gtceu.dacite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.dacite_apatite_ore.prospected": "Apatite", - "block.gtceu.dacite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.dacite_barite_ore.prospected": "Barite", - "block.gtceu.dacite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.dacite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.dacite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.dacite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.dacite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.dacite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.dacite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.dacite_borax_ore.prospected": "Borax", - "block.gtceu.dacite_bornite_ore.prospected": "Bornite", - "block.gtceu.dacite_calcite_ore.prospected": "Calcite", - "block.gtceu.dacite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.dacite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.dacite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.dacite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.dacite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.dacite_chromite_ore.prospected": "Chromite", - "block.gtceu.dacite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.dacite_coal_ore.prospected": "Coal", - "block.gtceu.dacite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.dacite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.dacite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.dacite_copper_ore.prospected": "Copper", - "block.gtceu.dacite_diamond_ore.prospected": "Diamond", - "block.gtceu.dacite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.dacite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.dacite_emerald_ore.prospected": "Emerald", - "block.gtceu.dacite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.dacite_galena_ore.prospected": "Galena", - "block.gtceu.dacite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.dacite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.dacite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.dacite_goethite_ore.prospected": "Goethite", - "block.gtceu.dacite_gold_ore.prospected": "Gold", - "block.gtceu.dacite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.dacite_graphite_ore.prospected": "Graphite", - "block.gtceu.dacite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.dacite_grossular_ore.prospected": "Grossular", - "block.gtceu.dacite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.dacite_hematite_ore.prospected": "Hematite", - "block.gtceu.dacite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.dacite_iron_ore.prospected": "Iron", - "block.gtceu.dacite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.dacite_lapis_ore.prospected": "Lapis", - "block.gtceu.dacite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.dacite_lead_ore.prospected": "Lead", - "block.gtceu.dacite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.dacite_lithium_ore.prospected": "Lithium", - "block.gtceu.dacite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.dacite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.dacite_malachite_ore.prospected": "Malachite", - "block.gtceu.dacite_mica_ore.prospected": "Mica", - "block.gtceu.dacite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.dacite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.dacite_monazite_ore.prospected": "Monazite", - "block.gtceu.dacite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.dacite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.dacite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.dacite_nickel_ore.prospected": "Nickel", - "block.gtceu.dacite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.dacite_olivine_ore.prospected": "Olivine", - "block.gtceu.dacite_opal_ore.prospected": "Opal", - "block.gtceu.dacite_palladium_ore.prospected": "Palladium", - "block.gtceu.dacite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.dacite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.dacite_platinum_ore.prospected": "Platinum", - "block.gtceu.dacite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.dacite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.dacite_powellite_ore.prospected": "Powellite", - "block.gtceu.dacite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.dacite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.dacite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.dacite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.dacite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.dacite_realgar_ore.prospected": "Realgar", - "block.gtceu.dacite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.dacite_redstone_ore.prospected": "Redstone", - "block.gtceu.dacite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.dacite_ruby_ore.prospected": "Ruby", - "block.gtceu.dacite_salt_ore.prospected": "Salt", - "block.gtceu.dacite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.dacite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.dacite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.dacite_silver_ore.prospected": "Silver", - "block.gtceu.dacite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.dacite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.dacite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.dacite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.dacite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.dacite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.dacite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.dacite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.dacite_talc_ore.prospected": "Talc", - "block.gtceu.dacite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.dacite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.dacite_thorium_ore.prospected": "Thorium", - "block.gtceu.dacite_tin_ore.prospected": "Tin", - "block.gtceu.dacite_topaz_ore.prospected": "Topaz", - "block.gtceu.dacite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.dacite_trona_ore.prospected": "Trona", - "block.gtceu.dacite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.dacite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.dacite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.dacite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.dacite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.dacite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.dacite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.diorite_almandine_ore.prospected": "Almandine", - "block.gtceu.diorite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.diorite_alunite_ore.prospected": "Alunite", - "block.gtceu.diorite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.diorite_apatite_ore.prospected": "Apatite", - "block.gtceu.diorite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.diorite_barite_ore.prospected": "Barite", - "block.gtceu.diorite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.diorite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.diorite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.diorite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.diorite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.diorite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.diorite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.diorite_borax_ore.prospected": "Borax", - "block.gtceu.diorite_bornite_ore.prospected": "Bornite", - "block.gtceu.diorite_calcite_ore.prospected": "Calcite", - "block.gtceu.diorite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.diorite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.diorite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.diorite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.diorite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.diorite_chromite_ore.prospected": "Chromite", - "block.gtceu.diorite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.diorite_coal_ore.prospected": "Coal", - "block.gtceu.diorite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.diorite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.diorite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.diorite_copper_ore.prospected": "Copper", - "block.gtceu.diorite_diamond_ore.prospected": "Diamond", - "block.gtceu.diorite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.diorite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.diorite_emerald_ore.prospected": "Emerald", - "block.gtceu.diorite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.diorite_galena_ore.prospected": "Galena", - "block.gtceu.diorite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.diorite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.diorite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.diorite_goethite_ore.prospected": "Goethite", - "block.gtceu.diorite_gold_ore.prospected": "Gold", - "block.gtceu.diorite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.diorite_graphite_ore.prospected": "Graphite", - "block.gtceu.diorite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.diorite_grossular_ore.prospected": "Grossular", - "block.gtceu.diorite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.diorite_hematite_ore.prospected": "Hematite", - "block.gtceu.diorite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.diorite_iron_ore.prospected": "Iron", - "block.gtceu.diorite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.diorite_lapis_ore.prospected": "Lapis", - "block.gtceu.diorite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.diorite_lead_ore.prospected": "Lead", - "block.gtceu.diorite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.diorite_lithium_ore.prospected": "Lithium", - "block.gtceu.diorite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.diorite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.diorite_malachite_ore.prospected": "Malachite", - "block.gtceu.diorite_mica_ore.prospected": "Mica", - "block.gtceu.diorite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.diorite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.diorite_monazite_ore.prospected": "Monazite", - "block.gtceu.diorite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.diorite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.diorite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.diorite_nickel_ore.prospected": "Nickel", - "block.gtceu.diorite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.diorite_olivine_ore.prospected": "Olivine", - "block.gtceu.diorite_opal_ore.prospected": "Opal", - "block.gtceu.diorite_palladium_ore.prospected": "Palladium", - "block.gtceu.diorite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.diorite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.diorite_platinum_ore.prospected": "Platinum", - "block.gtceu.diorite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.diorite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.diorite_powellite_ore.prospected": "Powellite", - "block.gtceu.diorite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.diorite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.diorite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.diorite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.diorite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.diorite_realgar_ore.prospected": "Realgar", - "block.gtceu.diorite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.diorite_redstone_ore.prospected": "Redstone", - "block.gtceu.diorite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.diorite_ruby_ore.prospected": "Ruby", - "block.gtceu.diorite_salt_ore.prospected": "Salt", - "block.gtceu.diorite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.diorite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.diorite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.diorite_silver_ore.prospected": "Silver", - "block.gtceu.diorite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.diorite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.diorite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.diorite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.diorite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.diorite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.diorite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.diorite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.diorite_talc_ore.prospected": "Talc", - "block.gtceu.diorite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.diorite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.diorite_thorium_ore.prospected": "Thorium", - "block.gtceu.diorite_tin_ore.prospected": "Tin", - "block.gtceu.diorite_topaz_ore.prospected": "Topaz", - "block.gtceu.diorite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.diorite_trona_ore.prospected": "Trona", - "block.gtceu.diorite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.diorite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.diorite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.diorite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.diorite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.diorite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.diorite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.dolomite_almandine_ore.prospected": "Almandine", - "block.gtceu.dolomite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.dolomite_alunite_ore.prospected": "Alunite", - "block.gtceu.dolomite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.dolomite_apatite_ore.prospected": "Apatite", - "block.gtceu.dolomite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.dolomite_barite_ore.prospected": "Barite", - "block.gtceu.dolomite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.dolomite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.dolomite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.dolomite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.dolomite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.dolomite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.dolomite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.dolomite_borax_ore.prospected": "Borax", - "block.gtceu.dolomite_bornite_ore.prospected": "Bornite", - "block.gtceu.dolomite_calcite_ore.prospected": "Calcite", - "block.gtceu.dolomite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.dolomite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.dolomite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.dolomite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.dolomite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.dolomite_chromite_ore.prospected": "Chromite", - "block.gtceu.dolomite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.dolomite_coal_ore.prospected": "Coal", - "block.gtceu.dolomite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.dolomite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.dolomite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.dolomite_copper_ore.prospected": "Copper", - "block.gtceu.dolomite_diamond_ore.prospected": "Diamond", - "block.gtceu.dolomite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.dolomite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.dolomite_emerald_ore.prospected": "Emerald", - "block.gtceu.dolomite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.dolomite_galena_ore.prospected": "Galena", - "block.gtceu.dolomite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.dolomite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.dolomite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.dolomite_goethite_ore.prospected": "Goethite", - "block.gtceu.dolomite_gold_ore.prospected": "Gold", - "block.gtceu.dolomite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.dolomite_graphite_ore.prospected": "Graphite", - "block.gtceu.dolomite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.dolomite_grossular_ore.prospected": "Grossular", - "block.gtceu.dolomite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.dolomite_hematite_ore.prospected": "Hematite", - "block.gtceu.dolomite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.dolomite_iron_ore.prospected": "Iron", - "block.gtceu.dolomite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.dolomite_lapis_ore.prospected": "Lapis", - "block.gtceu.dolomite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.dolomite_lead_ore.prospected": "Lead", - "block.gtceu.dolomite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.dolomite_lithium_ore.prospected": "Lithium", - "block.gtceu.dolomite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.dolomite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.dolomite_malachite_ore.prospected": "Malachite", - "block.gtceu.dolomite_mica_ore.prospected": "Mica", - "block.gtceu.dolomite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.dolomite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.dolomite_monazite_ore.prospected": "Monazite", - "block.gtceu.dolomite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.dolomite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.dolomite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.dolomite_nickel_ore.prospected": "Nickel", - "block.gtceu.dolomite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.dolomite_olivine_ore.prospected": "Olivine", - "block.gtceu.dolomite_opal_ore.prospected": "Opal", - "block.gtceu.dolomite_palladium_ore.prospected": "Palladium", - "block.gtceu.dolomite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.dolomite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.dolomite_platinum_ore.prospected": "Platinum", - "block.gtceu.dolomite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.dolomite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.dolomite_powellite_ore.prospected": "Powellite", - "block.gtceu.dolomite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.dolomite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.dolomite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.dolomite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.dolomite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.dolomite_realgar_ore.prospected": "Realgar", - "block.gtceu.dolomite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.dolomite_redstone_ore.prospected": "Redstone", - "block.gtceu.dolomite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.dolomite_ruby_ore.prospected": "Ruby", - "block.gtceu.dolomite_salt_ore.prospected": "Salt", - "block.gtceu.dolomite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.dolomite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.dolomite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.dolomite_silver_ore.prospected": "Silver", - "block.gtceu.dolomite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.dolomite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.dolomite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.dolomite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.dolomite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.dolomite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.dolomite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.dolomite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.dolomite_talc_ore.prospected": "Talc", - "block.gtceu.dolomite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.dolomite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.dolomite_thorium_ore.prospected": "Thorium", - "block.gtceu.dolomite_tin_ore.prospected": "Tin", - "block.gtceu.dolomite_topaz_ore.prospected": "Topaz", - "block.gtceu.dolomite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.dolomite_trona_ore.prospected": "Trona", - "block.gtceu.dolomite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.dolomite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.dolomite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.dolomite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.dolomite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.dolomite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.dolomite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.gabbro_almandine_ore.prospected": "Almandine", - "block.gtceu.gabbro_aluminium_ore.prospected": "Aluminium", - "block.gtceu.gabbro_alunite_ore.prospected": "Alunite", - "block.gtceu.gabbro_amethyst_ore.prospected": "Amethyst", - "block.gtceu.gabbro_apatite_ore.prospected": "Apatite", - "block.gtceu.gabbro_asbestos_ore.prospected": "Asbestos", - "block.gtceu.gabbro_barite_ore.prospected": "Barite", - "block.gtceu.gabbro_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.gabbro_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.gabbro_bauxite_ore.prospected": "Bauxite", - "block.gtceu.gabbro_bentonite_ore.prospected": "Bentonite", - "block.gtceu.gabbro_beryllium_ore.prospected": "Beryllium", - "block.gtceu.gabbro_bismuth_ore.prospected": "Bismuth", - "block.gtceu.gabbro_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.gabbro_borax_ore.prospected": "Borax", - "block.gtceu.gabbro_bornite_ore.prospected": "Bornite", - "block.gtceu.gabbro_calcite_ore.prospected": "Calcite", - "block.gtceu.gabbro_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.gabbro_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.gabbro_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.gabbro_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.gabbro_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.gabbro_chromite_ore.prospected": "Chromite", - "block.gtceu.gabbro_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.gabbro_coal_ore.prospected": "Coal", - "block.gtceu.gabbro_cobalt_ore.prospected": "Cobalt", - "block.gtceu.gabbro_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.gabbro_cooperite_ore.prospected": "Cooperite", - "block.gtceu.gabbro_copper_ore.prospected": "Copper", - "block.gtceu.gabbro_diamond_ore.prospected": "Diamond", - "block.gtceu.gabbro_diatomite_ore.prospected": "Diatomite", - "block.gtceu.gabbro_electrotine_ore.prospected": "Electrotine", - "block.gtceu.gabbro_emerald_ore.prospected": "Emerald", - "block.gtceu.gabbro_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.gabbro_galena_ore.prospected": "Galena", - "block.gtceu.gabbro_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.gabbro_garnierite_ore.prospected": "Garnierite", - "block.gtceu.gabbro_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.gabbro_goethite_ore.prospected": "Goethite", - "block.gtceu.gabbro_gold_ore.prospected": "Gold", - "block.gtceu.gabbro_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.gabbro_graphite_ore.prospected": "Graphite", - "block.gtceu.gabbro_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.gabbro_grossular_ore.prospected": "Grossular", - "block.gtceu.gabbro_gypsum_ore.prospected": "Gypsum", - "block.gtceu.gabbro_hematite_ore.prospected": "Hematite", - "block.gtceu.gabbro_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.gabbro_iron_ore.prospected": "Iron", - "block.gtceu.gabbro_kyanite_ore.prospected": "Kyanite", - "block.gtceu.gabbro_lapis_ore.prospected": "Lapis", - "block.gtceu.gabbro_lazurite_ore.prospected": "Lazurite", - "block.gtceu.gabbro_lead_ore.prospected": "Lead", - "block.gtceu.gabbro_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.gabbro_lithium_ore.prospected": "Lithium", - "block.gtceu.gabbro_magnesite_ore.prospected": "Magnesite", - "block.gtceu.gabbro_magnetite_ore.prospected": "Magnetite", - "block.gtceu.gabbro_malachite_ore.prospected": "Malachite", - "block.gtceu.gabbro_mica_ore.prospected": "Mica", - "block.gtceu.gabbro_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.gabbro_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.gabbro_monazite_ore.prospected": "Monazite", - "block.gtceu.gabbro_naquadah_ore.prospected": "Naquadah", - "block.gtceu.gabbro_neodymium_ore.prospected": "Neodymium", - "block.gtceu.gabbro_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.gabbro_nickel_ore.prospected": "Nickel", - "block.gtceu.gabbro_oilsands_ore.prospected": "Oilsands", - "block.gtceu.gabbro_olivine_ore.prospected": "Olivine", - "block.gtceu.gabbro_opal_ore.prospected": "Opal", - "block.gtceu.gabbro_palladium_ore.prospected": "Palladium", - "block.gtceu.gabbro_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.gabbro_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.gabbro_platinum_ore.prospected": "Platinum", - "block.gtceu.gabbro_plutonium_ore.prospected": "Plutonium", - "block.gtceu.gabbro_pollucite_ore.prospected": "Pollucite", - "block.gtceu.gabbro_powellite_ore.prospected": "Powellite", - "block.gtceu.gabbro_pyrite_ore.prospected": "Pyrite", - "block.gtceu.gabbro_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.gabbro_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.gabbro_pyrope_ore.prospected": "Pyrope", - "block.gtceu.gabbro_quartzite_ore.prospected": "Quartzite", - "block.gtceu.gabbro_realgar_ore.prospected": "Realgar", - "block.gtceu.gabbro_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.gabbro_redstone_ore.prospected": "Redstone", - "block.gtceu.gabbro_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.gabbro_ruby_ore.prospected": "Ruby", - "block.gtceu.gabbro_salt_ore.prospected": "Salt", - "block.gtceu.gabbro_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.gabbro_sapphire_ore.prospected": "Sapphire", - "block.gtceu.gabbro_scheelite_ore.prospected": "Scheelite", - "block.gtceu.gabbro_silver_ore.prospected": "Silver", - "block.gtceu.gabbro_soapstone_ore.prospected": "Soapstone", - "block.gtceu.gabbro_sodalite_ore.prospected": "Sodalite", - "block.gtceu.gabbro_spessartine_ore.prospected": "Spessartine", - "block.gtceu.gabbro_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.gabbro_spodumene_ore.prospected": "Spodumene", - "block.gtceu.gabbro_stibnite_ore.prospected": "Stibnite", - "block.gtceu.gabbro_sulfur_ore.prospected": "Sulfur", - "block.gtceu.gabbro_sylvite_ore.prospected": "Sylvite", - "block.gtceu.gabbro_talc_ore.prospected": "Talc", - "block.gtceu.gabbro_tantalite_ore.prospected": "Tantalite", - "block.gtceu.gabbro_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.gabbro_thorium_ore.prospected": "Thorium", - "block.gtceu.gabbro_tin_ore.prospected": "Tin", - "block.gtceu.gabbro_topaz_ore.prospected": "Topaz", - "block.gtceu.gabbro_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.gabbro_trona_ore.prospected": "Trona", - "block.gtceu.gabbro_tungstate_ore.prospected": "Tungstate", - "block.gtceu.gabbro_uraninite_ore.prospected": "Uraninite", - "block.gtceu.gabbro_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.gabbro_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.gabbro_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.gabbro_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.gabbro_zeolite_ore.prospected": "Zeolite", - "block.gtceu.gneiss_almandine_ore.prospected": "Almandine", - "block.gtceu.gneiss_aluminium_ore.prospected": "Aluminium", - "block.gtceu.gneiss_alunite_ore.prospected": "Alunite", - "block.gtceu.gneiss_amethyst_ore.prospected": "Amethyst", - "block.gtceu.gneiss_apatite_ore.prospected": "Apatite", - "block.gtceu.gneiss_asbestos_ore.prospected": "Asbestos", - "block.gtceu.gneiss_barite_ore.prospected": "Barite", - "block.gtceu.gneiss_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.gneiss_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.gneiss_bauxite_ore.prospected": "Bauxite", - "block.gtceu.gneiss_bentonite_ore.prospected": "Bentonite", - "block.gtceu.gneiss_beryllium_ore.prospected": "Beryllium", - "block.gtceu.gneiss_bismuth_ore.prospected": "Bismuth", - "block.gtceu.gneiss_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.gneiss_borax_ore.prospected": "Borax", - "block.gtceu.gneiss_bornite_ore.prospected": "Bornite", - "block.gtceu.gneiss_calcite_ore.prospected": "Calcite", - "block.gtceu.gneiss_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.gneiss_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.gneiss_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.gneiss_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.gneiss_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.gneiss_chromite_ore.prospected": "Chromite", - "block.gtceu.gneiss_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.gneiss_coal_ore.prospected": "Coal", - "block.gtceu.gneiss_cobalt_ore.prospected": "Cobalt", - "block.gtceu.gneiss_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.gneiss_cooperite_ore.prospected": "Cooperite", - "block.gtceu.gneiss_copper_ore.prospected": "Copper", - "block.gtceu.gneiss_diamond_ore.prospected": "Diamond", - "block.gtceu.gneiss_diatomite_ore.prospected": "Diatomite", - "block.gtceu.gneiss_electrotine_ore.prospected": "Electrotine", - "block.gtceu.gneiss_emerald_ore.prospected": "Emerald", - "block.gtceu.gneiss_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.gneiss_galena_ore.prospected": "Galena", - "block.gtceu.gneiss_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.gneiss_garnierite_ore.prospected": "Garnierite", - "block.gtceu.gneiss_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.gneiss_goethite_ore.prospected": "Goethite", - "block.gtceu.gneiss_gold_ore.prospected": "Gold", - "block.gtceu.gneiss_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.gneiss_graphite_ore.prospected": "Graphite", - "block.gtceu.gneiss_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.gneiss_grossular_ore.prospected": "Grossular", - "block.gtceu.gneiss_gypsum_ore.prospected": "Gypsum", - "block.gtceu.gneiss_hematite_ore.prospected": "Hematite", - "block.gtceu.gneiss_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.gneiss_iron_ore.prospected": "Iron", - "block.gtceu.gneiss_kyanite_ore.prospected": "Kyanite", - "block.gtceu.gneiss_lapis_ore.prospected": "Lapis", - "block.gtceu.gneiss_lazurite_ore.prospected": "Lazurite", - "block.gtceu.gneiss_lead_ore.prospected": "Lead", - "block.gtceu.gneiss_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.gneiss_lithium_ore.prospected": "Lithium", - "block.gtceu.gneiss_magnesite_ore.prospected": "Magnesite", - "block.gtceu.gneiss_magnetite_ore.prospected": "Magnetite", - "block.gtceu.gneiss_malachite_ore.prospected": "Malachite", - "block.gtceu.gneiss_mica_ore.prospected": "Mica", - "block.gtceu.gneiss_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.gneiss_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.gneiss_monazite_ore.prospected": "Monazite", - "block.gtceu.gneiss_naquadah_ore.prospected": "Naquadah", - "block.gtceu.gneiss_neodymium_ore.prospected": "Neodymium", - "block.gtceu.gneiss_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.gneiss_nickel_ore.prospected": "Nickel", - "block.gtceu.gneiss_oilsands_ore.prospected": "Oilsands", - "block.gtceu.gneiss_olivine_ore.prospected": "Olivine", - "block.gtceu.gneiss_opal_ore.prospected": "Opal", - "block.gtceu.gneiss_palladium_ore.prospected": "Palladium", - "block.gtceu.gneiss_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.gneiss_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.gneiss_platinum_ore.prospected": "Platinum", - "block.gtceu.gneiss_plutonium_ore.prospected": "Plutonium", - "block.gtceu.gneiss_pollucite_ore.prospected": "Pollucite", - "block.gtceu.gneiss_powellite_ore.prospected": "Powellite", - "block.gtceu.gneiss_pyrite_ore.prospected": "Pyrite", - "block.gtceu.gneiss_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.gneiss_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.gneiss_pyrope_ore.prospected": "Pyrope", - "block.gtceu.gneiss_quartzite_ore.prospected": "Quartzite", - "block.gtceu.gneiss_realgar_ore.prospected": "Realgar", - "block.gtceu.gneiss_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.gneiss_redstone_ore.prospected": "Redstone", - "block.gtceu.gneiss_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.gneiss_ruby_ore.prospected": "Ruby", - "block.gtceu.gneiss_salt_ore.prospected": "Salt", - "block.gtceu.gneiss_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.gneiss_sapphire_ore.prospected": "Sapphire", - "block.gtceu.gneiss_scheelite_ore.prospected": "Scheelite", - "block.gtceu.gneiss_silver_ore.prospected": "Silver", - "block.gtceu.gneiss_soapstone_ore.prospected": "Soapstone", - "block.gtceu.gneiss_sodalite_ore.prospected": "Sodalite", - "block.gtceu.gneiss_spessartine_ore.prospected": "Spessartine", - "block.gtceu.gneiss_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.gneiss_spodumene_ore.prospected": "Spodumene", - "block.gtceu.gneiss_stibnite_ore.prospected": "Stibnite", - "block.gtceu.gneiss_sulfur_ore.prospected": "Sulfur", - "block.gtceu.gneiss_sylvite_ore.prospected": "Sylvite", - "block.gtceu.gneiss_talc_ore.prospected": "Talc", - "block.gtceu.gneiss_tantalite_ore.prospected": "Tantalite", - "block.gtceu.gneiss_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.gneiss_thorium_ore.prospected": "Thorium", - "block.gtceu.gneiss_tin_ore.prospected": "Tin", - "block.gtceu.gneiss_topaz_ore.prospected": "Topaz", - "block.gtceu.gneiss_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.gneiss_trona_ore.prospected": "Trona", - "block.gtceu.gneiss_tungstate_ore.prospected": "Tungstate", - "block.gtceu.gneiss_uraninite_ore.prospected": "Uraninite", - "block.gtceu.gneiss_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.gneiss_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.gneiss_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.gneiss_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.gneiss_zeolite_ore.prospected": "Zeolite", - "block.gtceu.granite_almandine_ore.prospected": "Almandine", - "block.gtceu.granite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.granite_alunite_ore.prospected": "Alunite", - "block.gtceu.granite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.granite_apatite_ore.prospected": "Apatite", - "block.gtceu.granite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.granite_barite_ore.prospected": "Barite", - "block.gtceu.granite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.granite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.granite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.granite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.granite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.granite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.granite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.granite_borax_ore.prospected": "Borax", - "block.gtceu.granite_bornite_ore.prospected": "Bornite", - "block.gtceu.granite_calcite_ore.prospected": "Calcite", - "block.gtceu.granite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.granite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.granite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.granite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.granite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.granite_chromite_ore.prospected": "Chromite", - "block.gtceu.granite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.granite_coal_ore.prospected": "Coal", - "block.gtceu.granite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.granite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.granite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.granite_copper_ore.prospected": "Copper", - "block.gtceu.granite_diamond_ore.prospected": "Diamond", - "block.gtceu.granite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.granite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.granite_emerald_ore.prospected": "Emerald", - "block.gtceu.granite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.granite_galena_ore.prospected": "Galena", - "block.gtceu.granite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.granite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.granite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.granite_goethite_ore.prospected": "Goethite", - "block.gtceu.granite_gold_ore.prospected": "Gold", - "block.gtceu.granite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.granite_graphite_ore.prospected": "Graphite", - "block.gtceu.granite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.granite_grossular_ore.prospected": "Grossular", - "block.gtceu.granite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.granite_hematite_ore.prospected": "Hematite", - "block.gtceu.granite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.granite_iron_ore.prospected": "Iron", - "block.gtceu.granite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.granite_lapis_ore.prospected": "Lapis", - "block.gtceu.granite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.granite_lead_ore.prospected": "Lead", - "block.gtceu.granite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.granite_lithium_ore.prospected": "Lithium", - "block.gtceu.granite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.granite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.granite_malachite_ore.prospected": "Malachite", - "block.gtceu.granite_mica_ore.prospected": "Mica", - "block.gtceu.granite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.granite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.granite_monazite_ore.prospected": "Monazite", - "block.gtceu.granite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.granite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.granite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.granite_nickel_ore.prospected": "Nickel", - "block.gtceu.granite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.granite_olivine_ore.prospected": "Olivine", - "block.gtceu.granite_opal_ore.prospected": "Opal", - "block.gtceu.granite_palladium_ore.prospected": "Palladium", - "block.gtceu.granite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.granite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.granite_platinum_ore.prospected": "Platinum", - "block.gtceu.granite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.granite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.granite_powellite_ore.prospected": "Powellite", - "block.gtceu.granite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.granite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.granite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.granite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.granite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.granite_realgar_ore.prospected": "Realgar", - "block.gtceu.granite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.granite_redstone_ore.prospected": "Redstone", - "block.gtceu.granite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.granite_ruby_ore.prospected": "Ruby", - "block.gtceu.granite_salt_ore.prospected": "Salt", - "block.gtceu.granite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.granite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.granite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.granite_silver_ore.prospected": "Silver", - "block.gtceu.granite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.granite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.granite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.granite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.granite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.granite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.granite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.granite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.granite_talc_ore.prospected": "Talc", - "block.gtceu.granite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.granite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.granite_thorium_ore.prospected": "Thorium", - "block.gtceu.granite_tin_ore.prospected": "Tin", - "block.gtceu.granite_topaz_ore.prospected": "Topaz", - "block.gtceu.granite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.granite_trona_ore.prospected": "Trona", - "block.gtceu.granite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.granite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.granite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.granite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.granite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.granite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.granite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.limestone_almandine_ore.prospected": "Almandine", - "block.gtceu.limestone_aluminium_ore.prospected": "Aluminium", - "block.gtceu.limestone_alunite_ore.prospected": "Alunite", - "block.gtceu.limestone_amethyst_ore.prospected": "Amethyst", - "block.gtceu.limestone_apatite_ore.prospected": "Apatite", - "block.gtceu.limestone_asbestos_ore.prospected": "Asbestos", - "block.gtceu.limestone_barite_ore.prospected": "Barite", - "block.gtceu.limestone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.limestone_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.limestone_bauxite_ore.prospected": "Bauxite", - "block.gtceu.limestone_bentonite_ore.prospected": "Bentonite", - "block.gtceu.limestone_beryllium_ore.prospected": "Beryllium", - "block.gtceu.limestone_bismuth_ore.prospected": "Bismuth", - "block.gtceu.limestone_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.limestone_borax_ore.prospected": "Borax", - "block.gtceu.limestone_bornite_ore.prospected": "Bornite", - "block.gtceu.limestone_calcite_ore.prospected": "Calcite", - "block.gtceu.limestone_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.limestone_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.limestone_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.limestone_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.limestone_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.limestone_chromite_ore.prospected": "Chromite", - "block.gtceu.limestone_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.limestone_coal_ore.prospected": "Coal", - "block.gtceu.limestone_cobalt_ore.prospected": "Cobalt", - "block.gtceu.limestone_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.limestone_cooperite_ore.prospected": "Cooperite", - "block.gtceu.limestone_copper_ore.prospected": "Copper", - "block.gtceu.limestone_diamond_ore.prospected": "Diamond", - "block.gtceu.limestone_diatomite_ore.prospected": "Diatomite", - "block.gtceu.limestone_electrotine_ore.prospected": "Electrotine", - "block.gtceu.limestone_emerald_ore.prospected": "Emerald", - "block.gtceu.limestone_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.limestone_galena_ore.prospected": "Galena", - "block.gtceu.limestone_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.limestone_garnierite_ore.prospected": "Garnierite", - "block.gtceu.limestone_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.limestone_goethite_ore.prospected": "Goethite", - "block.gtceu.limestone_gold_ore.prospected": "Gold", - "block.gtceu.limestone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.limestone_graphite_ore.prospected": "Graphite", - "block.gtceu.limestone_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.limestone_grossular_ore.prospected": "Grossular", - "block.gtceu.limestone_gypsum_ore.prospected": "Gypsum", - "block.gtceu.limestone_hematite_ore.prospected": "Hematite", - "block.gtceu.limestone_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.limestone_iron_ore.prospected": "Iron", - "block.gtceu.limestone_kyanite_ore.prospected": "Kyanite", - "block.gtceu.limestone_lapis_ore.prospected": "Lapis", - "block.gtceu.limestone_lazurite_ore.prospected": "Lazurite", - "block.gtceu.limestone_lead_ore.prospected": "Lead", - "block.gtceu.limestone_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.limestone_lithium_ore.prospected": "Lithium", - "block.gtceu.limestone_magnesite_ore.prospected": "Magnesite", - "block.gtceu.limestone_magnetite_ore.prospected": "Magnetite", - "block.gtceu.limestone_malachite_ore.prospected": "Malachite", - "block.gtceu.limestone_mica_ore.prospected": "Mica", - "block.gtceu.limestone_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.limestone_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.limestone_monazite_ore.prospected": "Monazite", - "block.gtceu.limestone_naquadah_ore.prospected": "Naquadah", - "block.gtceu.limestone_neodymium_ore.prospected": "Neodymium", - "block.gtceu.limestone_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.limestone_nickel_ore.prospected": "Nickel", - "block.gtceu.limestone_oilsands_ore.prospected": "Oilsands", - "block.gtceu.limestone_olivine_ore.prospected": "Olivine", - "block.gtceu.limestone_opal_ore.prospected": "Opal", - "block.gtceu.limestone_palladium_ore.prospected": "Palladium", - "block.gtceu.limestone_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.limestone_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.limestone_platinum_ore.prospected": "Platinum", - "block.gtceu.limestone_plutonium_ore.prospected": "Plutonium", - "block.gtceu.limestone_pollucite_ore.prospected": "Pollucite", - "block.gtceu.limestone_powellite_ore.prospected": "Powellite", - "block.gtceu.limestone_pyrite_ore.prospected": "Pyrite", - "block.gtceu.limestone_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.limestone_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.limestone_pyrope_ore.prospected": "Pyrope", - "block.gtceu.limestone_quartzite_ore.prospected": "Quartzite", - "block.gtceu.limestone_realgar_ore.prospected": "Realgar", - "block.gtceu.limestone_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.limestone_redstone_ore.prospected": "Redstone", - "block.gtceu.limestone_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.limestone_ruby_ore.prospected": "Ruby", - "block.gtceu.limestone_salt_ore.prospected": "Salt", - "block.gtceu.limestone_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.limestone_sapphire_ore.prospected": "Sapphire", - "block.gtceu.limestone_scheelite_ore.prospected": "Scheelite", - "block.gtceu.limestone_silver_ore.prospected": "Silver", - "block.gtceu.limestone_soapstone_ore.prospected": "Soapstone", - "block.gtceu.limestone_sodalite_ore.prospected": "Sodalite", - "block.gtceu.limestone_spessartine_ore.prospected": "Spessartine", - "block.gtceu.limestone_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.limestone_spodumene_ore.prospected": "Spodumene", - "block.gtceu.limestone_stibnite_ore.prospected": "Stibnite", - "block.gtceu.limestone_sulfur_ore.prospected": "Sulfur", - "block.gtceu.limestone_sylvite_ore.prospected": "Sylvite", - "block.gtceu.limestone_talc_ore.prospected": "Talc", - "block.gtceu.limestone_tantalite_ore.prospected": "Tantalite", - "block.gtceu.limestone_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.limestone_thorium_ore.prospected": "Thorium", - "block.gtceu.limestone_tin_ore.prospected": "Tin", - "block.gtceu.limestone_topaz_ore.prospected": "Topaz", - "block.gtceu.limestone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.limestone_trona_ore.prospected": "Trona", - "block.gtceu.limestone_tungstate_ore.prospected": "Tungstate", - "block.gtceu.limestone_uraninite_ore.prospected": "Uraninite", - "block.gtceu.limestone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.limestone_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.limestone_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.limestone_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.limestone_zeolite_ore.prospected": "Zeolite", - "block.gtceu.marble_almandine_ore.prospected": "Almandine", - "block.gtceu.marble_aluminium_ore.prospected": "Aluminium", - "block.gtceu.marble_alunite_ore.prospected": "Alunite", - "block.gtceu.marble_amethyst_ore.prospected": "Amethyst", - "block.gtceu.marble_apatite_ore.prospected": "Apatite", - "block.gtceu.marble_asbestos_ore.prospected": "Asbestos", - "block.gtceu.marble_barite_ore.prospected": "Barite", - "block.gtceu.marble_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.marble_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.marble_bauxite_ore.prospected": "Bauxite", - "block.gtceu.marble_bentonite_ore.prospected": "Bentonite", - "block.gtceu.marble_beryllium_ore.prospected": "Beryllium", - "block.gtceu.marble_bismuth_ore.prospected": "Bismuth", - "block.gtceu.marble_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.marble_borax_ore.prospected": "Borax", - "block.gtceu.marble_bornite_ore.prospected": "Bornite", - "block.gtceu.marble_calcite_ore.prospected": "Calcite", - "block.gtceu.marble_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.marble_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.marble_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.marble_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.marble_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.marble_chromite_ore.prospected": "Chromite", - "block.gtceu.marble_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.marble_coal_ore.prospected": "Coal", - "block.gtceu.marble_cobalt_ore.prospected": "Cobalt", - "block.gtceu.marble_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.marble_cooperite_ore.prospected": "Cooperite", - "block.gtceu.marble_copper_ore.prospected": "Copper", - "block.gtceu.marble_diamond_ore.prospected": "Diamond", - "block.gtceu.marble_diatomite_ore.prospected": "Diatomite", - "block.gtceu.marble_electrotine_ore.prospected": "Electrotine", - "block.gtceu.marble_emerald_ore.prospected": "Emerald", - "block.gtceu.marble_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.marble_galena_ore.prospected": "Galena", - "block.gtceu.marble_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.marble_garnierite_ore.prospected": "Garnierite", - "block.gtceu.marble_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.marble_goethite_ore.prospected": "Goethite", - "block.gtceu.marble_gold_ore.prospected": "Gold", - "block.gtceu.marble_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.marble_graphite_ore.prospected": "Graphite", - "block.gtceu.marble_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.marble_grossular_ore.prospected": "Grossular", - "block.gtceu.marble_gypsum_ore.prospected": "Gypsum", - "block.gtceu.marble_hematite_ore.prospected": "Hematite", - "block.gtceu.marble_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.marble_iron_ore.prospected": "Iron", - "block.gtceu.marble_kyanite_ore.prospected": "Kyanite", - "block.gtceu.marble_lapis_ore.prospected": "Lapis", - "block.gtceu.marble_lazurite_ore.prospected": "Lazurite", - "block.gtceu.marble_lead_ore.prospected": "Lead", - "block.gtceu.marble_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.marble_lithium_ore.prospected": "Lithium", - "block.gtceu.marble_magnesite_ore.prospected": "Magnesite", - "block.gtceu.marble_magnetite_ore.prospected": "Magnetite", - "block.gtceu.marble_malachite_ore.prospected": "Malachite", - "block.gtceu.marble_mica_ore.prospected": "Mica", - "block.gtceu.marble_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.marble_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.marble_monazite_ore.prospected": "Monazite", - "block.gtceu.marble_naquadah_ore.prospected": "Naquadah", - "block.gtceu.marble_neodymium_ore.prospected": "Neodymium", - "block.gtceu.marble_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.marble_nickel_ore.prospected": "Nickel", - "block.gtceu.marble_oilsands_ore.prospected": "Oilsands", - "block.gtceu.marble_olivine_ore.prospected": "Olivine", - "block.gtceu.marble_opal_ore.prospected": "Opal", - "block.gtceu.marble_palladium_ore.prospected": "Palladium", - "block.gtceu.marble_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.marble_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.marble_platinum_ore.prospected": "Platinum", - "block.gtceu.marble_plutonium_ore.prospected": "Plutonium", - "block.gtceu.marble_pollucite_ore.prospected": "Pollucite", - "block.gtceu.marble_powellite_ore.prospected": "Powellite", - "block.gtceu.marble_pyrite_ore.prospected": "Pyrite", - "block.gtceu.marble_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.marble_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.marble_pyrope_ore.prospected": "Pyrope", - "block.gtceu.marble_quartzite_ore.prospected": "Quartzite", - "block.gtceu.marble_realgar_ore.prospected": "Realgar", - "block.gtceu.marble_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.marble_redstone_ore.prospected": "Redstone", - "block.gtceu.marble_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.marble_ruby_ore.prospected": "Ruby", - "block.gtceu.marble_salt_ore.prospected": "Salt", - "block.gtceu.marble_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.marble_sapphire_ore.prospected": "Sapphire", - "block.gtceu.marble_scheelite_ore.prospected": "Scheelite", - "block.gtceu.marble_silver_ore.prospected": "Silver", - "block.gtceu.marble_soapstone_ore.prospected": "Soapstone", - "block.gtceu.marble_sodalite_ore.prospected": "Sodalite", - "block.gtceu.marble_spessartine_ore.prospected": "Spessartine", - "block.gtceu.marble_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.marble_spodumene_ore.prospected": "Spodumene", - "block.gtceu.marble_stibnite_ore.prospected": "Stibnite", - "block.gtceu.marble_sulfur_ore.prospected": "Sulfur", - "block.gtceu.marble_sylvite_ore.prospected": "Sylvite", - "block.gtceu.marble_talc_ore.prospected": "Talc", - "block.gtceu.marble_tantalite_ore.prospected": "Tantalite", - "block.gtceu.marble_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.marble_thorium_ore.prospected": "Thorium", - "block.gtceu.marble_tin_ore.prospected": "Tin", - "block.gtceu.marble_topaz_ore.prospected": "Topaz", - "block.gtceu.marble_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.marble_trona_ore.prospected": "Trona", - "block.gtceu.marble_tungstate_ore.prospected": "Tungstate", - "block.gtceu.marble_uraninite_ore.prospected": "Uraninite", - "block.gtceu.marble_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.marble_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.marble_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.marble_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.marble_zeolite_ore.prospected": "Zeolite", - "block.gtceu.phyllite_almandine_ore.prospected": "Almandine", - "block.gtceu.phyllite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.phyllite_alunite_ore.prospected": "Alunite", - "block.gtceu.phyllite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.phyllite_apatite_ore.prospected": "Apatite", - "block.gtceu.phyllite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.phyllite_barite_ore.prospected": "Barite", - "block.gtceu.phyllite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.phyllite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.phyllite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.phyllite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.phyllite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.phyllite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.phyllite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.phyllite_borax_ore.prospected": "Borax", - "block.gtceu.phyllite_bornite_ore.prospected": "Bornite", - "block.gtceu.phyllite_calcite_ore.prospected": "Calcite", - "block.gtceu.phyllite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.phyllite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.phyllite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.phyllite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.phyllite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.phyllite_chromite_ore.prospected": "Chromite", - "block.gtceu.phyllite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.phyllite_coal_ore.prospected": "Coal", - "block.gtceu.phyllite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.phyllite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.phyllite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.phyllite_copper_ore.prospected": "Copper", - "block.gtceu.phyllite_diamond_ore.prospected": "Diamond", - "block.gtceu.phyllite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.phyllite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.phyllite_emerald_ore.prospected": "Emerald", - "block.gtceu.phyllite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.phyllite_galena_ore.prospected": "Galena", - "block.gtceu.phyllite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.phyllite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.phyllite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.phyllite_goethite_ore.prospected": "Goethite", - "block.gtceu.phyllite_gold_ore.prospected": "Gold", - "block.gtceu.phyllite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.phyllite_graphite_ore.prospected": "Graphite", - "block.gtceu.phyllite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.phyllite_grossular_ore.prospected": "Grossular", - "block.gtceu.phyllite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.phyllite_hematite_ore.prospected": "Hematite", - "block.gtceu.phyllite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.phyllite_iron_ore.prospected": "Iron", - "block.gtceu.phyllite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.phyllite_lapis_ore.prospected": "Lapis", - "block.gtceu.phyllite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.phyllite_lead_ore.prospected": "Lead", - "block.gtceu.phyllite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.phyllite_lithium_ore.prospected": "Lithium", - "block.gtceu.phyllite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.phyllite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.phyllite_malachite_ore.prospected": "Malachite", - "block.gtceu.phyllite_mica_ore.prospected": "Mica", - "block.gtceu.phyllite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.phyllite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.phyllite_monazite_ore.prospected": "Monazite", - "block.gtceu.phyllite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.phyllite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.phyllite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.phyllite_nickel_ore.prospected": "Nickel", - "block.gtceu.phyllite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.phyllite_olivine_ore.prospected": "Olivine", - "block.gtceu.phyllite_opal_ore.prospected": "Opal", - "block.gtceu.phyllite_palladium_ore.prospected": "Palladium", - "block.gtceu.phyllite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.phyllite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.phyllite_platinum_ore.prospected": "Platinum", - "block.gtceu.phyllite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.phyllite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.phyllite_powellite_ore.prospected": "Powellite", - "block.gtceu.phyllite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.phyllite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.phyllite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.phyllite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.phyllite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.phyllite_realgar_ore.prospected": "Realgar", - "block.gtceu.phyllite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.phyllite_redstone_ore.prospected": "Redstone", - "block.gtceu.phyllite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.phyllite_ruby_ore.prospected": "Ruby", - "block.gtceu.phyllite_salt_ore.prospected": "Salt", - "block.gtceu.phyllite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.phyllite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.phyllite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.phyllite_silver_ore.prospected": "Silver", - "block.gtceu.phyllite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.phyllite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.phyllite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.phyllite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.phyllite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.phyllite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.phyllite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.phyllite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.phyllite_talc_ore.prospected": "Talc", - "block.gtceu.phyllite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.phyllite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.phyllite_thorium_ore.prospected": "Thorium", - "block.gtceu.phyllite_tin_ore.prospected": "Tin", - "block.gtceu.phyllite_topaz_ore.prospected": "Topaz", - "block.gtceu.phyllite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.phyllite_trona_ore.prospected": "Trona", - "block.gtceu.phyllite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.phyllite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.phyllite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.phyllite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.phyllite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.phyllite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.phyllite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.quartzite_almandine_ore.prospected": "Almandine", - "block.gtceu.quartzite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.quartzite_alunite_ore.prospected": "Alunite", - "block.gtceu.quartzite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.quartzite_apatite_ore.prospected": "Apatite", - "block.gtceu.quartzite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.quartzite_barite_ore.prospected": "Barite", - "block.gtceu.quartzite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.quartzite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.quartzite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.quartzite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.quartzite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.quartzite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.quartzite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.quartzite_borax_ore.prospected": "Borax", - "block.gtceu.quartzite_bornite_ore.prospected": "Bornite", - "block.gtceu.quartzite_calcite_ore.prospected": "Calcite", - "block.gtceu.quartzite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.quartzite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.quartzite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.quartzite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.quartzite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.quartzite_chromite_ore.prospected": "Chromite", - "block.gtceu.quartzite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.quartzite_coal_ore.prospected": "Coal", - "block.gtceu.quartzite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.quartzite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.quartzite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.quartzite_copper_ore.prospected": "Copper", - "block.gtceu.quartzite_diamond_ore.prospected": "Diamond", - "block.gtceu.quartzite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.quartzite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.quartzite_emerald_ore.prospected": "Emerald", - "block.gtceu.quartzite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.quartzite_galena_ore.prospected": "Galena", - "block.gtceu.quartzite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.quartzite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.quartzite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.quartzite_goethite_ore.prospected": "Goethite", - "block.gtceu.quartzite_gold_ore.prospected": "Gold", - "block.gtceu.quartzite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.quartzite_graphite_ore.prospected": "Graphite", - "block.gtceu.quartzite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.quartzite_grossular_ore.prospected": "Grossular", - "block.gtceu.quartzite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.quartzite_hematite_ore.prospected": "Hematite", - "block.gtceu.quartzite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.quartzite_iron_ore.prospected": "Iron", - "block.gtceu.quartzite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.quartzite_lapis_ore.prospected": "Lapis", - "block.gtceu.quartzite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.quartzite_lead_ore.prospected": "Lead", - "block.gtceu.quartzite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.quartzite_lithium_ore.prospected": "Lithium", - "block.gtceu.quartzite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.quartzite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.quartzite_malachite_ore.prospected": "Malachite", - "block.gtceu.quartzite_mica_ore.prospected": "Mica", - "block.gtceu.quartzite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.quartzite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.quartzite_monazite_ore.prospected": "Monazite", - "block.gtceu.quartzite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.quartzite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.quartzite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.quartzite_nickel_ore.prospected": "Nickel", - "block.gtceu.quartzite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.quartzite_olivine_ore.prospected": "Olivine", - "block.gtceu.quartzite_opal_ore.prospected": "Opal", - "block.gtceu.quartzite_palladium_ore.prospected": "Palladium", - "block.gtceu.quartzite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.quartzite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.quartzite_platinum_ore.prospected": "Platinum", - "block.gtceu.quartzite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.quartzite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.quartzite_powellite_ore.prospected": "Powellite", - "block.gtceu.quartzite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.quartzite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.quartzite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.quartzite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.quartzite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.quartzite_realgar_ore.prospected": "Realgar", - "block.gtceu.quartzite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.quartzite_redstone_ore.prospected": "Redstone", - "block.gtceu.quartzite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.quartzite_ruby_ore.prospected": "Ruby", - "block.gtceu.quartzite_salt_ore.prospected": "Salt", - "block.gtceu.quartzite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.quartzite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.quartzite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.quartzite_silver_ore.prospected": "Silver", - "block.gtceu.quartzite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.quartzite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.quartzite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.quartzite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.quartzite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.quartzite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.quartzite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.quartzite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.quartzite_talc_ore.prospected": "Talc", - "block.gtceu.quartzite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.quartzite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.quartzite_thorium_ore.prospected": "Thorium", - "block.gtceu.quartzite_tin_ore.prospected": "Tin", - "block.gtceu.quartzite_topaz_ore.prospected": "Topaz", - "block.gtceu.quartzite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.quartzite_trona_ore.prospected": "Trona", - "block.gtceu.quartzite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.quartzite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.quartzite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.quartzite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.quartzite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.quartzite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.quartzite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.rhyolite_almandine_ore.prospected": "Almandine", - "block.gtceu.rhyolite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.rhyolite_alunite_ore.prospected": "Alunite", - "block.gtceu.rhyolite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.rhyolite_apatite_ore.prospected": "Apatite", - "block.gtceu.rhyolite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.rhyolite_barite_ore.prospected": "Barite", - "block.gtceu.rhyolite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.rhyolite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.rhyolite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.rhyolite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.rhyolite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.rhyolite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.rhyolite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.rhyolite_borax_ore.prospected": "Borax", - "block.gtceu.rhyolite_bornite_ore.prospected": "Bornite", - "block.gtceu.rhyolite_calcite_ore.prospected": "Calcite", - "block.gtceu.rhyolite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.rhyolite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.rhyolite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.rhyolite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.rhyolite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.rhyolite_chromite_ore.prospected": "Chromite", - "block.gtceu.rhyolite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.rhyolite_coal_ore.prospected": "Coal", - "block.gtceu.rhyolite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.rhyolite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.rhyolite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.rhyolite_copper_ore.prospected": "Copper", - "block.gtceu.rhyolite_diamond_ore.prospected": "Diamond", - "block.gtceu.rhyolite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.rhyolite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.rhyolite_emerald_ore.prospected": "Emerald", - "block.gtceu.rhyolite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.rhyolite_galena_ore.prospected": "Galena", - "block.gtceu.rhyolite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.rhyolite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.rhyolite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.rhyolite_goethite_ore.prospected": "Goethite", - "block.gtceu.rhyolite_gold_ore.prospected": "Gold", - "block.gtceu.rhyolite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.rhyolite_graphite_ore.prospected": "Graphite", - "block.gtceu.rhyolite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.rhyolite_grossular_ore.prospected": "Grossular", - "block.gtceu.rhyolite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.rhyolite_hematite_ore.prospected": "Hematite", - "block.gtceu.rhyolite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.rhyolite_iron_ore.prospected": "Iron", - "block.gtceu.rhyolite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.rhyolite_lapis_ore.prospected": "Lapis", - "block.gtceu.rhyolite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.rhyolite_lead_ore.prospected": "Lead", - "block.gtceu.rhyolite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.rhyolite_lithium_ore.prospected": "Lithium", - "block.gtceu.rhyolite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.rhyolite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.rhyolite_malachite_ore.prospected": "Malachite", - "block.gtceu.rhyolite_mica_ore.prospected": "Mica", - "block.gtceu.rhyolite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.rhyolite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.rhyolite_monazite_ore.prospected": "Monazite", - "block.gtceu.rhyolite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.rhyolite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.rhyolite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.rhyolite_nickel_ore.prospected": "Nickel", - "block.gtceu.rhyolite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.rhyolite_olivine_ore.prospected": "Olivine", - "block.gtceu.rhyolite_opal_ore.prospected": "Opal", - "block.gtceu.rhyolite_palladium_ore.prospected": "Palladium", - "block.gtceu.rhyolite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.rhyolite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.rhyolite_platinum_ore.prospected": "Platinum", - "block.gtceu.rhyolite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.rhyolite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.rhyolite_powellite_ore.prospected": "Powellite", - "block.gtceu.rhyolite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.rhyolite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.rhyolite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.rhyolite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.rhyolite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.rhyolite_realgar_ore.prospected": "Realgar", - "block.gtceu.rhyolite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.rhyolite_redstone_ore.prospected": "Redstone", - "block.gtceu.rhyolite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.rhyolite_ruby_ore.prospected": "Ruby", - "block.gtceu.rhyolite_salt_ore.prospected": "Salt", - "block.gtceu.rhyolite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.rhyolite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.rhyolite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.rhyolite_silver_ore.prospected": "Silver", - "block.gtceu.rhyolite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.rhyolite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.rhyolite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.rhyolite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.rhyolite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.rhyolite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.rhyolite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.rhyolite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.rhyolite_talc_ore.prospected": "Talc", - "block.gtceu.rhyolite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.rhyolite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.rhyolite_thorium_ore.prospected": "Thorium", - "block.gtceu.rhyolite_tin_ore.prospected": "Tin", - "block.gtceu.rhyolite_topaz_ore.prospected": "Topaz", - "block.gtceu.rhyolite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.rhyolite_trona_ore.prospected": "Trona", - "block.gtceu.rhyolite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.rhyolite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.rhyolite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.rhyolite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.rhyolite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.rhyolite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.rhyolite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.schist_almandine_ore.prospected": "Almandine", - "block.gtceu.schist_aluminium_ore.prospected": "Aluminium", - "block.gtceu.schist_alunite_ore.prospected": "Alunite", - "block.gtceu.schist_amethyst_ore.prospected": "Amethyst", - "block.gtceu.schist_apatite_ore.prospected": "Apatite", - "block.gtceu.schist_asbestos_ore.prospected": "Asbestos", - "block.gtceu.schist_barite_ore.prospected": "Barite", - "block.gtceu.schist_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.schist_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.schist_bauxite_ore.prospected": "Bauxite", - "block.gtceu.schist_bentonite_ore.prospected": "Bentonite", - "block.gtceu.schist_beryllium_ore.prospected": "Beryllium", - "block.gtceu.schist_bismuth_ore.prospected": "Bismuth", - "block.gtceu.schist_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.schist_borax_ore.prospected": "Borax", - "block.gtceu.schist_bornite_ore.prospected": "Bornite", - "block.gtceu.schist_calcite_ore.prospected": "Calcite", - "block.gtceu.schist_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.schist_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.schist_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.schist_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.schist_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.schist_chromite_ore.prospected": "Chromite", - "block.gtceu.schist_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.schist_coal_ore.prospected": "Coal", - "block.gtceu.schist_cobalt_ore.prospected": "Cobalt", - "block.gtceu.schist_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.schist_cooperite_ore.prospected": "Cooperite", - "block.gtceu.schist_copper_ore.prospected": "Copper", - "block.gtceu.schist_diamond_ore.prospected": "Diamond", - "block.gtceu.schist_diatomite_ore.prospected": "Diatomite", - "block.gtceu.schist_electrotine_ore.prospected": "Electrotine", - "block.gtceu.schist_emerald_ore.prospected": "Emerald", - "block.gtceu.schist_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.schist_galena_ore.prospected": "Galena", - "block.gtceu.schist_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.schist_garnierite_ore.prospected": "Garnierite", - "block.gtceu.schist_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.schist_goethite_ore.prospected": "Goethite", - "block.gtceu.schist_gold_ore.prospected": "Gold", - "block.gtceu.schist_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.schist_graphite_ore.prospected": "Graphite", - "block.gtceu.schist_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.schist_grossular_ore.prospected": "Grossular", - "block.gtceu.schist_gypsum_ore.prospected": "Gypsum", - "block.gtceu.schist_hematite_ore.prospected": "Hematite", - "block.gtceu.schist_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.schist_iron_ore.prospected": "Iron", - "block.gtceu.schist_kyanite_ore.prospected": "Kyanite", - "block.gtceu.schist_lapis_ore.prospected": "Lapis", - "block.gtceu.schist_lazurite_ore.prospected": "Lazurite", - "block.gtceu.schist_lead_ore.prospected": "Lead", - "block.gtceu.schist_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.schist_lithium_ore.prospected": "Lithium", - "block.gtceu.schist_magnesite_ore.prospected": "Magnesite", - "block.gtceu.schist_magnetite_ore.prospected": "Magnetite", - "block.gtceu.schist_malachite_ore.prospected": "Malachite", - "block.gtceu.schist_mica_ore.prospected": "Mica", - "block.gtceu.schist_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.schist_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.schist_monazite_ore.prospected": "Monazite", - "block.gtceu.schist_naquadah_ore.prospected": "Naquadah", - "block.gtceu.schist_neodymium_ore.prospected": "Neodymium", - "block.gtceu.schist_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.schist_nickel_ore.prospected": "Nickel", - "block.gtceu.schist_oilsands_ore.prospected": "Oilsands", - "block.gtceu.schist_olivine_ore.prospected": "Olivine", - "block.gtceu.schist_opal_ore.prospected": "Opal", - "block.gtceu.schist_palladium_ore.prospected": "Palladium", - "block.gtceu.schist_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.schist_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.schist_platinum_ore.prospected": "Platinum", - "block.gtceu.schist_plutonium_ore.prospected": "Plutonium", - "block.gtceu.schist_pollucite_ore.prospected": "Pollucite", - "block.gtceu.schist_powellite_ore.prospected": "Powellite", - "block.gtceu.schist_pyrite_ore.prospected": "Pyrite", - "block.gtceu.schist_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.schist_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.schist_pyrope_ore.prospected": "Pyrope", - "block.gtceu.schist_quartzite_ore.prospected": "Quartzite", - "block.gtceu.schist_realgar_ore.prospected": "Realgar", - "block.gtceu.schist_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.schist_redstone_ore.prospected": "Redstone", - "block.gtceu.schist_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.schist_ruby_ore.prospected": "Ruby", - "block.gtceu.schist_salt_ore.prospected": "Salt", - "block.gtceu.schist_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.schist_sapphire_ore.prospected": "Sapphire", - "block.gtceu.schist_scheelite_ore.prospected": "Scheelite", - "block.gtceu.schist_silver_ore.prospected": "Silver", - "block.gtceu.schist_soapstone_ore.prospected": "Soapstone", - "block.gtceu.schist_sodalite_ore.prospected": "Sodalite", - "block.gtceu.schist_spessartine_ore.prospected": "Spessartine", - "block.gtceu.schist_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.schist_spodumene_ore.prospected": "Spodumene", - "block.gtceu.schist_stibnite_ore.prospected": "Stibnite", - "block.gtceu.schist_sulfur_ore.prospected": "Sulfur", - "block.gtceu.schist_sylvite_ore.prospected": "Sylvite", - "block.gtceu.schist_talc_ore.prospected": "Talc", - "block.gtceu.schist_tantalite_ore.prospected": "Tantalite", - "block.gtceu.schist_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.schist_thorium_ore.prospected": "Thorium", - "block.gtceu.schist_tin_ore.prospected": "Tin", - "block.gtceu.schist_topaz_ore.prospected": "Topaz", - "block.gtceu.schist_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.schist_trona_ore.prospected": "Trona", - "block.gtceu.schist_tungstate_ore.prospected": "Tungstate", - "block.gtceu.schist_uraninite_ore.prospected": "Uraninite", - "block.gtceu.schist_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.schist_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.schist_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.schist_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.schist_zeolite_ore.prospected": "Zeolite", - "block.gtceu.shale_almandine_ore.prospected": "Almandine", - "block.gtceu.shale_aluminium_ore.prospected": "Aluminium", - "block.gtceu.shale_alunite_ore.prospected": "Alunite", - "block.gtceu.shale_amethyst_ore.prospected": "Amethyst", - "block.gtceu.shale_apatite_ore.prospected": "Apatite", - "block.gtceu.shale_asbestos_ore.prospected": "Asbestos", - "block.gtceu.shale_barite_ore.prospected": "Barite", - "block.gtceu.shale_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.shale_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.shale_bauxite_ore.prospected": "Bauxite", - "block.gtceu.shale_bentonite_ore.prospected": "Bentonite", - "block.gtceu.shale_beryllium_ore.prospected": "Beryllium", - "block.gtceu.shale_bismuth_ore.prospected": "Bismuth", - "block.gtceu.shale_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.shale_borax_ore.prospected": "Borax", - "block.gtceu.shale_bornite_ore.prospected": "Bornite", - "block.gtceu.shale_calcite_ore.prospected": "Calcite", - "block.gtceu.shale_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.shale_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.shale_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.shale_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.shale_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.shale_chromite_ore.prospected": "Chromite", - "block.gtceu.shale_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.shale_coal_ore.prospected": "Coal", - "block.gtceu.shale_cobalt_ore.prospected": "Cobalt", - "block.gtceu.shale_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.shale_cooperite_ore.prospected": "Cooperite", - "block.gtceu.shale_copper_ore.prospected": "Copper", - "block.gtceu.shale_diamond_ore.prospected": "Diamond", - "block.gtceu.shale_diatomite_ore.prospected": "Diatomite", - "block.gtceu.shale_electrotine_ore.prospected": "Electrotine", - "block.gtceu.shale_emerald_ore.prospected": "Emerald", - "block.gtceu.shale_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.shale_galena_ore.prospected": "Galena", - "block.gtceu.shale_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.shale_garnierite_ore.prospected": "Garnierite", - "block.gtceu.shale_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.shale_goethite_ore.prospected": "Goethite", - "block.gtceu.shale_gold_ore.prospected": "Gold", - "block.gtceu.shale_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.shale_graphite_ore.prospected": "Graphite", - "block.gtceu.shale_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.shale_grossular_ore.prospected": "Grossular", - "block.gtceu.shale_gypsum_ore.prospected": "Gypsum", - "block.gtceu.shale_hematite_ore.prospected": "Hematite", - "block.gtceu.shale_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.shale_iron_ore.prospected": "Iron", - "block.gtceu.shale_kyanite_ore.prospected": "Kyanite", - "block.gtceu.shale_lapis_ore.prospected": "Lapis", - "block.gtceu.shale_lazurite_ore.prospected": "Lazurite", - "block.gtceu.shale_lead_ore.prospected": "Lead", - "block.gtceu.shale_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.shale_lithium_ore.prospected": "Lithium", - "block.gtceu.shale_magnesite_ore.prospected": "Magnesite", - "block.gtceu.shale_magnetite_ore.prospected": "Magnetite", - "block.gtceu.shale_malachite_ore.prospected": "Malachite", - "block.gtceu.shale_mica_ore.prospected": "Mica", - "block.gtceu.shale_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.shale_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.shale_monazite_ore.prospected": "Monazite", - "block.gtceu.shale_naquadah_ore.prospected": "Naquadah", - "block.gtceu.shale_neodymium_ore.prospected": "Neodymium", - "block.gtceu.shale_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.shale_nickel_ore.prospected": "Nickel", - "block.gtceu.shale_oilsands_ore.prospected": "Oilsands", - "block.gtceu.shale_olivine_ore.prospected": "Olivine", - "block.gtceu.shale_opal_ore.prospected": "Opal", - "block.gtceu.shale_palladium_ore.prospected": "Palladium", - "block.gtceu.shale_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.shale_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.shale_platinum_ore.prospected": "Platinum", - "block.gtceu.shale_plutonium_ore.prospected": "Plutonium", - "block.gtceu.shale_pollucite_ore.prospected": "Pollucite", - "block.gtceu.shale_powellite_ore.prospected": "Powellite", - "block.gtceu.shale_pyrite_ore.prospected": "Pyrite", - "block.gtceu.shale_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.shale_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.shale_pyrope_ore.prospected": "Pyrope", - "block.gtceu.shale_quartzite_ore.prospected": "Quartzite", - "block.gtceu.shale_realgar_ore.prospected": "Realgar", - "block.gtceu.shale_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.shale_redstone_ore.prospected": "Redstone", - "block.gtceu.shale_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.shale_ruby_ore.prospected": "Ruby", - "block.gtceu.shale_salt_ore.prospected": "Salt", - "block.gtceu.shale_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.shale_sapphire_ore.prospected": "Sapphire", - "block.gtceu.shale_scheelite_ore.prospected": "Scheelite", - "block.gtceu.shale_silver_ore.prospected": "Silver", - "block.gtceu.shale_soapstone_ore.prospected": "Soapstone", - "block.gtceu.shale_sodalite_ore.prospected": "Sodalite", - "block.gtceu.shale_spessartine_ore.prospected": "Spessartine", - "block.gtceu.shale_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.shale_spodumene_ore.prospected": "Spodumene", - "block.gtceu.shale_stibnite_ore.prospected": "Stibnite", - "block.gtceu.shale_sulfur_ore.prospected": "Sulfur", - "block.gtceu.shale_sylvite_ore.prospected": "Sylvite", - "block.gtceu.shale_talc_ore.prospected": "Talc", - "block.gtceu.shale_tantalite_ore.prospected": "Tantalite", - "block.gtceu.shale_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.shale_thorium_ore.prospected": "Thorium", - "block.gtceu.shale_tin_ore.prospected": "Tin", - "block.gtceu.shale_topaz_ore.prospected": "Topaz", - "block.gtceu.shale_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.shale_trona_ore.prospected": "Trona", - "block.gtceu.shale_tungstate_ore.prospected": "Tungstate", - "block.gtceu.shale_uraninite_ore.prospected": "Uraninite", - "block.gtceu.shale_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.shale_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.shale_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.shale_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.shale_zeolite_ore.prospected": "Zeolite", - "block.gtceu.slate_almandine_ore.prospected": "Almandine", - "block.gtceu.slate_aluminium_ore.prospected": "Aluminium", - "block.gtceu.slate_alunite_ore.prospected": "Alunite", - "block.gtceu.slate_amethyst_ore.prospected": "Amethyst", - "block.gtceu.slate_apatite_ore.prospected": "Apatite", - "block.gtceu.slate_asbestos_ore.prospected": "Asbestos", - "block.gtceu.slate_barite_ore.prospected": "Barite", - "block.gtceu.slate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.slate_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.slate_bauxite_ore.prospected": "Bauxite", - "block.gtceu.slate_bentonite_ore.prospected": "Bentonite", - "block.gtceu.slate_beryllium_ore.prospected": "Beryllium", - "block.gtceu.slate_bismuth_ore.prospected": "Bismuth", - "block.gtceu.slate_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.slate_borax_ore.prospected": "Borax", - "block.gtceu.slate_bornite_ore.prospected": "Bornite", - "block.gtceu.slate_calcite_ore.prospected": "Calcite", - "block.gtceu.slate_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.slate_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.slate_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.slate_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.slate_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.slate_chromite_ore.prospected": "Chromite", - "block.gtceu.slate_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.slate_coal_ore.prospected": "Coal", - "block.gtceu.slate_cobalt_ore.prospected": "Cobalt", - "block.gtceu.slate_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.slate_cooperite_ore.prospected": "Cooperite", - "block.gtceu.slate_copper_ore.prospected": "Copper", - "block.gtceu.slate_diamond_ore.prospected": "Diamond", - "block.gtceu.slate_diatomite_ore.prospected": "Diatomite", - "block.gtceu.slate_electrotine_ore.prospected": "Electrotine", - "block.gtceu.slate_emerald_ore.prospected": "Emerald", - "block.gtceu.slate_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.slate_galena_ore.prospected": "Galena", - "block.gtceu.slate_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.slate_garnierite_ore.prospected": "Garnierite", - "block.gtceu.slate_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.slate_goethite_ore.prospected": "Goethite", - "block.gtceu.slate_gold_ore.prospected": "Gold", - "block.gtceu.slate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.slate_graphite_ore.prospected": "Graphite", - "block.gtceu.slate_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.slate_grossular_ore.prospected": "Grossular", - "block.gtceu.slate_gypsum_ore.prospected": "Gypsum", - "block.gtceu.slate_hematite_ore.prospected": "Hematite", - "block.gtceu.slate_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.slate_iron_ore.prospected": "Iron", - "block.gtceu.slate_kyanite_ore.prospected": "Kyanite", - "block.gtceu.slate_lapis_ore.prospected": "Lapis", - "block.gtceu.slate_lazurite_ore.prospected": "Lazurite", - "block.gtceu.slate_lead_ore.prospected": "Lead", - "block.gtceu.slate_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.slate_lithium_ore.prospected": "Lithium", - "block.gtceu.slate_magnesite_ore.prospected": "Magnesite", - "block.gtceu.slate_magnetite_ore.prospected": "Magnetite", - "block.gtceu.slate_malachite_ore.prospected": "Malachite", - "block.gtceu.slate_mica_ore.prospected": "Mica", - "block.gtceu.slate_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.slate_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.slate_monazite_ore.prospected": "Monazite", - "block.gtceu.slate_naquadah_ore.prospected": "Naquadah", - "block.gtceu.slate_neodymium_ore.prospected": "Neodymium", - "block.gtceu.slate_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.slate_nickel_ore.prospected": "Nickel", - "block.gtceu.slate_oilsands_ore.prospected": "Oilsands", - "block.gtceu.slate_olivine_ore.prospected": "Olivine", - "block.gtceu.slate_opal_ore.prospected": "Opal", - "block.gtceu.slate_palladium_ore.prospected": "Palladium", - "block.gtceu.slate_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.slate_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.slate_platinum_ore.prospected": "Platinum", - "block.gtceu.slate_plutonium_ore.prospected": "Plutonium", - "block.gtceu.slate_pollucite_ore.prospected": "Pollucite", - "block.gtceu.slate_powellite_ore.prospected": "Powellite", - "block.gtceu.slate_pyrite_ore.prospected": "Pyrite", - "block.gtceu.slate_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.slate_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.slate_pyrope_ore.prospected": "Pyrope", - "block.gtceu.slate_quartzite_ore.prospected": "Quartzite", - "block.gtceu.slate_realgar_ore.prospected": "Realgar", - "block.gtceu.slate_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.slate_redstone_ore.prospected": "Redstone", - "block.gtceu.slate_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.slate_ruby_ore.prospected": "Ruby", - "block.gtceu.slate_salt_ore.prospected": "Salt", - "block.gtceu.slate_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.slate_sapphire_ore.prospected": "Sapphire", - "block.gtceu.slate_scheelite_ore.prospected": "Scheelite", - "block.gtceu.slate_silver_ore.prospected": "Silver", - "block.gtceu.slate_soapstone_ore.prospected": "Soapstone", - "block.gtceu.slate_sodalite_ore.prospected": "Sodalite", - "block.gtceu.slate_spessartine_ore.prospected": "Spessartine", - "block.gtceu.slate_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.slate_spodumene_ore.prospected": "Spodumene", - "block.gtceu.slate_stibnite_ore.prospected": "Stibnite", - "block.gtceu.slate_sulfur_ore.prospected": "Sulfur", - "block.gtceu.slate_sylvite_ore.prospected": "Sylvite", - "block.gtceu.slate_talc_ore.prospected": "Talc", - "block.gtceu.slate_tantalite_ore.prospected": "Tantalite", - "block.gtceu.slate_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.slate_thorium_ore.prospected": "Thorium", - "block.gtceu.slate_tin_ore.prospected": "Tin", - "block.gtceu.slate_topaz_ore.prospected": "Topaz", - "block.gtceu.slate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.slate_trona_ore.prospected": "Trona", - "block.gtceu.slate_tungstate_ore.prospected": "Tungstate", - "block.gtceu.slate_uraninite_ore.prospected": "Uraninite", - "block.gtceu.slate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.slate_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.slate_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.slate_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.slate_zeolite_ore.prospected": "Zeolite", - "block.gtceu.deepslate_almandine_ore.prospected": "Almandine", - "block.gtceu.deepslate_aluminium_ore.prospected": "Aluminium", - "block.gtceu.deepslate_alunite_ore.prospected": "Alunite", - "block.gtceu.deepslate_amethyst_ore.prospected": "Amethyst", - "block.gtceu.deepslate_apatite_ore.prospected": "Apatite", - "block.gtceu.deepslate_asbestos_ore.prospected": "Asbestos", - "block.gtceu.deepslate_barite_ore.prospected": "Barite", - "block.gtceu.deepslate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.deepslate_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.deepslate_bauxite_ore.prospected": "Bauxite", - "block.gtceu.deepslate_bentonite_ore.prospected": "Bentonite", - "block.gtceu.deepslate_beryllium_ore.prospected": "Beryllium", - "block.gtceu.deepslate_bismuth_ore.prospected": "Bismuth", - "block.gtceu.deepslate_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.deepslate_borax_ore.prospected": "Borax", - "block.gtceu.deepslate_bornite_ore.prospected": "Bornite", - "block.gtceu.deepslate_calcite_ore.prospected": "Calcite", - "block.gtceu.deepslate_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.deepslate_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.deepslate_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.deepslate_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.deepslate_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.deepslate_chromite_ore.prospected": "Chromite", - "block.gtceu.deepslate_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.deepslate_coal_ore.prospected": "Coal", - "block.gtceu.deepslate_cobalt_ore.prospected": "Cobalt", - "block.gtceu.deepslate_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.deepslate_cooperite_ore.prospected": "Cooperite", - "block.gtceu.deepslate_copper_ore.prospected": "Copper", - "block.gtceu.deepslate_diamond_ore.prospected": "Diamond", - "block.gtceu.deepslate_diatomite_ore.prospected": "Diatomite", - "block.gtceu.deepslate_electrotine_ore.prospected": "Electrotine", - "block.gtceu.deepslate_emerald_ore.prospected": "Emerald", - "block.gtceu.deepslate_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.deepslate_galena_ore.prospected": "Galena", - "block.gtceu.deepslate_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.deepslate_garnierite_ore.prospected": "Garnierite", - "block.gtceu.deepslate_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.deepslate_goethite_ore.prospected": "Goethite", - "block.gtceu.deepslate_gold_ore.prospected": "Gold", - "block.gtceu.deepslate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.deepslate_graphite_ore.prospected": "Graphite", - "block.gtceu.deepslate_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.deepslate_grossular_ore.prospected": "Grossular", - "block.gtceu.deepslate_gypsum_ore.prospected": "Gypsum", - "block.gtceu.deepslate_hematite_ore.prospected": "Hematite", - "block.gtceu.deepslate_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.deepslate_iron_ore.prospected": "Iron", - "block.gtceu.deepslate_kyanite_ore.prospected": "Kyanite", - "block.gtceu.deepslate_lapis_ore.prospected": "Lapis", - "block.gtceu.deepslate_lazurite_ore.prospected": "Lazurite", - "block.gtceu.deepslate_lead_ore.prospected": "Lead", - "block.gtceu.deepslate_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.deepslate_lithium_ore.prospected": "Lithium", - "block.gtceu.deepslate_magnesite_ore.prospected": "Magnesite", - "block.gtceu.deepslate_magnetite_ore.prospected": "Magnetite", - "block.gtceu.deepslate_malachite_ore.prospected": "Malachite", - "block.gtceu.deepslate_mica_ore.prospected": "Mica", - "block.gtceu.deepslate_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.deepslate_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.deepslate_monazite_ore.prospected": "Monazite", - "block.gtceu.deepslate_naquadah_ore.prospected": "Naquadah", - "block.gtceu.deepslate_neodymium_ore.prospected": "Neodymium", - "block.gtceu.deepslate_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.deepslate_nickel_ore.prospected": "Nickel", - "block.gtceu.deepslate_oilsands_ore.prospected": "Oilsands", - "block.gtceu.deepslate_olivine_ore.prospected": "Olivine", - "block.gtceu.deepslate_opal_ore.prospected": "Opal", - "block.gtceu.deepslate_palladium_ore.prospected": "Palladium", - "block.gtceu.deepslate_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.deepslate_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.deepslate_platinum_ore.prospected": "Platinum", - "block.gtceu.deepslate_plutonium_ore.prospected": "Plutonium", - "block.gtceu.deepslate_pollucite_ore.prospected": "Pollucite", - "block.gtceu.deepslate_powellite_ore.prospected": "Powellite", - "block.gtceu.deepslate_pyrite_ore.prospected": "Pyrite", - "block.gtceu.deepslate_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.deepslate_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.deepslate_pyrope_ore.prospected": "Pyrope", - "block.gtceu.deepslate_quartzite_ore.prospected": "Quartzite", - "block.gtceu.deepslate_realgar_ore.prospected": "Realgar", - "block.gtceu.deepslate_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.deepslate_redstone_ore.prospected": "Redstone", - "block.gtceu.deepslate_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.deepslate_ruby_ore.prospected": "Ruby", - "block.gtceu.deepslate_salt_ore.prospected": "Salt", - "block.gtceu.deepslate_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.deepslate_sapphire_ore.prospected": "Sapphire", - "block.gtceu.deepslate_scheelite_ore.prospected": "Scheelite", - "block.gtceu.deepslate_silver_ore.prospected": "Silver", - "block.gtceu.deepslate_soapstone_ore.prospected": "Soapstone", - "block.gtceu.deepslate_sodalite_ore.prospected": "Sodalite", - "block.gtceu.deepslate_spessartine_ore.prospected": "Spessartine", - "block.gtceu.deepslate_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.deepslate_spodumene_ore.prospected": "Spodumene", - "block.gtceu.deepslate_stibnite_ore.prospected": "Stibnite", - "block.gtceu.deepslate_sulfur_ore.prospected": "Sulfur", - "block.gtceu.deepslate_sylvite_ore.prospected": "Sylvite", - "block.gtceu.deepslate_talc_ore.prospected": "Talc", - "block.gtceu.deepslate_tantalite_ore.prospected": "Tantalite", - "block.gtceu.deepslate_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.deepslate_thorium_ore.prospected": "Thorium", - "block.gtceu.deepslate_tin_ore.prospected": "Tin", - "block.gtceu.deepslate_topaz_ore.prospected": "Topaz", - "block.gtceu.deepslate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.deepslate_trona_ore.prospected": "Trona", - "block.gtceu.deepslate_tungstate_ore.prospected": "Tungstate", - "block.gtceu.deepslate_uraninite_ore.prospected": "Uraninite", - "block.gtceu.deepslate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.deepslate_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.deepslate_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.deepslate_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.deepslate_zeolite_ore.prospected": "Zeolite", - "block.gtceu.pyroxenite_almandine_ore.prospected": "Almandine", - "block.gtceu.pyroxenite_aluminium_ore.prospected": "Aluminium", - "block.gtceu.pyroxenite_alunite_ore.prospected": "Alunite", - "block.gtceu.pyroxenite_amethyst_ore.prospected": "Amethyst", - "block.gtceu.pyroxenite_apatite_ore.prospected": "Apatite", - "block.gtceu.pyroxenite_asbestos_ore.prospected": "Asbestos", - "block.gtceu.pyroxenite_barite_ore.prospected": "Barite", - "block.gtceu.pyroxenite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.pyroxenite_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.pyroxenite_bauxite_ore.prospected": "Bauxite", - "block.gtceu.pyroxenite_bentonite_ore.prospected": "Bentonite", - "block.gtceu.pyroxenite_beryllium_ore.prospected": "Beryllium", - "block.gtceu.pyroxenite_bismuth_ore.prospected": "Bismuth", - "block.gtceu.pyroxenite_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.pyroxenite_borax_ore.prospected": "Borax", - "block.gtceu.pyroxenite_bornite_ore.prospected": "Bornite", - "block.gtceu.pyroxenite_calcite_ore.prospected": "Calcite", - "block.gtceu.pyroxenite_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.pyroxenite_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.pyroxenite_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.pyroxenite_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.pyroxenite_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.pyroxenite_chromite_ore.prospected": "Chromite", - "block.gtceu.pyroxenite_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.pyroxenite_coal_ore.prospected": "Coal", - "block.gtceu.pyroxenite_cobalt_ore.prospected": "Cobalt", - "block.gtceu.pyroxenite_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.pyroxenite_cooperite_ore.prospected": "Cooperite", - "block.gtceu.pyroxenite_copper_ore.prospected": "Copper", - "block.gtceu.pyroxenite_diamond_ore.prospected": "Diamond", - "block.gtceu.pyroxenite_diatomite_ore.prospected": "Diatomite", - "block.gtceu.pyroxenite_electrotine_ore.prospected": "Electrotine", - "block.gtceu.pyroxenite_emerald_ore.prospected": "Emerald", - "block.gtceu.pyroxenite_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.pyroxenite_galena_ore.prospected": "Galena", - "block.gtceu.pyroxenite_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.pyroxenite_garnierite_ore.prospected": "Garnierite", - "block.gtceu.pyroxenite_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.pyroxenite_goethite_ore.prospected": "Goethite", - "block.gtceu.pyroxenite_gold_ore.prospected": "Gold", - "block.gtceu.pyroxenite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.pyroxenite_graphite_ore.prospected": "Graphite", - "block.gtceu.pyroxenite_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.pyroxenite_grossular_ore.prospected": "Grossular", - "block.gtceu.pyroxenite_gypsum_ore.prospected": "Gypsum", - "block.gtceu.pyroxenite_hematite_ore.prospected": "Hematite", - "block.gtceu.pyroxenite_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.pyroxenite_iron_ore.prospected": "Iron", - "block.gtceu.pyroxenite_kyanite_ore.prospected": "Kyanite", - "block.gtceu.pyroxenite_lapis_ore.prospected": "Lapis", - "block.gtceu.pyroxenite_lazurite_ore.prospected": "Lazurite", - "block.gtceu.pyroxenite_lead_ore.prospected": "Lead", - "block.gtceu.pyroxenite_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.pyroxenite_lithium_ore.prospected": "Lithium", - "block.gtceu.pyroxenite_magnesite_ore.prospected": "Magnesite", - "block.gtceu.pyroxenite_magnetite_ore.prospected": "Magnetite", - "block.gtceu.pyroxenite_malachite_ore.prospected": "Malachite", - "block.gtceu.pyroxenite_mica_ore.prospected": "Mica", - "block.gtceu.pyroxenite_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.pyroxenite_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.pyroxenite_monazite_ore.prospected": "Monazite", - "block.gtceu.pyroxenite_naquadah_ore.prospected": "Naquadah", - "block.gtceu.pyroxenite_neodymium_ore.prospected": "Neodymium", - "block.gtceu.pyroxenite_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.pyroxenite_nickel_ore.prospected": "Nickel", - "block.gtceu.pyroxenite_oilsands_ore.prospected": "Oilsands", - "block.gtceu.pyroxenite_olivine_ore.prospected": "Olivine", - "block.gtceu.pyroxenite_opal_ore.prospected": "Opal", - "block.gtceu.pyroxenite_palladium_ore.prospected": "Palladium", - "block.gtceu.pyroxenite_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.pyroxenite_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.pyroxenite_platinum_ore.prospected": "Platinum", - "block.gtceu.pyroxenite_plutonium_ore.prospected": "Plutonium", - "block.gtceu.pyroxenite_pollucite_ore.prospected": "Pollucite", - "block.gtceu.pyroxenite_powellite_ore.prospected": "Powellite", - "block.gtceu.pyroxenite_pyrite_ore.prospected": "Pyrite", - "block.gtceu.pyroxenite_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.pyroxenite_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.pyroxenite_pyrope_ore.prospected": "Pyrope", - "block.gtceu.pyroxenite_quartzite_ore.prospected": "Quartzite", - "block.gtceu.pyroxenite_realgar_ore.prospected": "Realgar", - "block.gtceu.pyroxenite_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.pyroxenite_redstone_ore.prospected": "Redstone", - "block.gtceu.pyroxenite_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.pyroxenite_ruby_ore.prospected": "Ruby", - "block.gtceu.pyroxenite_salt_ore.prospected": "Salt", - "block.gtceu.pyroxenite_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.pyroxenite_sapphire_ore.prospected": "Sapphire", - "block.gtceu.pyroxenite_scheelite_ore.prospected": "Scheelite", - "block.gtceu.pyroxenite_silver_ore.prospected": "Silver", - "block.gtceu.pyroxenite_soapstone_ore.prospected": "Soapstone", - "block.gtceu.pyroxenite_sodalite_ore.prospected": "Sodalite", - "block.gtceu.pyroxenite_spessartine_ore.prospected": "Spessartine", - "block.gtceu.pyroxenite_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.pyroxenite_spodumene_ore.prospected": "Spodumene", - "block.gtceu.pyroxenite_stibnite_ore.prospected": "Stibnite", - "block.gtceu.pyroxenite_sulfur_ore.prospected": "Sulfur", - "block.gtceu.pyroxenite_sylvite_ore.prospected": "Sylvite", - "block.gtceu.pyroxenite_talc_ore.prospected": "Talc", - "block.gtceu.pyroxenite_tantalite_ore.prospected": "Tantalite", - "block.gtceu.pyroxenite_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.pyroxenite_thorium_ore.prospected": "Thorium", - "block.gtceu.pyroxenite_tin_ore.prospected": "Tin", - "block.gtceu.pyroxenite_topaz_ore.prospected": "Topaz", - "block.gtceu.pyroxenite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.pyroxenite_trona_ore.prospected": "Trona", - "block.gtceu.pyroxenite_tungstate_ore.prospected": "Tungstate", - "block.gtceu.pyroxenite_uraninite_ore.prospected": "Uraninite", - "block.gtceu.pyroxenite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.pyroxenite_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.pyroxenite_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.pyroxenite_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.pyroxenite_zeolite_ore.prospected": "Zeolite", - "block.gtceu.dripstone_almandine_ore.prospected": "Almandine", - "block.gtceu.dripstone_aluminium_ore.prospected": "Aluminium", - "block.gtceu.dripstone_alunite_ore.prospected": "Alunite", - "block.gtceu.dripstone_amethyst_ore.prospected": "Amethyst", - "block.gtceu.dripstone_apatite_ore.prospected": "Apatite", - "block.gtceu.dripstone_asbestos_ore.prospected": "Asbestos", - "block.gtceu.dripstone_barite_ore.prospected": "Barite", - "block.gtceu.dripstone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", - "block.gtceu.dripstone_bastnasite_ore.prospected": "Bastnasite", - "block.gtceu.dripstone_bauxite_ore.prospected": "Bauxite", - "block.gtceu.dripstone_bentonite_ore.prospected": "Bentonite", - "block.gtceu.dripstone_beryllium_ore.prospected": "Beryllium", - "block.gtceu.dripstone_bismuth_ore.prospected": "Bismuth", - "block.gtceu.dripstone_blue_topaz_ore.prospected": "Blue Topaz", - "block.gtceu.dripstone_borax_ore.prospected": "Borax", - "block.gtceu.dripstone_bornite_ore.prospected": "Bornite", - "block.gtceu.dripstone_calcite_ore.prospected": "Calcite", - "block.gtceu.dripstone_cassiterite_ore.prospected": "Cassiterite", - "block.gtceu.dripstone_cassiterite_sand_ore.prospected": "Cassiterite Sand", - "block.gtceu.dripstone_certus_quartz_ore.prospected": "Certus Quartz", - "block.gtceu.dripstone_chalcocite_ore.prospected": "Chalcocite", - "block.gtceu.dripstone_chalcopyrite_ore.prospected": "Chalcopyrite", - "block.gtceu.dripstone_chromite_ore.prospected": "Chromite", - "block.gtceu.dripstone_cinnabar_ore.prospected": "Cinnabar", - "block.gtceu.dripstone_coal_ore.prospected": "Coal", - "block.gtceu.dripstone_cobalt_ore.prospected": "Cobalt", - "block.gtceu.dripstone_cobaltite_ore.prospected": "Cobaltite", - "block.gtceu.dripstone_cooperite_ore.prospected": "Cooperite", - "block.gtceu.dripstone_copper_ore.prospected": "Copper", - "block.gtceu.dripstone_diamond_ore.prospected": "Diamond", - "block.gtceu.dripstone_diatomite_ore.prospected": "Diatomite", - "block.gtceu.dripstone_electrotine_ore.prospected": "Electrotine", - "block.gtceu.dripstone_emerald_ore.prospected": "Emerald", - "block.gtceu.dripstone_fullers_earth_ore.prospected": "Fullers Earth", - "block.gtceu.dripstone_galena_ore.prospected": "Galena", - "block.gtceu.dripstone_garnet_sand_ore.prospected": "Garnet Sand", - "block.gtceu.dripstone_garnierite_ore.prospected": "Garnierite", - "block.gtceu.dripstone_glauconite_sand_ore.prospected": "Glauconite Sand", - "block.gtceu.dripstone_goethite_ore.prospected": "Goethite", - "block.gtceu.dripstone_gold_ore.prospected": "Gold", - "block.gtceu.dripstone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", - "block.gtceu.dripstone_graphite_ore.prospected": "Graphite", - "block.gtceu.dripstone_green_sapphire_ore.prospected": "Green Sapphire", - "block.gtceu.dripstone_grossular_ore.prospected": "Grossular", - "block.gtceu.dripstone_gypsum_ore.prospected": "Gypsum", - "block.gtceu.dripstone_hematite_ore.prospected": "Hematite", - "block.gtceu.dripstone_ilmenite_ore.prospected": "Ilmenite", - "block.gtceu.dripstone_iron_ore.prospected": "Iron", - "block.gtceu.dripstone_kyanite_ore.prospected": "Kyanite", - "block.gtceu.dripstone_lapis_ore.prospected": "Lapis", - "block.gtceu.dripstone_lazurite_ore.prospected": "Lazurite", - "block.gtceu.dripstone_lead_ore.prospected": "Lead", - "block.gtceu.dripstone_lepidolite_ore.prospected": "Lepidolite", - "block.gtceu.dripstone_lithium_ore.prospected": "Lithium", - "block.gtceu.dripstone_magnesite_ore.prospected": "Magnesite", - "block.gtceu.dripstone_magnetite_ore.prospected": "Magnetite", - "block.gtceu.dripstone_malachite_ore.prospected": "Malachite", - "block.gtceu.dripstone_mica_ore.prospected": "Mica", - "block.gtceu.dripstone_molybdenite_ore.prospected": "Molybdenite", - "block.gtceu.dripstone_molybdenum_ore.prospected": "Molybdenum", - "block.gtceu.dripstone_monazite_ore.prospected": "Monazite", - "block.gtceu.dripstone_naquadah_ore.prospected": "Naquadah", - "block.gtceu.dripstone_neodymium_ore.prospected": "Neodymium", - "block.gtceu.dripstone_nether_quartz_ore.prospected": "Nether Quartz", - "block.gtceu.dripstone_nickel_ore.prospected": "Nickel", - "block.gtceu.dripstone_oilsands_ore.prospected": "Oilsands", - "block.gtceu.dripstone_olivine_ore.prospected": "Olivine", - "block.gtceu.dripstone_opal_ore.prospected": "Opal", - "block.gtceu.dripstone_palladium_ore.prospected": "Palladium", - "block.gtceu.dripstone_pentlandite_ore.prospected": "Pentlandite", - "block.gtceu.dripstone_pitchblende_ore.prospected": "Pitchblende", - "block.gtceu.dripstone_platinum_ore.prospected": "Platinum", - "block.gtceu.dripstone_plutonium_ore.prospected": "Plutonium", - "block.gtceu.dripstone_pollucite_ore.prospected": "Pollucite", - "block.gtceu.dripstone_powellite_ore.prospected": "Powellite", - "block.gtceu.dripstone_pyrite_ore.prospected": "Pyrite", - "block.gtceu.dripstone_pyrochlore_ore.prospected": "Pyrochlore", - "block.gtceu.dripstone_pyrolusite_ore.prospected": "Pyrolusite", - "block.gtceu.dripstone_pyrope_ore.prospected": "Pyrope", - "block.gtceu.dripstone_quartzite_ore.prospected": "Quartzite", - "block.gtceu.dripstone_realgar_ore.prospected": "Realgar", - "block.gtceu.dripstone_red_garnet_ore.prospected": "Red Garnet", - "block.gtceu.dripstone_redstone_ore.prospected": "Redstone", - "block.gtceu.dripstone_rock_salt_ore.prospected": "Rock Salt", - "block.gtceu.dripstone_ruby_ore.prospected": "Ruby", - "block.gtceu.dripstone_salt_ore.prospected": "Salt", - "block.gtceu.dripstone_saltpeter_ore.prospected": "Saltpeter", - "block.gtceu.dripstone_sapphire_ore.prospected": "Sapphire", - "block.gtceu.dripstone_scheelite_ore.prospected": "Scheelite", - "block.gtceu.dripstone_silver_ore.prospected": "Silver", - "block.gtceu.dripstone_soapstone_ore.prospected": "Soapstone", - "block.gtceu.dripstone_sodalite_ore.prospected": "Sodalite", - "block.gtceu.dripstone_spessartine_ore.prospected": "Spessartine", - "block.gtceu.dripstone_sphalerite_ore.prospected": "Sphalerite", - "block.gtceu.dripstone_spodumene_ore.prospected": "Spodumene", - "block.gtceu.dripstone_stibnite_ore.prospected": "Stibnite", - "block.gtceu.dripstone_sulfur_ore.prospected": "Sulfur", - "block.gtceu.dripstone_sylvite_ore.prospected": "Sylvite", - "block.gtceu.dripstone_talc_ore.prospected": "Talc", - "block.gtceu.dripstone_tantalite_ore.prospected": "Tantalite", - "block.gtceu.dripstone_tetrahedrite_ore.prospected": "Tetrahedrite", - "block.gtceu.dripstone_thorium_ore.prospected": "Thorium", - "block.gtceu.dripstone_tin_ore.prospected": "Tin", - "block.gtceu.dripstone_topaz_ore.prospected": "Topaz", - "block.gtceu.dripstone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", - "block.gtceu.dripstone_trona_ore.prospected": "Trona", - "block.gtceu.dripstone_tungstate_ore.prospected": "Tungstate", - "block.gtceu.dripstone_uraninite_ore.prospected": "Uraninite", - "block.gtceu.dripstone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", - "block.gtceu.dripstone_wulfenite_ore.prospected": "Wulfenite", - "block.gtceu.dripstone_yellow_garnet_ore.prospected": "Yellow Garnet", - "block.gtceu.dripstone_yellow_limonite_ore.prospected": "Yellow Limonite", - "block.gtceu.dripstone_zeolite_ore.prospected": "Zeolite", - "fluid.tfc.salt_water": "Sea Water", - "item.tfc.bucket.salt_water": "Sea Water Bucket", - "item.tfc.powder.saltpeter": "Saltpeter Powder", - "item.tfc.powder.sulfur": "Sulfur Powder", - "tfc.jei.raw_hide_knapping": "Raw Hide Knapping", - "metal.tfg.redstone": "Redstone", - "metal.tfg.red_alloy": "Red Alloy", - "metal.tfg.tin_alloy": "Tin Alloy" + "__COMMENT__": "This file was auto generated by the LanguageMerger, read the file \".README IF TRANSLATING\" found in \"minecraft/kubejs\" for more information.", + "block.tfc.fluid.salt_water": "Sea Water", + "block.tfc.cauldron.salt_water": "Sea Water Cauldron", + "block.gtceu.andesite_almandine_ore.prospected": "Almandine", + "block.gtceu.andesite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.andesite_alunite_ore.prospected": "Alunite", + "block.gtceu.andesite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.andesite_apatite_ore.prospected": "Apatite", + "block.gtceu.andesite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.andesite_barite_ore.prospected": "Barite", + "block.gtceu.andesite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.andesite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.andesite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.andesite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.andesite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.andesite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.andesite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.andesite_borax_ore.prospected": "Borax", + "block.gtceu.andesite_bornite_ore.prospected": "Bornite", + "block.gtceu.andesite_calcite_ore.prospected": "Calcite", + "block.gtceu.andesite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.andesite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.andesite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.andesite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.andesite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.andesite_chromite_ore.prospected": "Chromite", + "block.gtceu.andesite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.andesite_coal_ore.prospected": "Coal", + "block.gtceu.andesite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.andesite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.andesite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.andesite_copper_ore.prospected": "Copper", + "block.gtceu.andesite_diamond_ore.prospected": "Diamond", + "block.gtceu.andesite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.andesite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.andesite_emerald_ore.prospected": "Emerald", + "block.gtceu.andesite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.andesite_galena_ore.prospected": "Galena", + "block.gtceu.andesite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.andesite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.andesite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.andesite_goethite_ore.prospected": "Goethite", + "block.gtceu.andesite_gold_ore.prospected": "Gold", + "block.gtceu.andesite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.andesite_graphite_ore.prospected": "Graphite", + "block.gtceu.andesite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.andesite_grossular_ore.prospected": "Grossular", + "block.gtceu.andesite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.andesite_hematite_ore.prospected": "Hematite", + "block.gtceu.andesite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.andesite_iron_ore.prospected": "Iron", + "block.gtceu.andesite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.andesite_lapis_ore.prospected": "Lapis", + "block.gtceu.andesite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.andesite_lead_ore.prospected": "Lead", + "block.gtceu.andesite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.andesite_lithium_ore.prospected": "Lithium", + "block.gtceu.andesite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.andesite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.andesite_malachite_ore.prospected": "Malachite", + "block.gtceu.andesite_mica_ore.prospected": "Mica", + "block.gtceu.andesite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.andesite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.andesite_monazite_ore.prospected": "Monazite", + "block.gtceu.andesite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.andesite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.andesite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.andesite_nickel_ore.prospected": "Nickel", + "block.gtceu.andesite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.andesite_olivine_ore.prospected": "Olivine", + "block.gtceu.andesite_opal_ore.prospected": "Opal", + "block.gtceu.andesite_palladium_ore.prospected": "Palladium", + "block.gtceu.andesite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.andesite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.andesite_platinum_ore.prospected": "Platinum", + "block.gtceu.andesite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.andesite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.andesite_powellite_ore.prospected": "Powellite", + "block.gtceu.andesite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.andesite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.andesite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.andesite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.andesite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.andesite_realgar_ore.prospected": "Realgar", + "block.gtceu.andesite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.andesite_redstone_ore.prospected": "Redstone", + "block.gtceu.andesite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.andesite_ruby_ore.prospected": "Ruby", + "block.gtceu.andesite_salt_ore.prospected": "Salt", + "block.gtceu.andesite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.andesite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.andesite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.andesite_silver_ore.prospected": "Silver", + "block.gtceu.andesite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.andesite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.andesite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.andesite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.andesite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.andesite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.andesite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.andesite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.andesite_talc_ore.prospected": "Talc", + "block.gtceu.andesite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.andesite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.andesite_thorium_ore.prospected": "Thorium", + "block.gtceu.andesite_tin_ore.prospected": "Tin", + "block.gtceu.andesite_topaz_ore.prospected": "Topaz", + "block.gtceu.andesite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.andesite_trona_ore.prospected": "Trona", + "block.gtceu.andesite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.andesite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.andesite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.andesite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.andesite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.andesite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.andesite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.basalt_almandine_ore.prospected": "Almandine", + "block.gtceu.basalt_aluminium_ore.prospected": "Aluminium", + "block.gtceu.basalt_alunite_ore.prospected": "Alunite", + "block.gtceu.basalt_amethyst_ore.prospected": "Amethyst", + "block.gtceu.basalt_apatite_ore.prospected": "Apatite", + "block.gtceu.basalt_asbestos_ore.prospected": "Asbestos", + "block.gtceu.basalt_barite_ore.prospected": "Barite", + "block.gtceu.basalt_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.basalt_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.basalt_bauxite_ore.prospected": "Bauxite", + "block.gtceu.basalt_bentonite_ore.prospected": "Bentonite", + "block.gtceu.basalt_beryllium_ore.prospected": "Beryllium", + "block.gtceu.basalt_bismuth_ore.prospected": "Bismuth", + "block.gtceu.basalt_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.basalt_borax_ore.prospected": "Borax", + "block.gtceu.basalt_bornite_ore.prospected": "Bornite", + "block.gtceu.basalt_calcite_ore.prospected": "Calcite", + "block.gtceu.basalt_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.basalt_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.basalt_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.basalt_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.basalt_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.basalt_chromite_ore.prospected": "Chromite", + "block.gtceu.basalt_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.basalt_coal_ore.prospected": "Coal", + "block.gtceu.basalt_cobalt_ore.prospected": "Cobalt", + "block.gtceu.basalt_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.basalt_cooperite_ore.prospected": "Cooperite", + "block.gtceu.basalt_copper_ore.prospected": "Copper", + "block.gtceu.basalt_diamond_ore.prospected": "Diamond", + "block.gtceu.basalt_diatomite_ore.prospected": "Diatomite", + "block.gtceu.basalt_electrotine_ore.prospected": "Electrotine", + "block.gtceu.basalt_emerald_ore.prospected": "Emerald", + "block.gtceu.basalt_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.basalt_galena_ore.prospected": "Galena", + "block.gtceu.basalt_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.basalt_garnierite_ore.prospected": "Garnierite", + "block.gtceu.basalt_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.basalt_goethite_ore.prospected": "Goethite", + "block.gtceu.basalt_gold_ore.prospected": "Gold", + "block.gtceu.basalt_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.basalt_graphite_ore.prospected": "Graphite", + "block.gtceu.basalt_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.basalt_grossular_ore.prospected": "Grossular", + "block.gtceu.basalt_gypsum_ore.prospected": "Gypsum", + "block.gtceu.basalt_hematite_ore.prospected": "Hematite", + "block.gtceu.basalt_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.basalt_iron_ore.prospected": "Iron", + "block.gtceu.basalt_kyanite_ore.prospected": "Kyanite", + "block.gtceu.basalt_lapis_ore.prospected": "Lapis", + "block.gtceu.basalt_lazurite_ore.prospected": "Lazurite", + "block.gtceu.basalt_lead_ore.prospected": "Lead", + "block.gtceu.basalt_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.basalt_lithium_ore.prospected": "Lithium", + "block.gtceu.basalt_magnesite_ore.prospected": "Magnesite", + "block.gtceu.basalt_magnetite_ore.prospected": "Magnetite", + "block.gtceu.basalt_malachite_ore.prospected": "Malachite", + "block.gtceu.basalt_mica_ore.prospected": "Mica", + "block.gtceu.basalt_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.basalt_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.basalt_monazite_ore.prospected": "Monazite", + "block.gtceu.basalt_naquadah_ore.prospected": "Naquadah", + "block.gtceu.basalt_neodymium_ore.prospected": "Neodymium", + "block.gtceu.basalt_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.basalt_nickel_ore.prospected": "Nickel", + "block.gtceu.basalt_oilsands_ore.prospected": "Oilsands", + "block.gtceu.basalt_olivine_ore.prospected": "Olivine", + "block.gtceu.basalt_opal_ore.prospected": "Opal", + "block.gtceu.basalt_palladium_ore.prospected": "Palladium", + "block.gtceu.basalt_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.basalt_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.basalt_platinum_ore.prospected": "Platinum", + "block.gtceu.basalt_plutonium_ore.prospected": "Plutonium", + "block.gtceu.basalt_pollucite_ore.prospected": "Pollucite", + "block.gtceu.basalt_powellite_ore.prospected": "Powellite", + "block.gtceu.basalt_pyrite_ore.prospected": "Pyrite", + "block.gtceu.basalt_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.basalt_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.basalt_pyrope_ore.prospected": "Pyrope", + "block.gtceu.basalt_quartzite_ore.prospected": "Quartzite", + "block.gtceu.basalt_realgar_ore.prospected": "Realgar", + "block.gtceu.basalt_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.basalt_redstone_ore.prospected": "Redstone", + "block.gtceu.basalt_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.basalt_ruby_ore.prospected": "Ruby", + "block.gtceu.basalt_salt_ore.prospected": "Salt", + "block.gtceu.basalt_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.basalt_sapphire_ore.prospected": "Sapphire", + "block.gtceu.basalt_scheelite_ore.prospected": "Scheelite", + "block.gtceu.basalt_silver_ore.prospected": "Silver", + "block.gtceu.basalt_soapstone_ore.prospected": "Soapstone", + "block.gtceu.basalt_sodalite_ore.prospected": "Sodalite", + "block.gtceu.basalt_spessartine_ore.prospected": "Spessartine", + "block.gtceu.basalt_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.basalt_spodumene_ore.prospected": "Spodumene", + "block.gtceu.basalt_stibnite_ore.prospected": "Stibnite", + "block.gtceu.basalt_sulfur_ore.prospected": "Sulfur", + "block.gtceu.basalt_sylvite_ore.prospected": "Sylvite", + "block.gtceu.basalt_talc_ore.prospected": "Talc", + "block.gtceu.basalt_tantalite_ore.prospected": "Tantalite", + "block.gtceu.basalt_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.basalt_thorium_ore.prospected": "Thorium", + "block.gtceu.basalt_tin_ore.prospected": "Tin", + "block.gtceu.basalt_topaz_ore.prospected": "Topaz", + "block.gtceu.basalt_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.basalt_trona_ore.prospected": "Trona", + "block.gtceu.basalt_tungstate_ore.prospected": "Tungstate", + "block.gtceu.basalt_uraninite_ore.prospected": "Uraninite", + "block.gtceu.basalt_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.basalt_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.basalt_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.basalt_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.basalt_zeolite_ore.prospected": "Zeolite", + "block.gtceu.chalk_almandine_ore.prospected": "Almandine", + "block.gtceu.chalk_aluminium_ore.prospected": "Aluminium", + "block.gtceu.chalk_alunite_ore.prospected": "Alunite", + "block.gtceu.chalk_amethyst_ore.prospected": "Amethyst", + "block.gtceu.chalk_apatite_ore.prospected": "Apatite", + "block.gtceu.chalk_asbestos_ore.prospected": "Asbestos", + "block.gtceu.chalk_barite_ore.prospected": "Barite", + "block.gtceu.chalk_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.chalk_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.chalk_bauxite_ore.prospected": "Bauxite", + "block.gtceu.chalk_bentonite_ore.prospected": "Bentonite", + "block.gtceu.chalk_beryllium_ore.prospected": "Beryllium", + "block.gtceu.chalk_bismuth_ore.prospected": "Bismuth", + "block.gtceu.chalk_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.chalk_borax_ore.prospected": "Borax", + "block.gtceu.chalk_bornite_ore.prospected": "Bornite", + "block.gtceu.chalk_calcite_ore.prospected": "Calcite", + "block.gtceu.chalk_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.chalk_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.chalk_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.chalk_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.chalk_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.chalk_chromite_ore.prospected": "Chromite", + "block.gtceu.chalk_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.chalk_coal_ore.prospected": "Coal", + "block.gtceu.chalk_cobalt_ore.prospected": "Cobalt", + "block.gtceu.chalk_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.chalk_cooperite_ore.prospected": "Cooperite", + "block.gtceu.chalk_copper_ore.prospected": "Copper", + "block.gtceu.chalk_diamond_ore.prospected": "Diamond", + "block.gtceu.chalk_diatomite_ore.prospected": "Diatomite", + "block.gtceu.chalk_electrotine_ore.prospected": "Electrotine", + "block.gtceu.chalk_emerald_ore.prospected": "Emerald", + "block.gtceu.chalk_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.chalk_galena_ore.prospected": "Galena", + "block.gtceu.chalk_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.chalk_garnierite_ore.prospected": "Garnierite", + "block.gtceu.chalk_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.chalk_goethite_ore.prospected": "Goethite", + "block.gtceu.chalk_gold_ore.prospected": "Gold", + "block.gtceu.chalk_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.chalk_graphite_ore.prospected": "Graphite", + "block.gtceu.chalk_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.chalk_grossular_ore.prospected": "Grossular", + "block.gtceu.chalk_gypsum_ore.prospected": "Gypsum", + "block.gtceu.chalk_hematite_ore.prospected": "Hematite", + "block.gtceu.chalk_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.chalk_iron_ore.prospected": "Iron", + "block.gtceu.chalk_kyanite_ore.prospected": "Kyanite", + "block.gtceu.chalk_lapis_ore.prospected": "Lapis", + "block.gtceu.chalk_lazurite_ore.prospected": "Lazurite", + "block.gtceu.chalk_lead_ore.prospected": "Lead", + "block.gtceu.chalk_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.chalk_lithium_ore.prospected": "Lithium", + "block.gtceu.chalk_magnesite_ore.prospected": "Magnesite", + "block.gtceu.chalk_magnetite_ore.prospected": "Magnetite", + "block.gtceu.chalk_malachite_ore.prospected": "Malachite", + "block.gtceu.chalk_mica_ore.prospected": "Mica", + "block.gtceu.chalk_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.chalk_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.chalk_monazite_ore.prospected": "Monazite", + "block.gtceu.chalk_naquadah_ore.prospected": "Naquadah", + "block.gtceu.chalk_neodymium_ore.prospected": "Neodymium", + "block.gtceu.chalk_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.chalk_nickel_ore.prospected": "Nickel", + "block.gtceu.chalk_oilsands_ore.prospected": "Oilsands", + "block.gtceu.chalk_olivine_ore.prospected": "Olivine", + "block.gtceu.chalk_opal_ore.prospected": "Opal", + "block.gtceu.chalk_palladium_ore.prospected": "Palladium", + "block.gtceu.chalk_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.chalk_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.chalk_platinum_ore.prospected": "Platinum", + "block.gtceu.chalk_plutonium_ore.prospected": "Plutonium", + "block.gtceu.chalk_pollucite_ore.prospected": "Pollucite", + "block.gtceu.chalk_powellite_ore.prospected": "Powellite", + "block.gtceu.chalk_pyrite_ore.prospected": "Pyrite", + "block.gtceu.chalk_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.chalk_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.chalk_pyrope_ore.prospected": "Pyrope", + "block.gtceu.chalk_quartzite_ore.prospected": "Quartzite", + "block.gtceu.chalk_realgar_ore.prospected": "Realgar", + "block.gtceu.chalk_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.chalk_redstone_ore.prospected": "Redstone", + "block.gtceu.chalk_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.chalk_ruby_ore.prospected": "Ruby", + "block.gtceu.chalk_salt_ore.prospected": "Salt", + "block.gtceu.chalk_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.chalk_sapphire_ore.prospected": "Sapphire", + "block.gtceu.chalk_scheelite_ore.prospected": "Scheelite", + "block.gtceu.chalk_silver_ore.prospected": "Silver", + "block.gtceu.chalk_soapstone_ore.prospected": "Soapstone", + "block.gtceu.chalk_sodalite_ore.prospected": "Sodalite", + "block.gtceu.chalk_spessartine_ore.prospected": "Spessartine", + "block.gtceu.chalk_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.chalk_spodumene_ore.prospected": "Spodumene", + "block.gtceu.chalk_stibnite_ore.prospected": "Stibnite", + "block.gtceu.chalk_sulfur_ore.prospected": "Sulfur", + "block.gtceu.chalk_sylvite_ore.prospected": "Sylvite", + "block.gtceu.chalk_talc_ore.prospected": "Talc", + "block.gtceu.chalk_tantalite_ore.prospected": "Tantalite", + "block.gtceu.chalk_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.chalk_thorium_ore.prospected": "Thorium", + "block.gtceu.chalk_tin_ore.prospected": "Tin", + "block.gtceu.chalk_topaz_ore.prospected": "Topaz", + "block.gtceu.chalk_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.chalk_trona_ore.prospected": "Trona", + "block.gtceu.chalk_tungstate_ore.prospected": "Tungstate", + "block.gtceu.chalk_uraninite_ore.prospected": "Uraninite", + "block.gtceu.chalk_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.chalk_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.chalk_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.chalk_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.chalk_zeolite_ore.prospected": "Zeolite", + "block.gtceu.chert_almandine_ore.prospected": "Almandine", + "block.gtceu.chert_aluminium_ore.prospected": "Aluminium", + "block.gtceu.chert_alunite_ore.prospected": "Alunite", + "block.gtceu.chert_amethyst_ore.prospected": "Amethyst", + "block.gtceu.chert_apatite_ore.prospected": "Apatite", + "block.gtceu.chert_asbestos_ore.prospected": "Asbestos", + "block.gtceu.chert_barite_ore.prospected": "Barite", + "block.gtceu.chert_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.chert_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.chert_bauxite_ore.prospected": "Bauxite", + "block.gtceu.chert_bentonite_ore.prospected": "Bentonite", + "block.gtceu.chert_beryllium_ore.prospected": "Beryllium", + "block.gtceu.chert_bismuth_ore.prospected": "Bismuth", + "block.gtceu.chert_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.chert_borax_ore.prospected": "Borax", + "block.gtceu.chert_bornite_ore.prospected": "Bornite", + "block.gtceu.chert_calcite_ore.prospected": "Calcite", + "block.gtceu.chert_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.chert_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.chert_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.chert_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.chert_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.chert_chromite_ore.prospected": "Chromite", + "block.gtceu.chert_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.chert_coal_ore.prospected": "Coal", + "block.gtceu.chert_cobalt_ore.prospected": "Cobalt", + "block.gtceu.chert_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.chert_cooperite_ore.prospected": "Cooperite", + "block.gtceu.chert_copper_ore.prospected": "Copper", + "block.gtceu.chert_diamond_ore.prospected": "Diamond", + "block.gtceu.chert_diatomite_ore.prospected": "Diatomite", + "block.gtceu.chert_electrotine_ore.prospected": "Electrotine", + "block.gtceu.chert_emerald_ore.prospected": "Emerald", + "block.gtceu.chert_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.chert_galena_ore.prospected": "Galena", + "block.gtceu.chert_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.chert_garnierite_ore.prospected": "Garnierite", + "block.gtceu.chert_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.chert_goethite_ore.prospected": "Goethite", + "block.gtceu.chert_gold_ore.prospected": "Gold", + "block.gtceu.chert_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.chert_graphite_ore.prospected": "Graphite", + "block.gtceu.chert_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.chert_grossular_ore.prospected": "Grossular", + "block.gtceu.chert_gypsum_ore.prospected": "Gypsum", + "block.gtceu.chert_hematite_ore.prospected": "Hematite", + "block.gtceu.chert_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.chert_iron_ore.prospected": "Iron", + "block.gtceu.chert_kyanite_ore.prospected": "Kyanite", + "block.gtceu.chert_lapis_ore.prospected": "Lapis", + "block.gtceu.chert_lazurite_ore.prospected": "Lazurite", + "block.gtceu.chert_lead_ore.prospected": "Lead", + "block.gtceu.chert_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.chert_lithium_ore.prospected": "Lithium", + "block.gtceu.chert_magnesite_ore.prospected": "Magnesite", + "block.gtceu.chert_magnetite_ore.prospected": "Magnetite", + "block.gtceu.chert_malachite_ore.prospected": "Malachite", + "block.gtceu.chert_mica_ore.prospected": "Mica", + "block.gtceu.chert_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.chert_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.chert_monazite_ore.prospected": "Monazite", + "block.gtceu.chert_naquadah_ore.prospected": "Naquadah", + "block.gtceu.chert_neodymium_ore.prospected": "Neodymium", + "block.gtceu.chert_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.chert_nickel_ore.prospected": "Nickel", + "block.gtceu.chert_oilsands_ore.prospected": "Oilsands", + "block.gtceu.chert_olivine_ore.prospected": "Olivine", + "block.gtceu.chert_opal_ore.prospected": "Opal", + "block.gtceu.chert_palladium_ore.prospected": "Palladium", + "block.gtceu.chert_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.chert_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.chert_platinum_ore.prospected": "Platinum", + "block.gtceu.chert_plutonium_ore.prospected": "Plutonium", + "block.gtceu.chert_pollucite_ore.prospected": "Pollucite", + "block.gtceu.chert_powellite_ore.prospected": "Powellite", + "block.gtceu.chert_pyrite_ore.prospected": "Pyrite", + "block.gtceu.chert_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.chert_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.chert_pyrope_ore.prospected": "Pyrope", + "block.gtceu.chert_quartzite_ore.prospected": "Quartzite", + "block.gtceu.chert_realgar_ore.prospected": "Realgar", + "block.gtceu.chert_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.chert_redstone_ore.prospected": "Redstone", + "block.gtceu.chert_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.chert_ruby_ore.prospected": "Ruby", + "block.gtceu.chert_salt_ore.prospected": "Salt", + "block.gtceu.chert_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.chert_sapphire_ore.prospected": "Sapphire", + "block.gtceu.chert_scheelite_ore.prospected": "Scheelite", + "block.gtceu.chert_silver_ore.prospected": "Silver", + "block.gtceu.chert_soapstone_ore.prospected": "Soapstone", + "block.gtceu.chert_sodalite_ore.prospected": "Sodalite", + "block.gtceu.chert_spessartine_ore.prospected": "Spessartine", + "block.gtceu.chert_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.chert_spodumene_ore.prospected": "Spodumene", + "block.gtceu.chert_stibnite_ore.prospected": "Stibnite", + "block.gtceu.chert_sulfur_ore.prospected": "Sulfur", + "block.gtceu.chert_sylvite_ore.prospected": "Sylvite", + "block.gtceu.chert_talc_ore.prospected": "Talc", + "block.gtceu.chert_tantalite_ore.prospected": "Tantalite", + "block.gtceu.chert_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.chert_thorium_ore.prospected": "Thorium", + "block.gtceu.chert_tin_ore.prospected": "Tin", + "block.gtceu.chert_topaz_ore.prospected": "Topaz", + "block.gtceu.chert_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.chert_trona_ore.prospected": "Trona", + "block.gtceu.chert_tungstate_ore.prospected": "Tungstate", + "block.gtceu.chert_uraninite_ore.prospected": "Uraninite", + "block.gtceu.chert_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.chert_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.chert_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.chert_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.chert_zeolite_ore.prospected": "Zeolite", + "block.gtceu.claystone_almandine_ore.prospected": "Almandine", + "block.gtceu.claystone_aluminium_ore.prospected": "Aluminium", + "block.gtceu.claystone_alunite_ore.prospected": "Alunite", + "block.gtceu.claystone_amethyst_ore.prospected": "Amethyst", + "block.gtceu.claystone_apatite_ore.prospected": "Apatite", + "block.gtceu.claystone_asbestos_ore.prospected": "Asbestos", + "block.gtceu.claystone_barite_ore.prospected": "Barite", + "block.gtceu.claystone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.claystone_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.claystone_bauxite_ore.prospected": "Bauxite", + "block.gtceu.claystone_bentonite_ore.prospected": "Bentonite", + "block.gtceu.claystone_beryllium_ore.prospected": "Beryllium", + "block.gtceu.claystone_bismuth_ore.prospected": "Bismuth", + "block.gtceu.claystone_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.claystone_borax_ore.prospected": "Borax", + "block.gtceu.claystone_bornite_ore.prospected": "Bornite", + "block.gtceu.claystone_calcite_ore.prospected": "Calcite", + "block.gtceu.claystone_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.claystone_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.claystone_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.claystone_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.claystone_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.claystone_chromite_ore.prospected": "Chromite", + "block.gtceu.claystone_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.claystone_coal_ore.prospected": "Coal", + "block.gtceu.claystone_cobalt_ore.prospected": "Cobalt", + "block.gtceu.claystone_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.claystone_cooperite_ore.prospected": "Cooperite", + "block.gtceu.claystone_copper_ore.prospected": "Copper", + "block.gtceu.claystone_diamond_ore.prospected": "Diamond", + "block.gtceu.claystone_diatomite_ore.prospected": "Diatomite", + "block.gtceu.claystone_electrotine_ore.prospected": "Electrotine", + "block.gtceu.claystone_emerald_ore.prospected": "Emerald", + "block.gtceu.claystone_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.claystone_galena_ore.prospected": "Galena", + "block.gtceu.claystone_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.claystone_garnierite_ore.prospected": "Garnierite", + "block.gtceu.claystone_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.claystone_goethite_ore.prospected": "Goethite", + "block.gtceu.claystone_gold_ore.prospected": "Gold", + "block.gtceu.claystone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.claystone_graphite_ore.prospected": "Graphite", + "block.gtceu.claystone_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.claystone_grossular_ore.prospected": "Grossular", + "block.gtceu.claystone_gypsum_ore.prospected": "Gypsum", + "block.gtceu.claystone_hematite_ore.prospected": "Hematite", + "block.gtceu.claystone_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.claystone_iron_ore.prospected": "Iron", + "block.gtceu.claystone_kyanite_ore.prospected": "Kyanite", + "block.gtceu.claystone_lapis_ore.prospected": "Lapis", + "block.gtceu.claystone_lazurite_ore.prospected": "Lazurite", + "block.gtceu.claystone_lead_ore.prospected": "Lead", + "block.gtceu.claystone_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.claystone_lithium_ore.prospected": "Lithium", + "block.gtceu.claystone_magnesite_ore.prospected": "Magnesite", + "block.gtceu.claystone_magnetite_ore.prospected": "Magnetite", + "block.gtceu.claystone_malachite_ore.prospected": "Malachite", + "block.gtceu.claystone_mica_ore.prospected": "Mica", + "block.gtceu.claystone_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.claystone_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.claystone_monazite_ore.prospected": "Monazite", + "block.gtceu.claystone_naquadah_ore.prospected": "Naquadah", + "block.gtceu.claystone_neodymium_ore.prospected": "Neodymium", + "block.gtceu.claystone_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.claystone_nickel_ore.prospected": "Nickel", + "block.gtceu.claystone_oilsands_ore.prospected": "Oilsands", + "block.gtceu.claystone_olivine_ore.prospected": "Olivine", + "block.gtceu.claystone_opal_ore.prospected": "Opal", + "block.gtceu.claystone_palladium_ore.prospected": "Palladium", + "block.gtceu.claystone_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.claystone_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.claystone_platinum_ore.prospected": "Platinum", + "block.gtceu.claystone_plutonium_ore.prospected": "Plutonium", + "block.gtceu.claystone_pollucite_ore.prospected": "Pollucite", + "block.gtceu.claystone_powellite_ore.prospected": "Powellite", + "block.gtceu.claystone_pyrite_ore.prospected": "Pyrite", + "block.gtceu.claystone_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.claystone_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.claystone_pyrope_ore.prospected": "Pyrope", + "block.gtceu.claystone_quartzite_ore.prospected": "Quartzite", + "block.gtceu.claystone_realgar_ore.prospected": "Realgar", + "block.gtceu.claystone_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.claystone_redstone_ore.prospected": "Redstone", + "block.gtceu.claystone_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.claystone_ruby_ore.prospected": "Ruby", + "block.gtceu.claystone_salt_ore.prospected": "Salt", + "block.gtceu.claystone_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.claystone_sapphire_ore.prospected": "Sapphire", + "block.gtceu.claystone_scheelite_ore.prospected": "Scheelite", + "block.gtceu.claystone_silver_ore.prospected": "Silver", + "block.gtceu.claystone_soapstone_ore.prospected": "Soapstone", + "block.gtceu.claystone_sodalite_ore.prospected": "Sodalite", + "block.gtceu.claystone_spessartine_ore.prospected": "Spessartine", + "block.gtceu.claystone_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.claystone_spodumene_ore.prospected": "Spodumene", + "block.gtceu.claystone_stibnite_ore.prospected": "Stibnite", + "block.gtceu.claystone_sulfur_ore.prospected": "Sulfur", + "block.gtceu.claystone_sylvite_ore.prospected": "Sylvite", + "block.gtceu.claystone_talc_ore.prospected": "Talc", + "block.gtceu.claystone_tantalite_ore.prospected": "Tantalite", + "block.gtceu.claystone_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.claystone_thorium_ore.prospected": "Thorium", + "block.gtceu.claystone_tin_ore.prospected": "Tin", + "block.gtceu.claystone_topaz_ore.prospected": "Topaz", + "block.gtceu.claystone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.claystone_trona_ore.prospected": "Trona", + "block.gtceu.claystone_tungstate_ore.prospected": "Tungstate", + "block.gtceu.claystone_uraninite_ore.prospected": "Uraninite", + "block.gtceu.claystone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.claystone_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.claystone_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.claystone_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.claystone_zeolite_ore.prospected": "Zeolite", + "block.gtceu.conglomerate_almandine_ore.prospected": "Almandine", + "block.gtceu.conglomerate_aluminium_ore.prospected": "Aluminium", + "block.gtceu.conglomerate_alunite_ore.prospected": "Alunite", + "block.gtceu.conglomerate_amethyst_ore.prospected": "Amethyst", + "block.gtceu.conglomerate_apatite_ore.prospected": "Apatite", + "block.gtceu.conglomerate_asbestos_ore.prospected": "Asbestos", + "block.gtceu.conglomerate_barite_ore.prospected": "Barite", + "block.gtceu.conglomerate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.conglomerate_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.conglomerate_bauxite_ore.prospected": "Bauxite", + "block.gtceu.conglomerate_bentonite_ore.prospected": "Bentonite", + "block.gtceu.conglomerate_beryllium_ore.prospected": "Beryllium", + "block.gtceu.conglomerate_bismuth_ore.prospected": "Bismuth", + "block.gtceu.conglomerate_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.conglomerate_borax_ore.prospected": "Borax", + "block.gtceu.conglomerate_bornite_ore.prospected": "Bornite", + "block.gtceu.conglomerate_calcite_ore.prospected": "Calcite", + "block.gtceu.conglomerate_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.conglomerate_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.conglomerate_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.conglomerate_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.conglomerate_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.conglomerate_chromite_ore.prospected": "Chromite", + "block.gtceu.conglomerate_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.conglomerate_coal_ore.prospected": "Coal", + "block.gtceu.conglomerate_cobalt_ore.prospected": "Cobalt", + "block.gtceu.conglomerate_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.conglomerate_cooperite_ore.prospected": "Cooperite", + "block.gtceu.conglomerate_copper_ore.prospected": "Copper", + "block.gtceu.conglomerate_diamond_ore.prospected": "Diamond", + "block.gtceu.conglomerate_diatomite_ore.prospected": "Diatomite", + "block.gtceu.conglomerate_electrotine_ore.prospected": "Electrotine", + "block.gtceu.conglomerate_emerald_ore.prospected": "Emerald", + "block.gtceu.conglomerate_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.conglomerate_galena_ore.prospected": "Galena", + "block.gtceu.conglomerate_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.conglomerate_garnierite_ore.prospected": "Garnierite", + "block.gtceu.conglomerate_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.conglomerate_goethite_ore.prospected": "Goethite", + "block.gtceu.conglomerate_gold_ore.prospected": "Gold", + "block.gtceu.conglomerate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.conglomerate_graphite_ore.prospected": "Graphite", + "block.gtceu.conglomerate_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.conglomerate_grossular_ore.prospected": "Grossular", + "block.gtceu.conglomerate_gypsum_ore.prospected": "Gypsum", + "block.gtceu.conglomerate_hematite_ore.prospected": "Hematite", + "block.gtceu.conglomerate_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.conglomerate_iron_ore.prospected": "Iron", + "block.gtceu.conglomerate_kyanite_ore.prospected": "Kyanite", + "block.gtceu.conglomerate_lapis_ore.prospected": "Lapis", + "block.gtceu.conglomerate_lazurite_ore.prospected": "Lazurite", + "block.gtceu.conglomerate_lead_ore.prospected": "Lead", + "block.gtceu.conglomerate_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.conglomerate_lithium_ore.prospected": "Lithium", + "block.gtceu.conglomerate_magnesite_ore.prospected": "Magnesite", + "block.gtceu.conglomerate_magnetite_ore.prospected": "Magnetite", + "block.gtceu.conglomerate_malachite_ore.prospected": "Malachite", + "block.gtceu.conglomerate_mica_ore.prospected": "Mica", + "block.gtceu.conglomerate_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.conglomerate_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.conglomerate_monazite_ore.prospected": "Monazite", + "block.gtceu.conglomerate_naquadah_ore.prospected": "Naquadah", + "block.gtceu.conglomerate_neodymium_ore.prospected": "Neodymium", + "block.gtceu.conglomerate_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.conglomerate_nickel_ore.prospected": "Nickel", + "block.gtceu.conglomerate_oilsands_ore.prospected": "Oilsands", + "block.gtceu.conglomerate_olivine_ore.prospected": "Olivine", + "block.gtceu.conglomerate_opal_ore.prospected": "Opal", + "block.gtceu.conglomerate_palladium_ore.prospected": "Palladium", + "block.gtceu.conglomerate_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.conglomerate_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.conglomerate_platinum_ore.prospected": "Platinum", + "block.gtceu.conglomerate_plutonium_ore.prospected": "Plutonium", + "block.gtceu.conglomerate_pollucite_ore.prospected": "Pollucite", + "block.gtceu.conglomerate_powellite_ore.prospected": "Powellite", + "block.gtceu.conglomerate_pyrite_ore.prospected": "Pyrite", + "block.gtceu.conglomerate_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.conglomerate_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.conglomerate_pyrope_ore.prospected": "Pyrope", + "block.gtceu.conglomerate_quartzite_ore.prospected": "Quartzite", + "block.gtceu.conglomerate_realgar_ore.prospected": "Realgar", + "block.gtceu.conglomerate_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.conglomerate_redstone_ore.prospected": "Redstone", + "block.gtceu.conglomerate_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.conglomerate_ruby_ore.prospected": "Ruby", + "block.gtceu.conglomerate_salt_ore.prospected": "Salt", + "block.gtceu.conglomerate_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.conglomerate_sapphire_ore.prospected": "Sapphire", + "block.gtceu.conglomerate_scheelite_ore.prospected": "Scheelite", + "block.gtceu.conglomerate_silver_ore.prospected": "Silver", + "block.gtceu.conglomerate_soapstone_ore.prospected": "Soapstone", + "block.gtceu.conglomerate_sodalite_ore.prospected": "Sodalite", + "block.gtceu.conglomerate_spessartine_ore.prospected": "Spessartine", + "block.gtceu.conglomerate_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.conglomerate_spodumene_ore.prospected": "Spodumene", + "block.gtceu.conglomerate_stibnite_ore.prospected": "Stibnite", + "block.gtceu.conglomerate_sulfur_ore.prospected": "Sulfur", + "block.gtceu.conglomerate_sylvite_ore.prospected": "Sylvite", + "block.gtceu.conglomerate_talc_ore.prospected": "Talc", + "block.gtceu.conglomerate_tantalite_ore.prospected": "Tantalite", + "block.gtceu.conglomerate_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.conglomerate_thorium_ore.prospected": "Thorium", + "block.gtceu.conglomerate_tin_ore.prospected": "Tin", + "block.gtceu.conglomerate_topaz_ore.prospected": "Topaz", + "block.gtceu.conglomerate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.conglomerate_trona_ore.prospected": "Trona", + "block.gtceu.conglomerate_tungstate_ore.prospected": "Tungstate", + "block.gtceu.conglomerate_uraninite_ore.prospected": "Uraninite", + "block.gtceu.conglomerate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.conglomerate_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.conglomerate_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.conglomerate_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.conglomerate_zeolite_ore.prospected": "Zeolite", + "block.gtceu.dacite_almandine_ore.prospected": "Almandine", + "block.gtceu.dacite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.dacite_alunite_ore.prospected": "Alunite", + "block.gtceu.dacite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.dacite_apatite_ore.prospected": "Apatite", + "block.gtceu.dacite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.dacite_barite_ore.prospected": "Barite", + "block.gtceu.dacite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.dacite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.dacite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.dacite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.dacite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.dacite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.dacite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.dacite_borax_ore.prospected": "Borax", + "block.gtceu.dacite_bornite_ore.prospected": "Bornite", + "block.gtceu.dacite_calcite_ore.prospected": "Calcite", + "block.gtceu.dacite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.dacite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.dacite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.dacite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.dacite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.dacite_chromite_ore.prospected": "Chromite", + "block.gtceu.dacite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.dacite_coal_ore.prospected": "Coal", + "block.gtceu.dacite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.dacite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.dacite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.dacite_copper_ore.prospected": "Copper", + "block.gtceu.dacite_diamond_ore.prospected": "Diamond", + "block.gtceu.dacite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.dacite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.dacite_emerald_ore.prospected": "Emerald", + "block.gtceu.dacite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.dacite_galena_ore.prospected": "Galena", + "block.gtceu.dacite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.dacite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.dacite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.dacite_goethite_ore.prospected": "Goethite", + "block.gtceu.dacite_gold_ore.prospected": "Gold", + "block.gtceu.dacite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.dacite_graphite_ore.prospected": "Graphite", + "block.gtceu.dacite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.dacite_grossular_ore.prospected": "Grossular", + "block.gtceu.dacite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.dacite_hematite_ore.prospected": "Hematite", + "block.gtceu.dacite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.dacite_iron_ore.prospected": "Iron", + "block.gtceu.dacite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.dacite_lapis_ore.prospected": "Lapis", + "block.gtceu.dacite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.dacite_lead_ore.prospected": "Lead", + "block.gtceu.dacite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.dacite_lithium_ore.prospected": "Lithium", + "block.gtceu.dacite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.dacite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.dacite_malachite_ore.prospected": "Malachite", + "block.gtceu.dacite_mica_ore.prospected": "Mica", + "block.gtceu.dacite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.dacite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.dacite_monazite_ore.prospected": "Monazite", + "block.gtceu.dacite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.dacite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.dacite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.dacite_nickel_ore.prospected": "Nickel", + "block.gtceu.dacite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.dacite_olivine_ore.prospected": "Olivine", + "block.gtceu.dacite_opal_ore.prospected": "Opal", + "block.gtceu.dacite_palladium_ore.prospected": "Palladium", + "block.gtceu.dacite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.dacite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.dacite_platinum_ore.prospected": "Platinum", + "block.gtceu.dacite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.dacite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.dacite_powellite_ore.prospected": "Powellite", + "block.gtceu.dacite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.dacite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.dacite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.dacite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.dacite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.dacite_realgar_ore.prospected": "Realgar", + "block.gtceu.dacite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.dacite_redstone_ore.prospected": "Redstone", + "block.gtceu.dacite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.dacite_ruby_ore.prospected": "Ruby", + "block.gtceu.dacite_salt_ore.prospected": "Salt", + "block.gtceu.dacite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.dacite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.dacite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.dacite_silver_ore.prospected": "Silver", + "block.gtceu.dacite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.dacite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.dacite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.dacite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.dacite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.dacite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.dacite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.dacite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.dacite_talc_ore.prospected": "Talc", + "block.gtceu.dacite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.dacite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.dacite_thorium_ore.prospected": "Thorium", + "block.gtceu.dacite_tin_ore.prospected": "Tin", + "block.gtceu.dacite_topaz_ore.prospected": "Topaz", + "block.gtceu.dacite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.dacite_trona_ore.prospected": "Trona", + "block.gtceu.dacite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.dacite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.dacite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.dacite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.dacite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.dacite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.dacite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.diorite_almandine_ore.prospected": "Almandine", + "block.gtceu.diorite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.diorite_alunite_ore.prospected": "Alunite", + "block.gtceu.diorite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.diorite_apatite_ore.prospected": "Apatite", + "block.gtceu.diorite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.diorite_barite_ore.prospected": "Barite", + "block.gtceu.diorite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.diorite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.diorite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.diorite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.diorite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.diorite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.diorite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.diorite_borax_ore.prospected": "Borax", + "block.gtceu.diorite_bornite_ore.prospected": "Bornite", + "block.gtceu.diorite_calcite_ore.prospected": "Calcite", + "block.gtceu.diorite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.diorite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.diorite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.diorite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.diorite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.diorite_chromite_ore.prospected": "Chromite", + "block.gtceu.diorite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.diorite_coal_ore.prospected": "Coal", + "block.gtceu.diorite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.diorite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.diorite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.diorite_copper_ore.prospected": "Copper", + "block.gtceu.diorite_diamond_ore.prospected": "Diamond", + "block.gtceu.diorite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.diorite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.diorite_emerald_ore.prospected": "Emerald", + "block.gtceu.diorite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.diorite_galena_ore.prospected": "Galena", + "block.gtceu.diorite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.diorite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.diorite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.diorite_goethite_ore.prospected": "Goethite", + "block.gtceu.diorite_gold_ore.prospected": "Gold", + "block.gtceu.diorite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.diorite_graphite_ore.prospected": "Graphite", + "block.gtceu.diorite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.diorite_grossular_ore.prospected": "Grossular", + "block.gtceu.diorite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.diorite_hematite_ore.prospected": "Hematite", + "block.gtceu.diorite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.diorite_iron_ore.prospected": "Iron", + "block.gtceu.diorite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.diorite_lapis_ore.prospected": "Lapis", + "block.gtceu.diorite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.diorite_lead_ore.prospected": "Lead", + "block.gtceu.diorite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.diorite_lithium_ore.prospected": "Lithium", + "block.gtceu.diorite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.diorite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.diorite_malachite_ore.prospected": "Malachite", + "block.gtceu.diorite_mica_ore.prospected": "Mica", + "block.gtceu.diorite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.diorite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.diorite_monazite_ore.prospected": "Monazite", + "block.gtceu.diorite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.diorite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.diorite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.diorite_nickel_ore.prospected": "Nickel", + "block.gtceu.diorite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.diorite_olivine_ore.prospected": "Olivine", + "block.gtceu.diorite_opal_ore.prospected": "Opal", + "block.gtceu.diorite_palladium_ore.prospected": "Palladium", + "block.gtceu.diorite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.diorite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.diorite_platinum_ore.prospected": "Platinum", + "block.gtceu.diorite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.diorite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.diorite_powellite_ore.prospected": "Powellite", + "block.gtceu.diorite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.diorite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.diorite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.diorite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.diorite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.diorite_realgar_ore.prospected": "Realgar", + "block.gtceu.diorite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.diorite_redstone_ore.prospected": "Redstone", + "block.gtceu.diorite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.diorite_ruby_ore.prospected": "Ruby", + "block.gtceu.diorite_salt_ore.prospected": "Salt", + "block.gtceu.diorite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.diorite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.diorite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.diorite_silver_ore.prospected": "Silver", + "block.gtceu.diorite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.diorite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.diorite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.diorite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.diorite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.diorite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.diorite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.diorite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.diorite_talc_ore.prospected": "Talc", + "block.gtceu.diorite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.diorite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.diorite_thorium_ore.prospected": "Thorium", + "block.gtceu.diorite_tin_ore.prospected": "Tin", + "block.gtceu.diorite_topaz_ore.prospected": "Topaz", + "block.gtceu.diorite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.diorite_trona_ore.prospected": "Trona", + "block.gtceu.diorite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.diorite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.diorite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.diorite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.diorite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.diorite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.diorite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.dolomite_almandine_ore.prospected": "Almandine", + "block.gtceu.dolomite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.dolomite_alunite_ore.prospected": "Alunite", + "block.gtceu.dolomite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.dolomite_apatite_ore.prospected": "Apatite", + "block.gtceu.dolomite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.dolomite_barite_ore.prospected": "Barite", + "block.gtceu.dolomite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.dolomite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.dolomite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.dolomite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.dolomite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.dolomite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.dolomite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.dolomite_borax_ore.prospected": "Borax", + "block.gtceu.dolomite_bornite_ore.prospected": "Bornite", + "block.gtceu.dolomite_calcite_ore.prospected": "Calcite", + "block.gtceu.dolomite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.dolomite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.dolomite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.dolomite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.dolomite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.dolomite_chromite_ore.prospected": "Chromite", + "block.gtceu.dolomite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.dolomite_coal_ore.prospected": "Coal", + "block.gtceu.dolomite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.dolomite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.dolomite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.dolomite_copper_ore.prospected": "Copper", + "block.gtceu.dolomite_diamond_ore.prospected": "Diamond", + "block.gtceu.dolomite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.dolomite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.dolomite_emerald_ore.prospected": "Emerald", + "block.gtceu.dolomite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.dolomite_galena_ore.prospected": "Galena", + "block.gtceu.dolomite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.dolomite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.dolomite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.dolomite_goethite_ore.prospected": "Goethite", + "block.gtceu.dolomite_gold_ore.prospected": "Gold", + "block.gtceu.dolomite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.dolomite_graphite_ore.prospected": "Graphite", + "block.gtceu.dolomite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.dolomite_grossular_ore.prospected": "Grossular", + "block.gtceu.dolomite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.dolomite_hematite_ore.prospected": "Hematite", + "block.gtceu.dolomite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.dolomite_iron_ore.prospected": "Iron", + "block.gtceu.dolomite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.dolomite_lapis_ore.prospected": "Lapis", + "block.gtceu.dolomite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.dolomite_lead_ore.prospected": "Lead", + "block.gtceu.dolomite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.dolomite_lithium_ore.prospected": "Lithium", + "block.gtceu.dolomite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.dolomite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.dolomite_malachite_ore.prospected": "Malachite", + "block.gtceu.dolomite_mica_ore.prospected": "Mica", + "block.gtceu.dolomite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.dolomite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.dolomite_monazite_ore.prospected": "Monazite", + "block.gtceu.dolomite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.dolomite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.dolomite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.dolomite_nickel_ore.prospected": "Nickel", + "block.gtceu.dolomite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.dolomite_olivine_ore.prospected": "Olivine", + "block.gtceu.dolomite_opal_ore.prospected": "Opal", + "block.gtceu.dolomite_palladium_ore.prospected": "Palladium", + "block.gtceu.dolomite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.dolomite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.dolomite_platinum_ore.prospected": "Platinum", + "block.gtceu.dolomite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.dolomite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.dolomite_powellite_ore.prospected": "Powellite", + "block.gtceu.dolomite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.dolomite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.dolomite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.dolomite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.dolomite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.dolomite_realgar_ore.prospected": "Realgar", + "block.gtceu.dolomite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.dolomite_redstone_ore.prospected": "Redstone", + "block.gtceu.dolomite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.dolomite_ruby_ore.prospected": "Ruby", + "block.gtceu.dolomite_salt_ore.prospected": "Salt", + "block.gtceu.dolomite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.dolomite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.dolomite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.dolomite_silver_ore.prospected": "Silver", + "block.gtceu.dolomite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.dolomite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.dolomite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.dolomite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.dolomite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.dolomite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.dolomite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.dolomite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.dolomite_talc_ore.prospected": "Talc", + "block.gtceu.dolomite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.dolomite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.dolomite_thorium_ore.prospected": "Thorium", + "block.gtceu.dolomite_tin_ore.prospected": "Tin", + "block.gtceu.dolomite_topaz_ore.prospected": "Topaz", + "block.gtceu.dolomite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.dolomite_trona_ore.prospected": "Trona", + "block.gtceu.dolomite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.dolomite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.dolomite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.dolomite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.dolomite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.dolomite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.dolomite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.gabbro_almandine_ore.prospected": "Almandine", + "block.gtceu.gabbro_aluminium_ore.prospected": "Aluminium", + "block.gtceu.gabbro_alunite_ore.prospected": "Alunite", + "block.gtceu.gabbro_amethyst_ore.prospected": "Amethyst", + "block.gtceu.gabbro_apatite_ore.prospected": "Apatite", + "block.gtceu.gabbro_asbestos_ore.prospected": "Asbestos", + "block.gtceu.gabbro_barite_ore.prospected": "Barite", + "block.gtceu.gabbro_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.gabbro_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.gabbro_bauxite_ore.prospected": "Bauxite", + "block.gtceu.gabbro_bentonite_ore.prospected": "Bentonite", + "block.gtceu.gabbro_beryllium_ore.prospected": "Beryllium", + "block.gtceu.gabbro_bismuth_ore.prospected": "Bismuth", + "block.gtceu.gabbro_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.gabbro_borax_ore.prospected": "Borax", + "block.gtceu.gabbro_bornite_ore.prospected": "Bornite", + "block.gtceu.gabbro_calcite_ore.prospected": "Calcite", + "block.gtceu.gabbro_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.gabbro_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.gabbro_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.gabbro_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.gabbro_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.gabbro_chromite_ore.prospected": "Chromite", + "block.gtceu.gabbro_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.gabbro_coal_ore.prospected": "Coal", + "block.gtceu.gabbro_cobalt_ore.prospected": "Cobalt", + "block.gtceu.gabbro_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.gabbro_cooperite_ore.prospected": "Cooperite", + "block.gtceu.gabbro_copper_ore.prospected": "Copper", + "block.gtceu.gabbro_diamond_ore.prospected": "Diamond", + "block.gtceu.gabbro_diatomite_ore.prospected": "Diatomite", + "block.gtceu.gabbro_electrotine_ore.prospected": "Electrotine", + "block.gtceu.gabbro_emerald_ore.prospected": "Emerald", + "block.gtceu.gabbro_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.gabbro_galena_ore.prospected": "Galena", + "block.gtceu.gabbro_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.gabbro_garnierite_ore.prospected": "Garnierite", + "block.gtceu.gabbro_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.gabbro_goethite_ore.prospected": "Goethite", + "block.gtceu.gabbro_gold_ore.prospected": "Gold", + "block.gtceu.gabbro_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.gabbro_graphite_ore.prospected": "Graphite", + "block.gtceu.gabbro_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.gabbro_grossular_ore.prospected": "Grossular", + "block.gtceu.gabbro_gypsum_ore.prospected": "Gypsum", + "block.gtceu.gabbro_hematite_ore.prospected": "Hematite", + "block.gtceu.gabbro_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.gabbro_iron_ore.prospected": "Iron", + "block.gtceu.gabbro_kyanite_ore.prospected": "Kyanite", + "block.gtceu.gabbro_lapis_ore.prospected": "Lapis", + "block.gtceu.gabbro_lazurite_ore.prospected": "Lazurite", + "block.gtceu.gabbro_lead_ore.prospected": "Lead", + "block.gtceu.gabbro_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.gabbro_lithium_ore.prospected": "Lithium", + "block.gtceu.gabbro_magnesite_ore.prospected": "Magnesite", + "block.gtceu.gabbro_magnetite_ore.prospected": "Magnetite", + "block.gtceu.gabbro_malachite_ore.prospected": "Malachite", + "block.gtceu.gabbro_mica_ore.prospected": "Mica", + "block.gtceu.gabbro_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.gabbro_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.gabbro_monazite_ore.prospected": "Monazite", + "block.gtceu.gabbro_naquadah_ore.prospected": "Naquadah", + "block.gtceu.gabbro_neodymium_ore.prospected": "Neodymium", + "block.gtceu.gabbro_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.gabbro_nickel_ore.prospected": "Nickel", + "block.gtceu.gabbro_oilsands_ore.prospected": "Oilsands", + "block.gtceu.gabbro_olivine_ore.prospected": "Olivine", + "block.gtceu.gabbro_opal_ore.prospected": "Opal", + "block.gtceu.gabbro_palladium_ore.prospected": "Palladium", + "block.gtceu.gabbro_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.gabbro_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.gabbro_platinum_ore.prospected": "Platinum", + "block.gtceu.gabbro_plutonium_ore.prospected": "Plutonium", + "block.gtceu.gabbro_pollucite_ore.prospected": "Pollucite", + "block.gtceu.gabbro_powellite_ore.prospected": "Powellite", + "block.gtceu.gabbro_pyrite_ore.prospected": "Pyrite", + "block.gtceu.gabbro_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.gabbro_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.gabbro_pyrope_ore.prospected": "Pyrope", + "block.gtceu.gabbro_quartzite_ore.prospected": "Quartzite", + "block.gtceu.gabbro_realgar_ore.prospected": "Realgar", + "block.gtceu.gabbro_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.gabbro_redstone_ore.prospected": "Redstone", + "block.gtceu.gabbro_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.gabbro_ruby_ore.prospected": "Ruby", + "block.gtceu.gabbro_salt_ore.prospected": "Salt", + "block.gtceu.gabbro_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.gabbro_sapphire_ore.prospected": "Sapphire", + "block.gtceu.gabbro_scheelite_ore.prospected": "Scheelite", + "block.gtceu.gabbro_silver_ore.prospected": "Silver", + "block.gtceu.gabbro_soapstone_ore.prospected": "Soapstone", + "block.gtceu.gabbro_sodalite_ore.prospected": "Sodalite", + "block.gtceu.gabbro_spessartine_ore.prospected": "Spessartine", + "block.gtceu.gabbro_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.gabbro_spodumene_ore.prospected": "Spodumene", + "block.gtceu.gabbro_stibnite_ore.prospected": "Stibnite", + "block.gtceu.gabbro_sulfur_ore.prospected": "Sulfur", + "block.gtceu.gabbro_sylvite_ore.prospected": "Sylvite", + "block.gtceu.gabbro_talc_ore.prospected": "Talc", + "block.gtceu.gabbro_tantalite_ore.prospected": "Tantalite", + "block.gtceu.gabbro_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.gabbro_thorium_ore.prospected": "Thorium", + "block.gtceu.gabbro_tin_ore.prospected": "Tin", + "block.gtceu.gabbro_topaz_ore.prospected": "Topaz", + "block.gtceu.gabbro_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.gabbro_trona_ore.prospected": "Trona", + "block.gtceu.gabbro_tungstate_ore.prospected": "Tungstate", + "block.gtceu.gabbro_uraninite_ore.prospected": "Uraninite", + "block.gtceu.gabbro_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.gabbro_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.gabbro_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.gabbro_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.gabbro_zeolite_ore.prospected": "Zeolite", + "block.gtceu.gneiss_almandine_ore.prospected": "Almandine", + "block.gtceu.gneiss_aluminium_ore.prospected": "Aluminium", + "block.gtceu.gneiss_alunite_ore.prospected": "Alunite", + "block.gtceu.gneiss_amethyst_ore.prospected": "Amethyst", + "block.gtceu.gneiss_apatite_ore.prospected": "Apatite", + "block.gtceu.gneiss_asbestos_ore.prospected": "Asbestos", + "block.gtceu.gneiss_barite_ore.prospected": "Barite", + "block.gtceu.gneiss_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.gneiss_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.gneiss_bauxite_ore.prospected": "Bauxite", + "block.gtceu.gneiss_bentonite_ore.prospected": "Bentonite", + "block.gtceu.gneiss_beryllium_ore.prospected": "Beryllium", + "block.gtceu.gneiss_bismuth_ore.prospected": "Bismuth", + "block.gtceu.gneiss_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.gneiss_borax_ore.prospected": "Borax", + "block.gtceu.gneiss_bornite_ore.prospected": "Bornite", + "block.gtceu.gneiss_calcite_ore.prospected": "Calcite", + "block.gtceu.gneiss_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.gneiss_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.gneiss_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.gneiss_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.gneiss_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.gneiss_chromite_ore.prospected": "Chromite", + "block.gtceu.gneiss_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.gneiss_coal_ore.prospected": "Coal", + "block.gtceu.gneiss_cobalt_ore.prospected": "Cobalt", + "block.gtceu.gneiss_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.gneiss_cooperite_ore.prospected": "Cooperite", + "block.gtceu.gneiss_copper_ore.prospected": "Copper", + "block.gtceu.gneiss_diamond_ore.prospected": "Diamond", + "block.gtceu.gneiss_diatomite_ore.prospected": "Diatomite", + "block.gtceu.gneiss_electrotine_ore.prospected": "Electrotine", + "block.gtceu.gneiss_emerald_ore.prospected": "Emerald", + "block.gtceu.gneiss_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.gneiss_galena_ore.prospected": "Galena", + "block.gtceu.gneiss_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.gneiss_garnierite_ore.prospected": "Garnierite", + "block.gtceu.gneiss_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.gneiss_goethite_ore.prospected": "Goethite", + "block.gtceu.gneiss_gold_ore.prospected": "Gold", + "block.gtceu.gneiss_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.gneiss_graphite_ore.prospected": "Graphite", + "block.gtceu.gneiss_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.gneiss_grossular_ore.prospected": "Grossular", + "block.gtceu.gneiss_gypsum_ore.prospected": "Gypsum", + "block.gtceu.gneiss_hematite_ore.prospected": "Hematite", + "block.gtceu.gneiss_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.gneiss_iron_ore.prospected": "Iron", + "block.gtceu.gneiss_kyanite_ore.prospected": "Kyanite", + "block.gtceu.gneiss_lapis_ore.prospected": "Lapis", + "block.gtceu.gneiss_lazurite_ore.prospected": "Lazurite", + "block.gtceu.gneiss_lead_ore.prospected": "Lead", + "block.gtceu.gneiss_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.gneiss_lithium_ore.prospected": "Lithium", + "block.gtceu.gneiss_magnesite_ore.prospected": "Magnesite", + "block.gtceu.gneiss_magnetite_ore.prospected": "Magnetite", + "block.gtceu.gneiss_malachite_ore.prospected": "Malachite", + "block.gtceu.gneiss_mica_ore.prospected": "Mica", + "block.gtceu.gneiss_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.gneiss_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.gneiss_monazite_ore.prospected": "Monazite", + "block.gtceu.gneiss_naquadah_ore.prospected": "Naquadah", + "block.gtceu.gneiss_neodymium_ore.prospected": "Neodymium", + "block.gtceu.gneiss_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.gneiss_nickel_ore.prospected": "Nickel", + "block.gtceu.gneiss_oilsands_ore.prospected": "Oilsands", + "block.gtceu.gneiss_olivine_ore.prospected": "Olivine", + "block.gtceu.gneiss_opal_ore.prospected": "Opal", + "block.gtceu.gneiss_palladium_ore.prospected": "Palladium", + "block.gtceu.gneiss_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.gneiss_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.gneiss_platinum_ore.prospected": "Platinum", + "block.gtceu.gneiss_plutonium_ore.prospected": "Plutonium", + "block.gtceu.gneiss_pollucite_ore.prospected": "Pollucite", + "block.gtceu.gneiss_powellite_ore.prospected": "Powellite", + "block.gtceu.gneiss_pyrite_ore.prospected": "Pyrite", + "block.gtceu.gneiss_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.gneiss_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.gneiss_pyrope_ore.prospected": "Pyrope", + "block.gtceu.gneiss_quartzite_ore.prospected": "Quartzite", + "block.gtceu.gneiss_realgar_ore.prospected": "Realgar", + "block.gtceu.gneiss_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.gneiss_redstone_ore.prospected": "Redstone", + "block.gtceu.gneiss_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.gneiss_ruby_ore.prospected": "Ruby", + "block.gtceu.gneiss_salt_ore.prospected": "Salt", + "block.gtceu.gneiss_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.gneiss_sapphire_ore.prospected": "Sapphire", + "block.gtceu.gneiss_scheelite_ore.prospected": "Scheelite", + "block.gtceu.gneiss_silver_ore.prospected": "Silver", + "block.gtceu.gneiss_soapstone_ore.prospected": "Soapstone", + "block.gtceu.gneiss_sodalite_ore.prospected": "Sodalite", + "block.gtceu.gneiss_spessartine_ore.prospected": "Spessartine", + "block.gtceu.gneiss_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.gneiss_spodumene_ore.prospected": "Spodumene", + "block.gtceu.gneiss_stibnite_ore.prospected": "Stibnite", + "block.gtceu.gneiss_sulfur_ore.prospected": "Sulfur", + "block.gtceu.gneiss_sylvite_ore.prospected": "Sylvite", + "block.gtceu.gneiss_talc_ore.prospected": "Talc", + "block.gtceu.gneiss_tantalite_ore.prospected": "Tantalite", + "block.gtceu.gneiss_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.gneiss_thorium_ore.prospected": "Thorium", + "block.gtceu.gneiss_tin_ore.prospected": "Tin", + "block.gtceu.gneiss_topaz_ore.prospected": "Topaz", + "block.gtceu.gneiss_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.gneiss_trona_ore.prospected": "Trona", + "block.gtceu.gneiss_tungstate_ore.prospected": "Tungstate", + "block.gtceu.gneiss_uraninite_ore.prospected": "Uraninite", + "block.gtceu.gneiss_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.gneiss_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.gneiss_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.gneiss_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.gneiss_zeolite_ore.prospected": "Zeolite", + "block.gtceu.granite_almandine_ore.prospected": "Almandine", + "block.gtceu.granite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.granite_alunite_ore.prospected": "Alunite", + "block.gtceu.granite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.granite_apatite_ore.prospected": "Apatite", + "block.gtceu.granite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.granite_barite_ore.prospected": "Barite", + "block.gtceu.granite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.granite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.granite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.granite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.granite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.granite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.granite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.granite_borax_ore.prospected": "Borax", + "block.gtceu.granite_bornite_ore.prospected": "Bornite", + "block.gtceu.granite_calcite_ore.prospected": "Calcite", + "block.gtceu.granite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.granite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.granite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.granite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.granite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.granite_chromite_ore.prospected": "Chromite", + "block.gtceu.granite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.granite_coal_ore.prospected": "Coal", + "block.gtceu.granite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.granite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.granite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.granite_copper_ore.prospected": "Copper", + "block.gtceu.granite_diamond_ore.prospected": "Diamond", + "block.gtceu.granite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.granite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.granite_emerald_ore.prospected": "Emerald", + "block.gtceu.granite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.granite_galena_ore.prospected": "Galena", + "block.gtceu.granite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.granite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.granite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.granite_goethite_ore.prospected": "Goethite", + "block.gtceu.granite_gold_ore.prospected": "Gold", + "block.gtceu.granite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.granite_graphite_ore.prospected": "Graphite", + "block.gtceu.granite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.granite_grossular_ore.prospected": "Grossular", + "block.gtceu.granite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.granite_hematite_ore.prospected": "Hematite", + "block.gtceu.granite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.granite_iron_ore.prospected": "Iron", + "block.gtceu.granite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.granite_lapis_ore.prospected": "Lapis", + "block.gtceu.granite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.granite_lead_ore.prospected": "Lead", + "block.gtceu.granite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.granite_lithium_ore.prospected": "Lithium", + "block.gtceu.granite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.granite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.granite_malachite_ore.prospected": "Malachite", + "block.gtceu.granite_mica_ore.prospected": "Mica", + "block.gtceu.granite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.granite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.granite_monazite_ore.prospected": "Monazite", + "block.gtceu.granite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.granite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.granite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.granite_nickel_ore.prospected": "Nickel", + "block.gtceu.granite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.granite_olivine_ore.prospected": "Olivine", + "block.gtceu.granite_opal_ore.prospected": "Opal", + "block.gtceu.granite_palladium_ore.prospected": "Palladium", + "block.gtceu.granite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.granite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.granite_platinum_ore.prospected": "Platinum", + "block.gtceu.granite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.granite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.granite_powellite_ore.prospected": "Powellite", + "block.gtceu.granite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.granite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.granite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.granite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.granite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.granite_realgar_ore.prospected": "Realgar", + "block.gtceu.granite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.granite_redstone_ore.prospected": "Redstone", + "block.gtceu.granite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.granite_ruby_ore.prospected": "Ruby", + "block.gtceu.granite_salt_ore.prospected": "Salt", + "block.gtceu.granite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.granite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.granite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.granite_silver_ore.prospected": "Silver", + "block.gtceu.granite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.granite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.granite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.granite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.granite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.granite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.granite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.granite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.granite_talc_ore.prospected": "Talc", + "block.gtceu.granite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.granite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.granite_thorium_ore.prospected": "Thorium", + "block.gtceu.granite_tin_ore.prospected": "Tin", + "block.gtceu.granite_topaz_ore.prospected": "Topaz", + "block.gtceu.granite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.granite_trona_ore.prospected": "Trona", + "block.gtceu.granite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.granite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.granite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.granite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.granite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.granite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.granite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.limestone_almandine_ore.prospected": "Almandine", + "block.gtceu.limestone_aluminium_ore.prospected": "Aluminium", + "block.gtceu.limestone_alunite_ore.prospected": "Alunite", + "block.gtceu.limestone_amethyst_ore.prospected": "Amethyst", + "block.gtceu.limestone_apatite_ore.prospected": "Apatite", + "block.gtceu.limestone_asbestos_ore.prospected": "Asbestos", + "block.gtceu.limestone_barite_ore.prospected": "Barite", + "block.gtceu.limestone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.limestone_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.limestone_bauxite_ore.prospected": "Bauxite", + "block.gtceu.limestone_bentonite_ore.prospected": "Bentonite", + "block.gtceu.limestone_beryllium_ore.prospected": "Beryllium", + "block.gtceu.limestone_bismuth_ore.prospected": "Bismuth", + "block.gtceu.limestone_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.limestone_borax_ore.prospected": "Borax", + "block.gtceu.limestone_bornite_ore.prospected": "Bornite", + "block.gtceu.limestone_calcite_ore.prospected": "Calcite", + "block.gtceu.limestone_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.limestone_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.limestone_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.limestone_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.limestone_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.limestone_chromite_ore.prospected": "Chromite", + "block.gtceu.limestone_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.limestone_coal_ore.prospected": "Coal", + "block.gtceu.limestone_cobalt_ore.prospected": "Cobalt", + "block.gtceu.limestone_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.limestone_cooperite_ore.prospected": "Cooperite", + "block.gtceu.limestone_copper_ore.prospected": "Copper", + "block.gtceu.limestone_diamond_ore.prospected": "Diamond", + "block.gtceu.limestone_diatomite_ore.prospected": "Diatomite", + "block.gtceu.limestone_electrotine_ore.prospected": "Electrotine", + "block.gtceu.limestone_emerald_ore.prospected": "Emerald", + "block.gtceu.limestone_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.limestone_galena_ore.prospected": "Galena", + "block.gtceu.limestone_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.limestone_garnierite_ore.prospected": "Garnierite", + "block.gtceu.limestone_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.limestone_goethite_ore.prospected": "Goethite", + "block.gtceu.limestone_gold_ore.prospected": "Gold", + "block.gtceu.limestone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.limestone_graphite_ore.prospected": "Graphite", + "block.gtceu.limestone_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.limestone_grossular_ore.prospected": "Grossular", + "block.gtceu.limestone_gypsum_ore.prospected": "Gypsum", + "block.gtceu.limestone_hematite_ore.prospected": "Hematite", + "block.gtceu.limestone_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.limestone_iron_ore.prospected": "Iron", + "block.gtceu.limestone_kyanite_ore.prospected": "Kyanite", + "block.gtceu.limestone_lapis_ore.prospected": "Lapis", + "block.gtceu.limestone_lazurite_ore.prospected": "Lazurite", + "block.gtceu.limestone_lead_ore.prospected": "Lead", + "block.gtceu.limestone_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.limestone_lithium_ore.prospected": "Lithium", + "block.gtceu.limestone_magnesite_ore.prospected": "Magnesite", + "block.gtceu.limestone_magnetite_ore.prospected": "Magnetite", + "block.gtceu.limestone_malachite_ore.prospected": "Malachite", + "block.gtceu.limestone_mica_ore.prospected": "Mica", + "block.gtceu.limestone_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.limestone_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.limestone_monazite_ore.prospected": "Monazite", + "block.gtceu.limestone_naquadah_ore.prospected": "Naquadah", + "block.gtceu.limestone_neodymium_ore.prospected": "Neodymium", + "block.gtceu.limestone_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.limestone_nickel_ore.prospected": "Nickel", + "block.gtceu.limestone_oilsands_ore.prospected": "Oilsands", + "block.gtceu.limestone_olivine_ore.prospected": "Olivine", + "block.gtceu.limestone_opal_ore.prospected": "Opal", + "block.gtceu.limestone_palladium_ore.prospected": "Palladium", + "block.gtceu.limestone_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.limestone_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.limestone_platinum_ore.prospected": "Platinum", + "block.gtceu.limestone_plutonium_ore.prospected": "Plutonium", + "block.gtceu.limestone_pollucite_ore.prospected": "Pollucite", + "block.gtceu.limestone_powellite_ore.prospected": "Powellite", + "block.gtceu.limestone_pyrite_ore.prospected": "Pyrite", + "block.gtceu.limestone_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.limestone_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.limestone_pyrope_ore.prospected": "Pyrope", + "block.gtceu.limestone_quartzite_ore.prospected": "Quartzite", + "block.gtceu.limestone_realgar_ore.prospected": "Realgar", + "block.gtceu.limestone_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.limestone_redstone_ore.prospected": "Redstone", + "block.gtceu.limestone_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.limestone_ruby_ore.prospected": "Ruby", + "block.gtceu.limestone_salt_ore.prospected": "Salt", + "block.gtceu.limestone_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.limestone_sapphire_ore.prospected": "Sapphire", + "block.gtceu.limestone_scheelite_ore.prospected": "Scheelite", + "block.gtceu.limestone_silver_ore.prospected": "Silver", + "block.gtceu.limestone_soapstone_ore.prospected": "Soapstone", + "block.gtceu.limestone_sodalite_ore.prospected": "Sodalite", + "block.gtceu.limestone_spessartine_ore.prospected": "Spessartine", + "block.gtceu.limestone_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.limestone_spodumene_ore.prospected": "Spodumene", + "block.gtceu.limestone_stibnite_ore.prospected": "Stibnite", + "block.gtceu.limestone_sulfur_ore.prospected": "Sulfur", + "block.gtceu.limestone_sylvite_ore.prospected": "Sylvite", + "block.gtceu.limestone_talc_ore.prospected": "Talc", + "block.gtceu.limestone_tantalite_ore.prospected": "Tantalite", + "block.gtceu.limestone_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.limestone_thorium_ore.prospected": "Thorium", + "block.gtceu.limestone_tin_ore.prospected": "Tin", + "block.gtceu.limestone_topaz_ore.prospected": "Topaz", + "block.gtceu.limestone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.limestone_trona_ore.prospected": "Trona", + "block.gtceu.limestone_tungstate_ore.prospected": "Tungstate", + "block.gtceu.limestone_uraninite_ore.prospected": "Uraninite", + "block.gtceu.limestone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.limestone_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.limestone_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.limestone_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.limestone_zeolite_ore.prospected": "Zeolite", + "block.gtceu.marble_almandine_ore.prospected": "Almandine", + "block.gtceu.marble_aluminium_ore.prospected": "Aluminium", + "block.gtceu.marble_alunite_ore.prospected": "Alunite", + "block.gtceu.marble_amethyst_ore.prospected": "Amethyst", + "block.gtceu.marble_apatite_ore.prospected": "Apatite", + "block.gtceu.marble_asbestos_ore.prospected": "Asbestos", + "block.gtceu.marble_barite_ore.prospected": "Barite", + "block.gtceu.marble_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.marble_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.marble_bauxite_ore.prospected": "Bauxite", + "block.gtceu.marble_bentonite_ore.prospected": "Bentonite", + "block.gtceu.marble_beryllium_ore.prospected": "Beryllium", + "block.gtceu.marble_bismuth_ore.prospected": "Bismuth", + "block.gtceu.marble_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.marble_borax_ore.prospected": "Borax", + "block.gtceu.marble_bornite_ore.prospected": "Bornite", + "block.gtceu.marble_calcite_ore.prospected": "Calcite", + "block.gtceu.marble_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.marble_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.marble_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.marble_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.marble_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.marble_chromite_ore.prospected": "Chromite", + "block.gtceu.marble_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.marble_coal_ore.prospected": "Coal", + "block.gtceu.marble_cobalt_ore.prospected": "Cobalt", + "block.gtceu.marble_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.marble_cooperite_ore.prospected": "Cooperite", + "block.gtceu.marble_copper_ore.prospected": "Copper", + "block.gtceu.marble_diamond_ore.prospected": "Diamond", + "block.gtceu.marble_diatomite_ore.prospected": "Diatomite", + "block.gtceu.marble_electrotine_ore.prospected": "Electrotine", + "block.gtceu.marble_emerald_ore.prospected": "Emerald", + "block.gtceu.marble_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.marble_galena_ore.prospected": "Galena", + "block.gtceu.marble_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.marble_garnierite_ore.prospected": "Garnierite", + "block.gtceu.marble_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.marble_goethite_ore.prospected": "Goethite", + "block.gtceu.marble_gold_ore.prospected": "Gold", + "block.gtceu.marble_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.marble_graphite_ore.prospected": "Graphite", + "block.gtceu.marble_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.marble_grossular_ore.prospected": "Grossular", + "block.gtceu.marble_gypsum_ore.prospected": "Gypsum", + "block.gtceu.marble_hematite_ore.prospected": "Hematite", + "block.gtceu.marble_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.marble_iron_ore.prospected": "Iron", + "block.gtceu.marble_kyanite_ore.prospected": "Kyanite", + "block.gtceu.marble_lapis_ore.prospected": "Lapis", + "block.gtceu.marble_lazurite_ore.prospected": "Lazurite", + "block.gtceu.marble_lead_ore.prospected": "Lead", + "block.gtceu.marble_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.marble_lithium_ore.prospected": "Lithium", + "block.gtceu.marble_magnesite_ore.prospected": "Magnesite", + "block.gtceu.marble_magnetite_ore.prospected": "Magnetite", + "block.gtceu.marble_malachite_ore.prospected": "Malachite", + "block.gtceu.marble_mica_ore.prospected": "Mica", + "block.gtceu.marble_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.marble_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.marble_monazite_ore.prospected": "Monazite", + "block.gtceu.marble_naquadah_ore.prospected": "Naquadah", + "block.gtceu.marble_neodymium_ore.prospected": "Neodymium", + "block.gtceu.marble_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.marble_nickel_ore.prospected": "Nickel", + "block.gtceu.marble_oilsands_ore.prospected": "Oilsands", + "block.gtceu.marble_olivine_ore.prospected": "Olivine", + "block.gtceu.marble_opal_ore.prospected": "Opal", + "block.gtceu.marble_palladium_ore.prospected": "Palladium", + "block.gtceu.marble_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.marble_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.marble_platinum_ore.prospected": "Platinum", + "block.gtceu.marble_plutonium_ore.prospected": "Plutonium", + "block.gtceu.marble_pollucite_ore.prospected": "Pollucite", + "block.gtceu.marble_powellite_ore.prospected": "Powellite", + "block.gtceu.marble_pyrite_ore.prospected": "Pyrite", + "block.gtceu.marble_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.marble_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.marble_pyrope_ore.prospected": "Pyrope", + "block.gtceu.marble_quartzite_ore.prospected": "Quartzite", + "block.gtceu.marble_realgar_ore.prospected": "Realgar", + "block.gtceu.marble_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.marble_redstone_ore.prospected": "Redstone", + "block.gtceu.marble_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.marble_ruby_ore.prospected": "Ruby", + "block.gtceu.marble_salt_ore.prospected": "Salt", + "block.gtceu.marble_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.marble_sapphire_ore.prospected": "Sapphire", + "block.gtceu.marble_scheelite_ore.prospected": "Scheelite", + "block.gtceu.marble_silver_ore.prospected": "Silver", + "block.gtceu.marble_soapstone_ore.prospected": "Soapstone", + "block.gtceu.marble_sodalite_ore.prospected": "Sodalite", + "block.gtceu.marble_spessartine_ore.prospected": "Spessartine", + "block.gtceu.marble_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.marble_spodumene_ore.prospected": "Spodumene", + "block.gtceu.marble_stibnite_ore.prospected": "Stibnite", + "block.gtceu.marble_sulfur_ore.prospected": "Sulfur", + "block.gtceu.marble_sylvite_ore.prospected": "Sylvite", + "block.gtceu.marble_talc_ore.prospected": "Talc", + "block.gtceu.marble_tantalite_ore.prospected": "Tantalite", + "block.gtceu.marble_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.marble_thorium_ore.prospected": "Thorium", + "block.gtceu.marble_tin_ore.prospected": "Tin", + "block.gtceu.marble_topaz_ore.prospected": "Topaz", + "block.gtceu.marble_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.marble_trona_ore.prospected": "Trona", + "block.gtceu.marble_tungstate_ore.prospected": "Tungstate", + "block.gtceu.marble_uraninite_ore.prospected": "Uraninite", + "block.gtceu.marble_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.marble_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.marble_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.marble_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.marble_zeolite_ore.prospected": "Zeolite", + "block.gtceu.phyllite_almandine_ore.prospected": "Almandine", + "block.gtceu.phyllite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.phyllite_alunite_ore.prospected": "Alunite", + "block.gtceu.phyllite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.phyllite_apatite_ore.prospected": "Apatite", + "block.gtceu.phyllite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.phyllite_barite_ore.prospected": "Barite", + "block.gtceu.phyllite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.phyllite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.phyllite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.phyllite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.phyllite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.phyllite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.phyllite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.phyllite_borax_ore.prospected": "Borax", + "block.gtceu.phyllite_bornite_ore.prospected": "Bornite", + "block.gtceu.phyllite_calcite_ore.prospected": "Calcite", + "block.gtceu.phyllite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.phyllite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.phyllite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.phyllite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.phyllite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.phyllite_chromite_ore.prospected": "Chromite", + "block.gtceu.phyllite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.phyllite_coal_ore.prospected": "Coal", + "block.gtceu.phyllite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.phyllite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.phyllite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.phyllite_copper_ore.prospected": "Copper", + "block.gtceu.phyllite_diamond_ore.prospected": "Diamond", + "block.gtceu.phyllite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.phyllite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.phyllite_emerald_ore.prospected": "Emerald", + "block.gtceu.phyllite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.phyllite_galena_ore.prospected": "Galena", + "block.gtceu.phyllite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.phyllite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.phyllite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.phyllite_goethite_ore.prospected": "Goethite", + "block.gtceu.phyllite_gold_ore.prospected": "Gold", + "block.gtceu.phyllite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.phyllite_graphite_ore.prospected": "Graphite", + "block.gtceu.phyllite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.phyllite_grossular_ore.prospected": "Grossular", + "block.gtceu.phyllite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.phyllite_hematite_ore.prospected": "Hematite", + "block.gtceu.phyllite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.phyllite_iron_ore.prospected": "Iron", + "block.gtceu.phyllite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.phyllite_lapis_ore.prospected": "Lapis", + "block.gtceu.phyllite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.phyllite_lead_ore.prospected": "Lead", + "block.gtceu.phyllite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.phyllite_lithium_ore.prospected": "Lithium", + "block.gtceu.phyllite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.phyllite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.phyllite_malachite_ore.prospected": "Malachite", + "block.gtceu.phyllite_mica_ore.prospected": "Mica", + "block.gtceu.phyllite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.phyllite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.phyllite_monazite_ore.prospected": "Monazite", + "block.gtceu.phyllite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.phyllite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.phyllite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.phyllite_nickel_ore.prospected": "Nickel", + "block.gtceu.phyllite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.phyllite_olivine_ore.prospected": "Olivine", + "block.gtceu.phyllite_opal_ore.prospected": "Opal", + "block.gtceu.phyllite_palladium_ore.prospected": "Palladium", + "block.gtceu.phyllite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.phyllite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.phyllite_platinum_ore.prospected": "Platinum", + "block.gtceu.phyllite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.phyllite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.phyllite_powellite_ore.prospected": "Powellite", + "block.gtceu.phyllite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.phyllite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.phyllite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.phyllite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.phyllite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.phyllite_realgar_ore.prospected": "Realgar", + "block.gtceu.phyllite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.phyllite_redstone_ore.prospected": "Redstone", + "block.gtceu.phyllite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.phyllite_ruby_ore.prospected": "Ruby", + "block.gtceu.phyllite_salt_ore.prospected": "Salt", + "block.gtceu.phyllite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.phyllite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.phyllite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.phyllite_silver_ore.prospected": "Silver", + "block.gtceu.phyllite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.phyllite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.phyllite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.phyllite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.phyllite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.phyllite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.phyllite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.phyllite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.phyllite_talc_ore.prospected": "Talc", + "block.gtceu.phyllite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.phyllite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.phyllite_thorium_ore.prospected": "Thorium", + "block.gtceu.phyllite_tin_ore.prospected": "Tin", + "block.gtceu.phyllite_topaz_ore.prospected": "Topaz", + "block.gtceu.phyllite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.phyllite_trona_ore.prospected": "Trona", + "block.gtceu.phyllite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.phyllite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.phyllite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.phyllite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.phyllite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.phyllite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.phyllite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.quartzite_almandine_ore.prospected": "Almandine", + "block.gtceu.quartzite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.quartzite_alunite_ore.prospected": "Alunite", + "block.gtceu.quartzite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.quartzite_apatite_ore.prospected": "Apatite", + "block.gtceu.quartzite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.quartzite_barite_ore.prospected": "Barite", + "block.gtceu.quartzite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.quartzite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.quartzite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.quartzite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.quartzite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.quartzite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.quartzite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.quartzite_borax_ore.prospected": "Borax", + "block.gtceu.quartzite_bornite_ore.prospected": "Bornite", + "block.gtceu.quartzite_calcite_ore.prospected": "Calcite", + "block.gtceu.quartzite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.quartzite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.quartzite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.quartzite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.quartzite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.quartzite_chromite_ore.prospected": "Chromite", + "block.gtceu.quartzite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.quartzite_coal_ore.prospected": "Coal", + "block.gtceu.quartzite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.quartzite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.quartzite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.quartzite_copper_ore.prospected": "Copper", + "block.gtceu.quartzite_diamond_ore.prospected": "Diamond", + "block.gtceu.quartzite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.quartzite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.quartzite_emerald_ore.prospected": "Emerald", + "block.gtceu.quartzite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.quartzite_galena_ore.prospected": "Galena", + "block.gtceu.quartzite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.quartzite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.quartzite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.quartzite_goethite_ore.prospected": "Goethite", + "block.gtceu.quartzite_gold_ore.prospected": "Gold", + "block.gtceu.quartzite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.quartzite_graphite_ore.prospected": "Graphite", + "block.gtceu.quartzite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.quartzite_grossular_ore.prospected": "Grossular", + "block.gtceu.quartzite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.quartzite_hematite_ore.prospected": "Hematite", + "block.gtceu.quartzite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.quartzite_iron_ore.prospected": "Iron", + "block.gtceu.quartzite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.quartzite_lapis_ore.prospected": "Lapis", + "block.gtceu.quartzite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.quartzite_lead_ore.prospected": "Lead", + "block.gtceu.quartzite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.quartzite_lithium_ore.prospected": "Lithium", + "block.gtceu.quartzite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.quartzite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.quartzite_malachite_ore.prospected": "Malachite", + "block.gtceu.quartzite_mica_ore.prospected": "Mica", + "block.gtceu.quartzite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.quartzite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.quartzite_monazite_ore.prospected": "Monazite", + "block.gtceu.quartzite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.quartzite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.quartzite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.quartzite_nickel_ore.prospected": "Nickel", + "block.gtceu.quartzite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.quartzite_olivine_ore.prospected": "Olivine", + "block.gtceu.quartzite_opal_ore.prospected": "Opal", + "block.gtceu.quartzite_palladium_ore.prospected": "Palladium", + "block.gtceu.quartzite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.quartzite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.quartzite_platinum_ore.prospected": "Platinum", + "block.gtceu.quartzite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.quartzite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.quartzite_powellite_ore.prospected": "Powellite", + "block.gtceu.quartzite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.quartzite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.quartzite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.quartzite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.quartzite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.quartzite_realgar_ore.prospected": "Realgar", + "block.gtceu.quartzite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.quartzite_redstone_ore.prospected": "Redstone", + "block.gtceu.quartzite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.quartzite_ruby_ore.prospected": "Ruby", + "block.gtceu.quartzite_salt_ore.prospected": "Salt", + "block.gtceu.quartzite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.quartzite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.quartzite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.quartzite_silver_ore.prospected": "Silver", + "block.gtceu.quartzite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.quartzite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.quartzite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.quartzite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.quartzite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.quartzite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.quartzite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.quartzite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.quartzite_talc_ore.prospected": "Talc", + "block.gtceu.quartzite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.quartzite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.quartzite_thorium_ore.prospected": "Thorium", + "block.gtceu.quartzite_tin_ore.prospected": "Tin", + "block.gtceu.quartzite_topaz_ore.prospected": "Topaz", + "block.gtceu.quartzite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.quartzite_trona_ore.prospected": "Trona", + "block.gtceu.quartzite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.quartzite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.quartzite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.quartzite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.quartzite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.quartzite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.quartzite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.rhyolite_almandine_ore.prospected": "Almandine", + "block.gtceu.rhyolite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.rhyolite_alunite_ore.prospected": "Alunite", + "block.gtceu.rhyolite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.rhyolite_apatite_ore.prospected": "Apatite", + "block.gtceu.rhyolite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.rhyolite_barite_ore.prospected": "Barite", + "block.gtceu.rhyolite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.rhyolite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.rhyolite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.rhyolite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.rhyolite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.rhyolite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.rhyolite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.rhyolite_borax_ore.prospected": "Borax", + "block.gtceu.rhyolite_bornite_ore.prospected": "Bornite", + "block.gtceu.rhyolite_calcite_ore.prospected": "Calcite", + "block.gtceu.rhyolite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.rhyolite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.rhyolite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.rhyolite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.rhyolite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.rhyolite_chromite_ore.prospected": "Chromite", + "block.gtceu.rhyolite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.rhyolite_coal_ore.prospected": "Coal", + "block.gtceu.rhyolite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.rhyolite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.rhyolite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.rhyolite_copper_ore.prospected": "Copper", + "block.gtceu.rhyolite_diamond_ore.prospected": "Diamond", + "block.gtceu.rhyolite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.rhyolite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.rhyolite_emerald_ore.prospected": "Emerald", + "block.gtceu.rhyolite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.rhyolite_galena_ore.prospected": "Galena", + "block.gtceu.rhyolite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.rhyolite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.rhyolite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.rhyolite_goethite_ore.prospected": "Goethite", + "block.gtceu.rhyolite_gold_ore.prospected": "Gold", + "block.gtceu.rhyolite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.rhyolite_graphite_ore.prospected": "Graphite", + "block.gtceu.rhyolite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.rhyolite_grossular_ore.prospected": "Grossular", + "block.gtceu.rhyolite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.rhyolite_hematite_ore.prospected": "Hematite", + "block.gtceu.rhyolite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.rhyolite_iron_ore.prospected": "Iron", + "block.gtceu.rhyolite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.rhyolite_lapis_ore.prospected": "Lapis", + "block.gtceu.rhyolite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.rhyolite_lead_ore.prospected": "Lead", + "block.gtceu.rhyolite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.rhyolite_lithium_ore.prospected": "Lithium", + "block.gtceu.rhyolite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.rhyolite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.rhyolite_malachite_ore.prospected": "Malachite", + "block.gtceu.rhyolite_mica_ore.prospected": "Mica", + "block.gtceu.rhyolite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.rhyolite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.rhyolite_monazite_ore.prospected": "Monazite", + "block.gtceu.rhyolite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.rhyolite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.rhyolite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.rhyolite_nickel_ore.prospected": "Nickel", + "block.gtceu.rhyolite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.rhyolite_olivine_ore.prospected": "Olivine", + "block.gtceu.rhyolite_opal_ore.prospected": "Opal", + "block.gtceu.rhyolite_palladium_ore.prospected": "Palladium", + "block.gtceu.rhyolite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.rhyolite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.rhyolite_platinum_ore.prospected": "Platinum", + "block.gtceu.rhyolite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.rhyolite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.rhyolite_powellite_ore.prospected": "Powellite", + "block.gtceu.rhyolite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.rhyolite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.rhyolite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.rhyolite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.rhyolite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.rhyolite_realgar_ore.prospected": "Realgar", + "block.gtceu.rhyolite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.rhyolite_redstone_ore.prospected": "Redstone", + "block.gtceu.rhyolite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.rhyolite_ruby_ore.prospected": "Ruby", + "block.gtceu.rhyolite_salt_ore.prospected": "Salt", + "block.gtceu.rhyolite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.rhyolite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.rhyolite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.rhyolite_silver_ore.prospected": "Silver", + "block.gtceu.rhyolite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.rhyolite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.rhyolite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.rhyolite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.rhyolite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.rhyolite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.rhyolite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.rhyolite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.rhyolite_talc_ore.prospected": "Talc", + "block.gtceu.rhyolite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.rhyolite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.rhyolite_thorium_ore.prospected": "Thorium", + "block.gtceu.rhyolite_tin_ore.prospected": "Tin", + "block.gtceu.rhyolite_topaz_ore.prospected": "Topaz", + "block.gtceu.rhyolite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.rhyolite_trona_ore.prospected": "Trona", + "block.gtceu.rhyolite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.rhyolite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.rhyolite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.rhyolite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.rhyolite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.rhyolite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.rhyolite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.schist_almandine_ore.prospected": "Almandine", + "block.gtceu.schist_aluminium_ore.prospected": "Aluminium", + "block.gtceu.schist_alunite_ore.prospected": "Alunite", + "block.gtceu.schist_amethyst_ore.prospected": "Amethyst", + "block.gtceu.schist_apatite_ore.prospected": "Apatite", + "block.gtceu.schist_asbestos_ore.prospected": "Asbestos", + "block.gtceu.schist_barite_ore.prospected": "Barite", + "block.gtceu.schist_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.schist_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.schist_bauxite_ore.prospected": "Bauxite", + "block.gtceu.schist_bentonite_ore.prospected": "Bentonite", + "block.gtceu.schist_beryllium_ore.prospected": "Beryllium", + "block.gtceu.schist_bismuth_ore.prospected": "Bismuth", + "block.gtceu.schist_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.schist_borax_ore.prospected": "Borax", + "block.gtceu.schist_bornite_ore.prospected": "Bornite", + "block.gtceu.schist_calcite_ore.prospected": "Calcite", + "block.gtceu.schist_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.schist_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.schist_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.schist_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.schist_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.schist_chromite_ore.prospected": "Chromite", + "block.gtceu.schist_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.schist_coal_ore.prospected": "Coal", + "block.gtceu.schist_cobalt_ore.prospected": "Cobalt", + "block.gtceu.schist_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.schist_cooperite_ore.prospected": "Cooperite", + "block.gtceu.schist_copper_ore.prospected": "Copper", + "block.gtceu.schist_diamond_ore.prospected": "Diamond", + "block.gtceu.schist_diatomite_ore.prospected": "Diatomite", + "block.gtceu.schist_electrotine_ore.prospected": "Electrotine", + "block.gtceu.schist_emerald_ore.prospected": "Emerald", + "block.gtceu.schist_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.schist_galena_ore.prospected": "Galena", + "block.gtceu.schist_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.schist_garnierite_ore.prospected": "Garnierite", + "block.gtceu.schist_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.schist_goethite_ore.prospected": "Goethite", + "block.gtceu.schist_gold_ore.prospected": "Gold", + "block.gtceu.schist_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.schist_graphite_ore.prospected": "Graphite", + "block.gtceu.schist_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.schist_grossular_ore.prospected": "Grossular", + "block.gtceu.schist_gypsum_ore.prospected": "Gypsum", + "block.gtceu.schist_hematite_ore.prospected": "Hematite", + "block.gtceu.schist_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.schist_iron_ore.prospected": "Iron", + "block.gtceu.schist_kyanite_ore.prospected": "Kyanite", + "block.gtceu.schist_lapis_ore.prospected": "Lapis", + "block.gtceu.schist_lazurite_ore.prospected": "Lazurite", + "block.gtceu.schist_lead_ore.prospected": "Lead", + "block.gtceu.schist_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.schist_lithium_ore.prospected": "Lithium", + "block.gtceu.schist_magnesite_ore.prospected": "Magnesite", + "block.gtceu.schist_magnetite_ore.prospected": "Magnetite", + "block.gtceu.schist_malachite_ore.prospected": "Malachite", + "block.gtceu.schist_mica_ore.prospected": "Mica", + "block.gtceu.schist_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.schist_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.schist_monazite_ore.prospected": "Monazite", + "block.gtceu.schist_naquadah_ore.prospected": "Naquadah", + "block.gtceu.schist_neodymium_ore.prospected": "Neodymium", + "block.gtceu.schist_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.schist_nickel_ore.prospected": "Nickel", + "block.gtceu.schist_oilsands_ore.prospected": "Oilsands", + "block.gtceu.schist_olivine_ore.prospected": "Olivine", + "block.gtceu.schist_opal_ore.prospected": "Opal", + "block.gtceu.schist_palladium_ore.prospected": "Palladium", + "block.gtceu.schist_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.schist_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.schist_platinum_ore.prospected": "Platinum", + "block.gtceu.schist_plutonium_ore.prospected": "Plutonium", + "block.gtceu.schist_pollucite_ore.prospected": "Pollucite", + "block.gtceu.schist_powellite_ore.prospected": "Powellite", + "block.gtceu.schist_pyrite_ore.prospected": "Pyrite", + "block.gtceu.schist_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.schist_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.schist_pyrope_ore.prospected": "Pyrope", + "block.gtceu.schist_quartzite_ore.prospected": "Quartzite", + "block.gtceu.schist_realgar_ore.prospected": "Realgar", + "block.gtceu.schist_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.schist_redstone_ore.prospected": "Redstone", + "block.gtceu.schist_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.schist_ruby_ore.prospected": "Ruby", + "block.gtceu.schist_salt_ore.prospected": "Salt", + "block.gtceu.schist_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.schist_sapphire_ore.prospected": "Sapphire", + "block.gtceu.schist_scheelite_ore.prospected": "Scheelite", + "block.gtceu.schist_silver_ore.prospected": "Silver", + "block.gtceu.schist_soapstone_ore.prospected": "Soapstone", + "block.gtceu.schist_sodalite_ore.prospected": "Sodalite", + "block.gtceu.schist_spessartine_ore.prospected": "Spessartine", + "block.gtceu.schist_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.schist_spodumene_ore.prospected": "Spodumene", + "block.gtceu.schist_stibnite_ore.prospected": "Stibnite", + "block.gtceu.schist_sulfur_ore.prospected": "Sulfur", + "block.gtceu.schist_sylvite_ore.prospected": "Sylvite", + "block.gtceu.schist_talc_ore.prospected": "Talc", + "block.gtceu.schist_tantalite_ore.prospected": "Tantalite", + "block.gtceu.schist_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.schist_thorium_ore.prospected": "Thorium", + "block.gtceu.schist_tin_ore.prospected": "Tin", + "block.gtceu.schist_topaz_ore.prospected": "Topaz", + "block.gtceu.schist_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.schist_trona_ore.prospected": "Trona", + "block.gtceu.schist_tungstate_ore.prospected": "Tungstate", + "block.gtceu.schist_uraninite_ore.prospected": "Uraninite", + "block.gtceu.schist_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.schist_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.schist_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.schist_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.schist_zeolite_ore.prospected": "Zeolite", + "block.gtceu.shale_almandine_ore.prospected": "Almandine", + "block.gtceu.shale_aluminium_ore.prospected": "Aluminium", + "block.gtceu.shale_alunite_ore.prospected": "Alunite", + "block.gtceu.shale_amethyst_ore.prospected": "Amethyst", + "block.gtceu.shale_apatite_ore.prospected": "Apatite", + "block.gtceu.shale_asbestos_ore.prospected": "Asbestos", + "block.gtceu.shale_barite_ore.prospected": "Barite", + "block.gtceu.shale_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.shale_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.shale_bauxite_ore.prospected": "Bauxite", + "block.gtceu.shale_bentonite_ore.prospected": "Bentonite", + "block.gtceu.shale_beryllium_ore.prospected": "Beryllium", + "block.gtceu.shale_bismuth_ore.prospected": "Bismuth", + "block.gtceu.shale_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.shale_borax_ore.prospected": "Borax", + "block.gtceu.shale_bornite_ore.prospected": "Bornite", + "block.gtceu.shale_calcite_ore.prospected": "Calcite", + "block.gtceu.shale_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.shale_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.shale_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.shale_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.shale_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.shale_chromite_ore.prospected": "Chromite", + "block.gtceu.shale_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.shale_coal_ore.prospected": "Coal", + "block.gtceu.shale_cobalt_ore.prospected": "Cobalt", + "block.gtceu.shale_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.shale_cooperite_ore.prospected": "Cooperite", + "block.gtceu.shale_copper_ore.prospected": "Copper", + "block.gtceu.shale_diamond_ore.prospected": "Diamond", + "block.gtceu.shale_diatomite_ore.prospected": "Diatomite", + "block.gtceu.shale_electrotine_ore.prospected": "Electrotine", + "block.gtceu.shale_emerald_ore.prospected": "Emerald", + "block.gtceu.shale_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.shale_galena_ore.prospected": "Galena", + "block.gtceu.shale_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.shale_garnierite_ore.prospected": "Garnierite", + "block.gtceu.shale_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.shale_goethite_ore.prospected": "Goethite", + "block.gtceu.shale_gold_ore.prospected": "Gold", + "block.gtceu.shale_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.shale_graphite_ore.prospected": "Graphite", + "block.gtceu.shale_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.shale_grossular_ore.prospected": "Grossular", + "block.gtceu.shale_gypsum_ore.prospected": "Gypsum", + "block.gtceu.shale_hematite_ore.prospected": "Hematite", + "block.gtceu.shale_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.shale_iron_ore.prospected": "Iron", + "block.gtceu.shale_kyanite_ore.prospected": "Kyanite", + "block.gtceu.shale_lapis_ore.prospected": "Lapis", + "block.gtceu.shale_lazurite_ore.prospected": "Lazurite", + "block.gtceu.shale_lead_ore.prospected": "Lead", + "block.gtceu.shale_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.shale_lithium_ore.prospected": "Lithium", + "block.gtceu.shale_magnesite_ore.prospected": "Magnesite", + "block.gtceu.shale_magnetite_ore.prospected": "Magnetite", + "block.gtceu.shale_malachite_ore.prospected": "Malachite", + "block.gtceu.shale_mica_ore.prospected": "Mica", + "block.gtceu.shale_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.shale_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.shale_monazite_ore.prospected": "Monazite", + "block.gtceu.shale_naquadah_ore.prospected": "Naquadah", + "block.gtceu.shale_neodymium_ore.prospected": "Neodymium", + "block.gtceu.shale_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.shale_nickel_ore.prospected": "Nickel", + "block.gtceu.shale_oilsands_ore.prospected": "Oilsands", + "block.gtceu.shale_olivine_ore.prospected": "Olivine", + "block.gtceu.shale_opal_ore.prospected": "Opal", + "block.gtceu.shale_palladium_ore.prospected": "Palladium", + "block.gtceu.shale_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.shale_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.shale_platinum_ore.prospected": "Platinum", + "block.gtceu.shale_plutonium_ore.prospected": "Plutonium", + "block.gtceu.shale_pollucite_ore.prospected": "Pollucite", + "block.gtceu.shale_powellite_ore.prospected": "Powellite", + "block.gtceu.shale_pyrite_ore.prospected": "Pyrite", + "block.gtceu.shale_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.shale_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.shale_pyrope_ore.prospected": "Pyrope", + "block.gtceu.shale_quartzite_ore.prospected": "Quartzite", + "block.gtceu.shale_realgar_ore.prospected": "Realgar", + "block.gtceu.shale_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.shale_redstone_ore.prospected": "Redstone", + "block.gtceu.shale_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.shale_ruby_ore.prospected": "Ruby", + "block.gtceu.shale_salt_ore.prospected": "Salt", + "block.gtceu.shale_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.shale_sapphire_ore.prospected": "Sapphire", + "block.gtceu.shale_scheelite_ore.prospected": "Scheelite", + "block.gtceu.shale_silver_ore.prospected": "Silver", + "block.gtceu.shale_soapstone_ore.prospected": "Soapstone", + "block.gtceu.shale_sodalite_ore.prospected": "Sodalite", + "block.gtceu.shale_spessartine_ore.prospected": "Spessartine", + "block.gtceu.shale_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.shale_spodumene_ore.prospected": "Spodumene", + "block.gtceu.shale_stibnite_ore.prospected": "Stibnite", + "block.gtceu.shale_sulfur_ore.prospected": "Sulfur", + "block.gtceu.shale_sylvite_ore.prospected": "Sylvite", + "block.gtceu.shale_talc_ore.prospected": "Talc", + "block.gtceu.shale_tantalite_ore.prospected": "Tantalite", + "block.gtceu.shale_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.shale_thorium_ore.prospected": "Thorium", + "block.gtceu.shale_tin_ore.prospected": "Tin", + "block.gtceu.shale_topaz_ore.prospected": "Topaz", + "block.gtceu.shale_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.shale_trona_ore.prospected": "Trona", + "block.gtceu.shale_tungstate_ore.prospected": "Tungstate", + "block.gtceu.shale_uraninite_ore.prospected": "Uraninite", + "block.gtceu.shale_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.shale_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.shale_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.shale_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.shale_zeolite_ore.prospected": "Zeolite", + "block.gtceu.slate_almandine_ore.prospected": "Almandine", + "block.gtceu.slate_aluminium_ore.prospected": "Aluminium", + "block.gtceu.slate_alunite_ore.prospected": "Alunite", + "block.gtceu.slate_amethyst_ore.prospected": "Amethyst", + "block.gtceu.slate_apatite_ore.prospected": "Apatite", + "block.gtceu.slate_asbestos_ore.prospected": "Asbestos", + "block.gtceu.slate_barite_ore.prospected": "Barite", + "block.gtceu.slate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.slate_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.slate_bauxite_ore.prospected": "Bauxite", + "block.gtceu.slate_bentonite_ore.prospected": "Bentonite", + "block.gtceu.slate_beryllium_ore.prospected": "Beryllium", + "block.gtceu.slate_bismuth_ore.prospected": "Bismuth", + "block.gtceu.slate_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.slate_borax_ore.prospected": "Borax", + "block.gtceu.slate_bornite_ore.prospected": "Bornite", + "block.gtceu.slate_calcite_ore.prospected": "Calcite", + "block.gtceu.slate_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.slate_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.slate_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.slate_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.slate_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.slate_chromite_ore.prospected": "Chromite", + "block.gtceu.slate_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.slate_coal_ore.prospected": "Coal", + "block.gtceu.slate_cobalt_ore.prospected": "Cobalt", + "block.gtceu.slate_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.slate_cooperite_ore.prospected": "Cooperite", + "block.gtceu.slate_copper_ore.prospected": "Copper", + "block.gtceu.slate_diamond_ore.prospected": "Diamond", + "block.gtceu.slate_diatomite_ore.prospected": "Diatomite", + "block.gtceu.slate_electrotine_ore.prospected": "Electrotine", + "block.gtceu.slate_emerald_ore.prospected": "Emerald", + "block.gtceu.slate_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.slate_galena_ore.prospected": "Galena", + "block.gtceu.slate_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.slate_garnierite_ore.prospected": "Garnierite", + "block.gtceu.slate_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.slate_goethite_ore.prospected": "Goethite", + "block.gtceu.slate_gold_ore.prospected": "Gold", + "block.gtceu.slate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.slate_graphite_ore.prospected": "Graphite", + "block.gtceu.slate_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.slate_grossular_ore.prospected": "Grossular", + "block.gtceu.slate_gypsum_ore.prospected": "Gypsum", + "block.gtceu.slate_hematite_ore.prospected": "Hematite", + "block.gtceu.slate_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.slate_iron_ore.prospected": "Iron", + "block.gtceu.slate_kyanite_ore.prospected": "Kyanite", + "block.gtceu.slate_lapis_ore.prospected": "Lapis", + "block.gtceu.slate_lazurite_ore.prospected": "Lazurite", + "block.gtceu.slate_lead_ore.prospected": "Lead", + "block.gtceu.slate_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.slate_lithium_ore.prospected": "Lithium", + "block.gtceu.slate_magnesite_ore.prospected": "Magnesite", + "block.gtceu.slate_magnetite_ore.prospected": "Magnetite", + "block.gtceu.slate_malachite_ore.prospected": "Malachite", + "block.gtceu.slate_mica_ore.prospected": "Mica", + "block.gtceu.slate_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.slate_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.slate_monazite_ore.prospected": "Monazite", + "block.gtceu.slate_naquadah_ore.prospected": "Naquadah", + "block.gtceu.slate_neodymium_ore.prospected": "Neodymium", + "block.gtceu.slate_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.slate_nickel_ore.prospected": "Nickel", + "block.gtceu.slate_oilsands_ore.prospected": "Oilsands", + "block.gtceu.slate_olivine_ore.prospected": "Olivine", + "block.gtceu.slate_opal_ore.prospected": "Opal", + "block.gtceu.slate_palladium_ore.prospected": "Palladium", + "block.gtceu.slate_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.slate_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.slate_platinum_ore.prospected": "Platinum", + "block.gtceu.slate_plutonium_ore.prospected": "Plutonium", + "block.gtceu.slate_pollucite_ore.prospected": "Pollucite", + "block.gtceu.slate_powellite_ore.prospected": "Powellite", + "block.gtceu.slate_pyrite_ore.prospected": "Pyrite", + "block.gtceu.slate_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.slate_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.slate_pyrope_ore.prospected": "Pyrope", + "block.gtceu.slate_quartzite_ore.prospected": "Quartzite", + "block.gtceu.slate_realgar_ore.prospected": "Realgar", + "block.gtceu.slate_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.slate_redstone_ore.prospected": "Redstone", + "block.gtceu.slate_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.slate_ruby_ore.prospected": "Ruby", + "block.gtceu.slate_salt_ore.prospected": "Salt", + "block.gtceu.slate_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.slate_sapphire_ore.prospected": "Sapphire", + "block.gtceu.slate_scheelite_ore.prospected": "Scheelite", + "block.gtceu.slate_silver_ore.prospected": "Silver", + "block.gtceu.slate_soapstone_ore.prospected": "Soapstone", + "block.gtceu.slate_sodalite_ore.prospected": "Sodalite", + "block.gtceu.slate_spessartine_ore.prospected": "Spessartine", + "block.gtceu.slate_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.slate_spodumene_ore.prospected": "Spodumene", + "block.gtceu.slate_stibnite_ore.prospected": "Stibnite", + "block.gtceu.slate_sulfur_ore.prospected": "Sulfur", + "block.gtceu.slate_sylvite_ore.prospected": "Sylvite", + "block.gtceu.slate_talc_ore.prospected": "Talc", + "block.gtceu.slate_tantalite_ore.prospected": "Tantalite", + "block.gtceu.slate_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.slate_thorium_ore.prospected": "Thorium", + "block.gtceu.slate_tin_ore.prospected": "Tin", + "block.gtceu.slate_topaz_ore.prospected": "Topaz", + "block.gtceu.slate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.slate_trona_ore.prospected": "Trona", + "block.gtceu.slate_tungstate_ore.prospected": "Tungstate", + "block.gtceu.slate_uraninite_ore.prospected": "Uraninite", + "block.gtceu.slate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.slate_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.slate_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.slate_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.slate_zeolite_ore.prospected": "Zeolite", + "block.gtceu.deepslate_almandine_ore.prospected": "Almandine", + "block.gtceu.deepslate_aluminium_ore.prospected": "Aluminium", + "block.gtceu.deepslate_alunite_ore.prospected": "Alunite", + "block.gtceu.deepslate_amethyst_ore.prospected": "Amethyst", + "block.gtceu.deepslate_apatite_ore.prospected": "Apatite", + "block.gtceu.deepslate_asbestos_ore.prospected": "Asbestos", + "block.gtceu.deepslate_barite_ore.prospected": "Barite", + "block.gtceu.deepslate_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.deepslate_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.deepslate_bauxite_ore.prospected": "Bauxite", + "block.gtceu.deepslate_bentonite_ore.prospected": "Bentonite", + "block.gtceu.deepslate_beryllium_ore.prospected": "Beryllium", + "block.gtceu.deepslate_bismuth_ore.prospected": "Bismuth", + "block.gtceu.deepslate_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.deepslate_borax_ore.prospected": "Borax", + "block.gtceu.deepslate_bornite_ore.prospected": "Bornite", + "block.gtceu.deepslate_calcite_ore.prospected": "Calcite", + "block.gtceu.deepslate_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.deepslate_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.deepslate_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.deepslate_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.deepslate_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.deepslate_chromite_ore.prospected": "Chromite", + "block.gtceu.deepslate_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.deepslate_coal_ore.prospected": "Coal", + "block.gtceu.deepslate_cobalt_ore.prospected": "Cobalt", + "block.gtceu.deepslate_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.deepslate_cooperite_ore.prospected": "Cooperite", + "block.gtceu.deepslate_copper_ore.prospected": "Copper", + "block.gtceu.deepslate_diamond_ore.prospected": "Diamond", + "block.gtceu.deepslate_diatomite_ore.prospected": "Diatomite", + "block.gtceu.deepslate_electrotine_ore.prospected": "Electrotine", + "block.gtceu.deepslate_emerald_ore.prospected": "Emerald", + "block.gtceu.deepslate_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.deepslate_galena_ore.prospected": "Galena", + "block.gtceu.deepslate_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.deepslate_garnierite_ore.prospected": "Garnierite", + "block.gtceu.deepslate_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.deepslate_goethite_ore.prospected": "Goethite", + "block.gtceu.deepslate_gold_ore.prospected": "Gold", + "block.gtceu.deepslate_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.deepslate_graphite_ore.prospected": "Graphite", + "block.gtceu.deepslate_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.deepslate_grossular_ore.prospected": "Grossular", + "block.gtceu.deepslate_gypsum_ore.prospected": "Gypsum", + "block.gtceu.deepslate_hematite_ore.prospected": "Hematite", + "block.gtceu.deepslate_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.deepslate_iron_ore.prospected": "Iron", + "block.gtceu.deepslate_kyanite_ore.prospected": "Kyanite", + "block.gtceu.deepslate_lapis_ore.prospected": "Lapis", + "block.gtceu.deepslate_lazurite_ore.prospected": "Lazurite", + "block.gtceu.deepslate_lead_ore.prospected": "Lead", + "block.gtceu.deepslate_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.deepslate_lithium_ore.prospected": "Lithium", + "block.gtceu.deepslate_magnesite_ore.prospected": "Magnesite", + "block.gtceu.deepslate_magnetite_ore.prospected": "Magnetite", + "block.gtceu.deepslate_malachite_ore.prospected": "Malachite", + "block.gtceu.deepslate_mica_ore.prospected": "Mica", + "block.gtceu.deepslate_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.deepslate_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.deepslate_monazite_ore.prospected": "Monazite", + "block.gtceu.deepslate_naquadah_ore.prospected": "Naquadah", + "block.gtceu.deepslate_neodymium_ore.prospected": "Neodymium", + "block.gtceu.deepslate_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.deepslate_nickel_ore.prospected": "Nickel", + "block.gtceu.deepslate_oilsands_ore.prospected": "Oilsands", + "block.gtceu.deepslate_olivine_ore.prospected": "Olivine", + "block.gtceu.deepslate_opal_ore.prospected": "Opal", + "block.gtceu.deepslate_palladium_ore.prospected": "Palladium", + "block.gtceu.deepslate_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.deepslate_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.deepslate_platinum_ore.prospected": "Platinum", + "block.gtceu.deepslate_plutonium_ore.prospected": "Plutonium", + "block.gtceu.deepslate_pollucite_ore.prospected": "Pollucite", + "block.gtceu.deepslate_powellite_ore.prospected": "Powellite", + "block.gtceu.deepslate_pyrite_ore.prospected": "Pyrite", + "block.gtceu.deepslate_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.deepslate_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.deepslate_pyrope_ore.prospected": "Pyrope", + "block.gtceu.deepslate_quartzite_ore.prospected": "Quartzite", + "block.gtceu.deepslate_realgar_ore.prospected": "Realgar", + "block.gtceu.deepslate_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.deepslate_redstone_ore.prospected": "Redstone", + "block.gtceu.deepslate_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.deepslate_ruby_ore.prospected": "Ruby", + "block.gtceu.deepslate_salt_ore.prospected": "Salt", + "block.gtceu.deepslate_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.deepslate_sapphire_ore.prospected": "Sapphire", + "block.gtceu.deepslate_scheelite_ore.prospected": "Scheelite", + "block.gtceu.deepslate_silver_ore.prospected": "Silver", + "block.gtceu.deepslate_soapstone_ore.prospected": "Soapstone", + "block.gtceu.deepslate_sodalite_ore.prospected": "Sodalite", + "block.gtceu.deepslate_spessartine_ore.prospected": "Spessartine", + "block.gtceu.deepslate_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.deepslate_spodumene_ore.prospected": "Spodumene", + "block.gtceu.deepslate_stibnite_ore.prospected": "Stibnite", + "block.gtceu.deepslate_sulfur_ore.prospected": "Sulfur", + "block.gtceu.deepslate_sylvite_ore.prospected": "Sylvite", + "block.gtceu.deepslate_talc_ore.prospected": "Talc", + "block.gtceu.deepslate_tantalite_ore.prospected": "Tantalite", + "block.gtceu.deepslate_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.deepslate_thorium_ore.prospected": "Thorium", + "block.gtceu.deepslate_tin_ore.prospected": "Tin", + "block.gtceu.deepslate_topaz_ore.prospected": "Topaz", + "block.gtceu.deepslate_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.deepslate_trona_ore.prospected": "Trona", + "block.gtceu.deepslate_tungstate_ore.prospected": "Tungstate", + "block.gtceu.deepslate_uraninite_ore.prospected": "Uraninite", + "block.gtceu.deepslate_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.deepslate_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.deepslate_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.deepslate_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.deepslate_zeolite_ore.prospected": "Zeolite", + "block.gtceu.pyroxenite_almandine_ore.prospected": "Almandine", + "block.gtceu.pyroxenite_aluminium_ore.prospected": "Aluminium", + "block.gtceu.pyroxenite_alunite_ore.prospected": "Alunite", + "block.gtceu.pyroxenite_amethyst_ore.prospected": "Amethyst", + "block.gtceu.pyroxenite_apatite_ore.prospected": "Apatite", + "block.gtceu.pyroxenite_asbestos_ore.prospected": "Asbestos", + "block.gtceu.pyroxenite_barite_ore.prospected": "Barite", + "block.gtceu.pyroxenite_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.pyroxenite_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.pyroxenite_bauxite_ore.prospected": "Bauxite", + "block.gtceu.pyroxenite_bentonite_ore.prospected": "Bentonite", + "block.gtceu.pyroxenite_beryllium_ore.prospected": "Beryllium", + "block.gtceu.pyroxenite_bismuth_ore.prospected": "Bismuth", + "block.gtceu.pyroxenite_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.pyroxenite_borax_ore.prospected": "Borax", + "block.gtceu.pyroxenite_bornite_ore.prospected": "Bornite", + "block.gtceu.pyroxenite_calcite_ore.prospected": "Calcite", + "block.gtceu.pyroxenite_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.pyroxenite_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.pyroxenite_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.pyroxenite_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.pyroxenite_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.pyroxenite_chromite_ore.prospected": "Chromite", + "block.gtceu.pyroxenite_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.pyroxenite_coal_ore.prospected": "Coal", + "block.gtceu.pyroxenite_cobalt_ore.prospected": "Cobalt", + "block.gtceu.pyroxenite_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.pyroxenite_cooperite_ore.prospected": "Cooperite", + "block.gtceu.pyroxenite_copper_ore.prospected": "Copper", + "block.gtceu.pyroxenite_diamond_ore.prospected": "Diamond", + "block.gtceu.pyroxenite_diatomite_ore.prospected": "Diatomite", + "block.gtceu.pyroxenite_electrotine_ore.prospected": "Electrotine", + "block.gtceu.pyroxenite_emerald_ore.prospected": "Emerald", + "block.gtceu.pyroxenite_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.pyroxenite_galena_ore.prospected": "Galena", + "block.gtceu.pyroxenite_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.pyroxenite_garnierite_ore.prospected": "Garnierite", + "block.gtceu.pyroxenite_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.pyroxenite_goethite_ore.prospected": "Goethite", + "block.gtceu.pyroxenite_gold_ore.prospected": "Gold", + "block.gtceu.pyroxenite_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.pyroxenite_graphite_ore.prospected": "Graphite", + "block.gtceu.pyroxenite_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.pyroxenite_grossular_ore.prospected": "Grossular", + "block.gtceu.pyroxenite_gypsum_ore.prospected": "Gypsum", + "block.gtceu.pyroxenite_hematite_ore.prospected": "Hematite", + "block.gtceu.pyroxenite_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.pyroxenite_iron_ore.prospected": "Iron", + "block.gtceu.pyroxenite_kyanite_ore.prospected": "Kyanite", + "block.gtceu.pyroxenite_lapis_ore.prospected": "Lapis", + "block.gtceu.pyroxenite_lazurite_ore.prospected": "Lazurite", + "block.gtceu.pyroxenite_lead_ore.prospected": "Lead", + "block.gtceu.pyroxenite_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.pyroxenite_lithium_ore.prospected": "Lithium", + "block.gtceu.pyroxenite_magnesite_ore.prospected": "Magnesite", + "block.gtceu.pyroxenite_magnetite_ore.prospected": "Magnetite", + "block.gtceu.pyroxenite_malachite_ore.prospected": "Malachite", + "block.gtceu.pyroxenite_mica_ore.prospected": "Mica", + "block.gtceu.pyroxenite_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.pyroxenite_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.pyroxenite_monazite_ore.prospected": "Monazite", + "block.gtceu.pyroxenite_naquadah_ore.prospected": "Naquadah", + "block.gtceu.pyroxenite_neodymium_ore.prospected": "Neodymium", + "block.gtceu.pyroxenite_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.pyroxenite_nickel_ore.prospected": "Nickel", + "block.gtceu.pyroxenite_oilsands_ore.prospected": "Oilsands", + "block.gtceu.pyroxenite_olivine_ore.prospected": "Olivine", + "block.gtceu.pyroxenite_opal_ore.prospected": "Opal", + "block.gtceu.pyroxenite_palladium_ore.prospected": "Palladium", + "block.gtceu.pyroxenite_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.pyroxenite_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.pyroxenite_platinum_ore.prospected": "Platinum", + "block.gtceu.pyroxenite_plutonium_ore.prospected": "Plutonium", + "block.gtceu.pyroxenite_pollucite_ore.prospected": "Pollucite", + "block.gtceu.pyroxenite_powellite_ore.prospected": "Powellite", + "block.gtceu.pyroxenite_pyrite_ore.prospected": "Pyrite", + "block.gtceu.pyroxenite_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.pyroxenite_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.pyroxenite_pyrope_ore.prospected": "Pyrope", + "block.gtceu.pyroxenite_quartzite_ore.prospected": "Quartzite", + "block.gtceu.pyroxenite_realgar_ore.prospected": "Realgar", + "block.gtceu.pyroxenite_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.pyroxenite_redstone_ore.prospected": "Redstone", + "block.gtceu.pyroxenite_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.pyroxenite_ruby_ore.prospected": "Ruby", + "block.gtceu.pyroxenite_salt_ore.prospected": "Salt", + "block.gtceu.pyroxenite_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.pyroxenite_sapphire_ore.prospected": "Sapphire", + "block.gtceu.pyroxenite_scheelite_ore.prospected": "Scheelite", + "block.gtceu.pyroxenite_silver_ore.prospected": "Silver", + "block.gtceu.pyroxenite_soapstone_ore.prospected": "Soapstone", + "block.gtceu.pyroxenite_sodalite_ore.prospected": "Sodalite", + "block.gtceu.pyroxenite_spessartine_ore.prospected": "Spessartine", + "block.gtceu.pyroxenite_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.pyroxenite_spodumene_ore.prospected": "Spodumene", + "block.gtceu.pyroxenite_stibnite_ore.prospected": "Stibnite", + "block.gtceu.pyroxenite_sulfur_ore.prospected": "Sulfur", + "block.gtceu.pyroxenite_sylvite_ore.prospected": "Sylvite", + "block.gtceu.pyroxenite_talc_ore.prospected": "Talc", + "block.gtceu.pyroxenite_tantalite_ore.prospected": "Tantalite", + "block.gtceu.pyroxenite_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.pyroxenite_thorium_ore.prospected": "Thorium", + "block.gtceu.pyroxenite_tin_ore.prospected": "Tin", + "block.gtceu.pyroxenite_topaz_ore.prospected": "Topaz", + "block.gtceu.pyroxenite_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.pyroxenite_trona_ore.prospected": "Trona", + "block.gtceu.pyroxenite_tungstate_ore.prospected": "Tungstate", + "block.gtceu.pyroxenite_uraninite_ore.prospected": "Uraninite", + "block.gtceu.pyroxenite_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.pyroxenite_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.pyroxenite_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.pyroxenite_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.pyroxenite_zeolite_ore.prospected": "Zeolite", + "block.gtceu.dripstone_almandine_ore.prospected": "Almandine", + "block.gtceu.dripstone_aluminium_ore.prospected": "Aluminium", + "block.gtceu.dripstone_alunite_ore.prospected": "Alunite", + "block.gtceu.dripstone_amethyst_ore.prospected": "Amethyst", + "block.gtceu.dripstone_apatite_ore.prospected": "Apatite", + "block.gtceu.dripstone_asbestos_ore.prospected": "Asbestos", + "block.gtceu.dripstone_barite_ore.prospected": "Barite", + "block.gtceu.dripstone_basaltic_mineral_sand_ore.prospected": "Basaltic Mineral Sand", + "block.gtceu.dripstone_bastnasite_ore.prospected": "Bastnasite", + "block.gtceu.dripstone_bauxite_ore.prospected": "Bauxite", + "block.gtceu.dripstone_bentonite_ore.prospected": "Bentonite", + "block.gtceu.dripstone_beryllium_ore.prospected": "Beryllium", + "block.gtceu.dripstone_bismuth_ore.prospected": "Bismuth", + "block.gtceu.dripstone_blue_topaz_ore.prospected": "Blue Topaz", + "block.gtceu.dripstone_borax_ore.prospected": "Borax", + "block.gtceu.dripstone_bornite_ore.prospected": "Bornite", + "block.gtceu.dripstone_calcite_ore.prospected": "Calcite", + "block.gtceu.dripstone_cassiterite_ore.prospected": "Cassiterite", + "block.gtceu.dripstone_cassiterite_sand_ore.prospected": "Cassiterite Sand", + "block.gtceu.dripstone_certus_quartz_ore.prospected": "Certus Quartz", + "block.gtceu.dripstone_chalcocite_ore.prospected": "Chalcocite", + "block.gtceu.dripstone_chalcopyrite_ore.prospected": "Chalcopyrite", + "block.gtceu.dripstone_chromite_ore.prospected": "Chromite", + "block.gtceu.dripstone_cinnabar_ore.prospected": "Cinnabar", + "block.gtceu.dripstone_coal_ore.prospected": "Coal", + "block.gtceu.dripstone_cobalt_ore.prospected": "Cobalt", + "block.gtceu.dripstone_cobaltite_ore.prospected": "Cobaltite", + "block.gtceu.dripstone_cooperite_ore.prospected": "Cooperite", + "block.gtceu.dripstone_copper_ore.prospected": "Copper", + "block.gtceu.dripstone_diamond_ore.prospected": "Diamond", + "block.gtceu.dripstone_diatomite_ore.prospected": "Diatomite", + "block.gtceu.dripstone_electrotine_ore.prospected": "Electrotine", + "block.gtceu.dripstone_emerald_ore.prospected": "Emerald", + "block.gtceu.dripstone_fullers_earth_ore.prospected": "Fullers Earth", + "block.gtceu.dripstone_galena_ore.prospected": "Galena", + "block.gtceu.dripstone_garnet_sand_ore.prospected": "Garnet Sand", + "block.gtceu.dripstone_garnierite_ore.prospected": "Garnierite", + "block.gtceu.dripstone_glauconite_sand_ore.prospected": "Glauconite Sand", + "block.gtceu.dripstone_goethite_ore.prospected": "Goethite", + "block.gtceu.dripstone_gold_ore.prospected": "Gold", + "block.gtceu.dripstone_granitic_mineral_sand_ore.prospected": "Granitic Mineral Sand", + "block.gtceu.dripstone_graphite_ore.prospected": "Graphite", + "block.gtceu.dripstone_green_sapphire_ore.prospected": "Green Sapphire", + "block.gtceu.dripstone_grossular_ore.prospected": "Grossular", + "block.gtceu.dripstone_gypsum_ore.prospected": "Gypsum", + "block.gtceu.dripstone_hematite_ore.prospected": "Hematite", + "block.gtceu.dripstone_ilmenite_ore.prospected": "Ilmenite", + "block.gtceu.dripstone_iron_ore.prospected": "Iron", + "block.gtceu.dripstone_kyanite_ore.prospected": "Kyanite", + "block.gtceu.dripstone_lapis_ore.prospected": "Lapis", + "block.gtceu.dripstone_lazurite_ore.prospected": "Lazurite", + "block.gtceu.dripstone_lead_ore.prospected": "Lead", + "block.gtceu.dripstone_lepidolite_ore.prospected": "Lepidolite", + "block.gtceu.dripstone_lithium_ore.prospected": "Lithium", + "block.gtceu.dripstone_magnesite_ore.prospected": "Magnesite", + "block.gtceu.dripstone_magnetite_ore.prospected": "Magnetite", + "block.gtceu.dripstone_malachite_ore.prospected": "Malachite", + "block.gtceu.dripstone_mica_ore.prospected": "Mica", + "block.gtceu.dripstone_molybdenite_ore.prospected": "Molybdenite", + "block.gtceu.dripstone_molybdenum_ore.prospected": "Molybdenum", + "block.gtceu.dripstone_monazite_ore.prospected": "Monazite", + "block.gtceu.dripstone_naquadah_ore.prospected": "Naquadah", + "block.gtceu.dripstone_neodymium_ore.prospected": "Neodymium", + "block.gtceu.dripstone_nether_quartz_ore.prospected": "Nether Quartz", + "block.gtceu.dripstone_nickel_ore.prospected": "Nickel", + "block.gtceu.dripstone_oilsands_ore.prospected": "Oilsands", + "block.gtceu.dripstone_olivine_ore.prospected": "Olivine", + "block.gtceu.dripstone_opal_ore.prospected": "Opal", + "block.gtceu.dripstone_palladium_ore.prospected": "Palladium", + "block.gtceu.dripstone_pentlandite_ore.prospected": "Pentlandite", + "block.gtceu.dripstone_pitchblende_ore.prospected": "Pitchblende", + "block.gtceu.dripstone_platinum_ore.prospected": "Platinum", + "block.gtceu.dripstone_plutonium_ore.prospected": "Plutonium", + "block.gtceu.dripstone_pollucite_ore.prospected": "Pollucite", + "block.gtceu.dripstone_powellite_ore.prospected": "Powellite", + "block.gtceu.dripstone_pyrite_ore.prospected": "Pyrite", + "block.gtceu.dripstone_pyrochlore_ore.prospected": "Pyrochlore", + "block.gtceu.dripstone_pyrolusite_ore.prospected": "Pyrolusite", + "block.gtceu.dripstone_pyrope_ore.prospected": "Pyrope", + "block.gtceu.dripstone_quartzite_ore.prospected": "Quartzite", + "block.gtceu.dripstone_realgar_ore.prospected": "Realgar", + "block.gtceu.dripstone_red_garnet_ore.prospected": "Red Garnet", + "block.gtceu.dripstone_redstone_ore.prospected": "Redstone", + "block.gtceu.dripstone_rock_salt_ore.prospected": "Rock Salt", + "block.gtceu.dripstone_ruby_ore.prospected": "Ruby", + "block.gtceu.dripstone_salt_ore.prospected": "Salt", + "block.gtceu.dripstone_saltpeter_ore.prospected": "Saltpeter", + "block.gtceu.dripstone_sapphire_ore.prospected": "Sapphire", + "block.gtceu.dripstone_scheelite_ore.prospected": "Scheelite", + "block.gtceu.dripstone_silver_ore.prospected": "Silver", + "block.gtceu.dripstone_soapstone_ore.prospected": "Soapstone", + "block.gtceu.dripstone_sodalite_ore.prospected": "Sodalite", + "block.gtceu.dripstone_spessartine_ore.prospected": "Spessartine", + "block.gtceu.dripstone_sphalerite_ore.prospected": "Sphalerite", + "block.gtceu.dripstone_spodumene_ore.prospected": "Spodumene", + "block.gtceu.dripstone_stibnite_ore.prospected": "Stibnite", + "block.gtceu.dripstone_sulfur_ore.prospected": "Sulfur", + "block.gtceu.dripstone_sylvite_ore.prospected": "Sylvite", + "block.gtceu.dripstone_talc_ore.prospected": "Talc", + "block.gtceu.dripstone_tantalite_ore.prospected": "Tantalite", + "block.gtceu.dripstone_tetrahedrite_ore.prospected": "Tetrahedrite", + "block.gtceu.dripstone_thorium_ore.prospected": "Thorium", + "block.gtceu.dripstone_tin_ore.prospected": "Tin", + "block.gtceu.dripstone_topaz_ore.prospected": "Topaz", + "block.gtceu.dripstone_tricalcium_phosphate_ore.prospected": "Tricalcium Phosphate", + "block.gtceu.dripstone_trona_ore.prospected": "Trona", + "block.gtceu.dripstone_tungstate_ore.prospected": "Tungstate", + "block.gtceu.dripstone_uraninite_ore.prospected": "Uraninite", + "block.gtceu.dripstone_vanadium_magnetite_ore.prospected": "Vanadium Magnetite", + "block.gtceu.dripstone_wulfenite_ore.prospected": "Wulfenite", + "block.gtceu.dripstone_yellow_garnet_ore.prospected": "Yellow Garnet", + "block.gtceu.dripstone_yellow_limonite_ore.prospected": "Yellow Limonite", + "block.gtceu.dripstone_zeolite_ore.prospected": "Zeolite", + "fluid.tfc.salt_water": "Sea Water", + "item.tfc.bucket.salt_water": "Sea Water Bucket", + "item.tfc.powder.saltpeter": "Saltpeter Powder", + "item.tfc.powder.sulfur": "Sulfur Powder", + "tfc.jei.raw_hide_knapping": "Raw Hide Knapping", + "metal.tfg.redstone": "Redstone", + "metal.tfg.red_alloy": "Red Alloy", + "metal.tfg.tin_alloy": "Tin Alloy", + "trim_material.tfc.almandine_tfc": "Almandine", + "trim_material.tfc.andradite_tfc": "Andradite", + "trim_material.tfc.blue_topaz_tfc": "Blue Topaz", + "trim_material.tfc.cinnabar_tfc": "Cinnabar", + "trim_material.tfc.coal_tfc": "Coal", + "trim_material.tfc.diamond_tfc": "Diamond", + "trim_material.tfc.emerald_tfc": "Emerald", + "trim_material.tfc.green_sapphire_tfc": "Green Sapphire", + "trim_material.tfc.grossular_tfc": "Grossular", + "trim_material.tfc.rutile_tfc": "Rutile", + "trim_material.tfc.lazurite_tfc": "Lazurite", + "trim_material.tfc.pyrope_tfc": "Pyrope", + "trim_material.tfc.rock_salt_tfc": "Rock Salt", + "trim_material.tfc.ruby_tfc": "Ruby", + "trim_material.tfc.salt_tfc": "salt", + "trim_material.tfc.sapphire_tfc": "Sapphire", + "trim_material.tfc.sodalite_tfc": "Sodalite", + "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.spessartine_tfc": "Spessartine", + "trim_material.tfc.topaz_tfc": "Topaz", + "trim_material.tfc.uvarovite_tfc": "Uvarovite", + "trim_material.tfc.nether_quartz_tfc": "Nether Quartz", + "trim_material.tfc.certus_quartz_tfc": "Certus Quartz", + "trim_material.tfc.quartzite_tfc": "Quartzite", + "trim_material.tfc.realgar_tfc": "Realgar", + "trim_material.tfc.malachite_tfc": "Malachite", + "trim_material.tfc.glass_tfc": "Glass", + "trim_material.tfc.olivine_tfc": "Olivine", + "trim_material.tfc.opal_tfc": "Opal", + "trim_material.tfc.amethyst_tfc": "Amethyst", + "trim_material.tfc.lapis_tfc": "Lapis", + "trim_material.tfc.apatite_tfc": "Apatite", + "trim_material.tfc.red_garnet_tfc": "Red Garnet", + "trim_material.tfc.yellow_garnet_tfc": "Yellow Garnet", + "trim_material.tfc.monazite_tfc": "Monazite", + "trim_material.tfc.rose_quartz_tfc": "Rose Quartz", + "trim_material.tfc.fluix_tfc": "Fluix", + "trim_material.tfc.silver_tfc": "Silver", + "trim_material.tfc.sterling_silver_tfc": "Sterling Silver", + "trim_material.tfc.gold_tfc": "Gold", + "trim_material.tfc.rose_gold_tfc": "Rose Gold", + "trim_material.tfc.nickel_tfc": "Nickel", + "trim_material.tfc.platinum_tfc": "Platinum", + "trim_material.tfc.titanium_tfc": "Titanium", + "trim_material.tfc.bismuth_tfc": "Bismuth", + "trim_material.tfc.neutronium_tfc": "Neutronium", + "trim_material.tfc.pyrite_tfc": "Pyrite", + "trim_material.tfc.redx_tfc": "RedX" } \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/arborfirmacraft/making_rubber.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/arborfirmacraft/making_rubber.json index 8937e88e9..7c87551fb 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/arborfirmacraft/making_rubber.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/arborfirmacraft/making_rubber.json @@ -5,37 +5,43 @@ "pages": [ { "type": "patchouli:text", - "text": "So you've gotten some latex by tapping specific tropical trees... congratulations! Latex by itself doesnt do much, but by processing it we can get some very useful byproducts!$(br2)If you havent obtained Latex producing trees, you can look at the $(l:arborfirmacraft/tapping_index)Tapping Index$() entry!" + "text": "So you've gotten some $(thing)latex$() by tapping specific tropical trees... congratulations! Latex by itself doesn't do much, but by processing it we can get some very useful byproducts!$(br2)If you haven't yet found any trees that produce latex, you can look at the $(l:arborfirmacraft/tapping_index)Tapping Index$() entry for more information!" }, { "type": "patchouli:spotlight", "item": "gtceu:sticky_resin", "title": "A sticky substance", "link_recipe": true, - "text": "To begin, $(thing)Latex$() needs to be processed in a $(l:firmalife/oven_appliances#vat)Vat$() or a $(l:mechanics/pot)Pot$() with some $(thing)Sulfur Powder$(), this will create $(item)Sticky Resin$()." + "text": "One of the ways $(thing)Latex$() can be used is in the production of $(item)Sticky Resin$(). Sticky resin needs to be produced by treating latex in a $(l:firmalife/oven_appliances#vat)Vat$() or a $(l:mechanics/pot)Pot$() with some $(thing)Wood Ash$() to coagulate it." }, { "type": "patchouli:spotlight", "title": "Sticky Business", "item": "gtceu:resin_circuit_board,gtceu:resistor,gtceu:basic_tape", - "text": "$(thing)Sticky Resin$() has a number of uses, thanks to it being well... sticky. It can be used to create multiple items such as $(thing)Tape$() to move crates around, but more importantly, it can be used to create $(thing)Resin Circuit Boards$() and $(thing)Resistors$(), which will be your first electrical components." + "text": "$(thing)Sticky Resin$() has a number of uses, thanks to it being well... sticky. It can be used to create multiple items such as $(item)Tape$() which will let you move crates around without dropping what's inside, but more importantly, it can be used to create $(item)Resin Circuit Boards$() and $(item)Resistors$(), which will be some of your first electrical components." + }, + { + "type": "patchouli:spotlight", + "item": "tfg:vulcanized_latex_bucket", + "title": "I am rubber...", + "text": "The other main use of $(thing)Latex$() is to make rubber. To make the latex stronger and harder for industrial uses, it needs to be heated (either in a $(l:firmalife/oven_appliances#vat)Vat$() or a $(l:mechanics/pot)Pot$()) with added $(thing)Sulfur Powder$() to produce $(thing)Vulcanized Latex$(). In fact, this whole process is called vulcanization!" }, { "type": "patchouli:spotlight", "title": "Extraction", "item": "gtceu:raw_rubber_dust", - "text": "Using an $(thing)Extractor$(), you can extract Kapok and Rubber Fig logs into $(thing)Raw Rubber Pulp$(). This pulp can then be placed inside an $(thing)Alloy Smelter$() with a bit of $(thing)Sulfur Dust$() to create $(thing)Rubber Ingots$()." + "text": "Using a $(thing)Extractor$() or $(thing)Vacuum Chamber$(), the $(thing)Vulcanized Latex$() can be dried into $(item)Raw Rubber Pulp$(). This pulp needs to be further treated with $(thing)Sulfur Dust$() in an $(thing)Alloy Smelter$() to create $(thing)Rubber Ingots$()." }, { "type": "patchouli:spotlight", "item": "gtceu:rubber_ingot", - "text": "$(thing)Rubber Ingots$() have a number of uses, but mostly to $(bold)insulate$() $(thing)electrical wires$(), making them safe to touch without accidentally electrocuting yourself, as well as reducing their voltage loss." + "text": "$(thing)Rubber Ingots$() have a number of very useful applications, such as for crafting $(thing)Belts$() for your factories or for $(bold)insulating$() $(thing)electrical wires$(). Insulated wires become safe to touch without accidentally electrocuting yourself, and have reduced voltage loss." }, { "type": "patchouli:spotlight", "title": "Conifer Pitch", "item": "tfg:conifer_pitch_bucket", - "text": "Sticky Resin can also be obtained using $(thing)Conifer Pitch$() from certain $(thing)Coniferous Trees$(), but these trees cannot be used for Rubber." + "text": "Sticky Resin can also be obtained via $(thing)Conifer Pitch$() tapped from certain $(thing)Coniferous Trees$(), but these trees cannot be used for Rubber." } ], "read_by_default": true, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json index 5f3ef8818..97cd1a423 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/beneath/piglins.json @@ -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", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/fire_clay.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/fire_clay.json index b2111550d..7620d1a73 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/fire_clay.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/fire_clay.json @@ -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", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/glassworking.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/glassworking.json index ce4f2ba8c..5477592c8 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/glassworking.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/glassworking.json @@ -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", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_kaolin.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/surface_kaolin.json similarity index 98% rename from kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_kaolin.json rename to kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/surface_kaolin.json index fd09d1448..57babae20 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_kaolin.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/mechanics/surface_kaolin.json @@ -1,7 +1,7 @@ { "name": "Kaolin Clay", "icon": "tfc:kaolin_clay", - "category": "tfc:tfg_ores", + "category": "tfc:mechanics", "read_by_default": true, "pages": [ { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_garnet_amethyst.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_garnet_amethyst.json deleted file mode 100644 index 7a1c44716..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_garnet_amethyst.json +++ /dev/null @@ -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" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_garnet_opal.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_garnet_opal.json deleted file mode 100644 index 4eccfcda8..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_garnet_opal.json +++ /dev/null @@ -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" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_gold.json deleted file mode 100644 index bbdeb13b0..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_gold.json +++ /dev/null @@ -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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_hematite.json deleted file mode 100644 index f0c2f745f..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_hematite.json +++ /dev/null @@ -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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_limonite.json deleted file mode 100644 index 21cf95097..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_limonite.json +++ /dev/null @@ -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β‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_magnetite.json deleted file mode 100644 index f47ab03a3..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_magnetite.json +++ /dev/null @@ -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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_molybdenum.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_molybdenum.json deleted file mode 100644 index e4f7d06db..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_molybdenum.json +++ /dev/null @@ -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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_naquadah.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_naquadah.json deleted file mode 100644 index 11b22ddb6..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_naquadah.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_pitchblende.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_pitchblende.json deleted file mode 100644 index 6192eda84..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_pitchblende.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_sapphire.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_sapphire.json deleted file mode 100644 index 00dda8fc9..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_sapphire.json +++ /dev/null @@ -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₃" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_scheelite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_scheelite.json deleted file mode 100644 index 201a35c86..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_scheelite.json +++ /dev/null @@ -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" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_sheldonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_sheldonite.json deleted file mode 100644 index 744e0fc59..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_sheldonite.json +++ /dev/null @@ -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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_topaz.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_topaz.json deleted file mode 100644 index 4ae03b9fc..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/deep_topaz.json +++ /dev/null @@ -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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_ore_index.json new file mode 100644 index 000000000..feb29bd35 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_ore_index.json @@ -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" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_vein_index.json new file mode 100644 index 000000000..8ecc4e24f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/earth_vein_index.json @@ -0,0 +1,3867 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Earth Vein Index", + "icon": "tfc:ore/normal_native_copper/chalk", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(item)Earth$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns in, and more.", + "title": "Earth Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)Amethyst & Garnet$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_apatite)Apatite & Pyrochlore$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_monazite)Bastnasite & Monazite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bauxite)Bauxite & Ilmenite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_olivine)Bentonite & Olivine$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bismuthinite)Bismuth (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_bismuthinite)Bismuth (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_cassiterite)Cassiterite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_cassiterite)Cassiterite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Chalcopyrite & Realgar$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Chromite & Magnetite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_coal)Coal$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Cooperite & Bornite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_copper)Copper & Chalcopyrite$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)Emerald & Beryllium$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnet_tin)Garnet & Cassiterite Sands$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnierite)Garnierite & Cobaltite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_limonite)Goethite & Malachite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_gold)Gold (Deep)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_gold)Gold, Limonite, & Hematite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_graphite)Graphite & Diamond$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_hematite)Hematite & Limonite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_hematite)Hematite, Goethite, & Ruby$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)Kyanite, Mica, & Bauxite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lapis)Lapis, Lazurite, & Sodalite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_limonite)Limonite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_magnetite)Magnetite & Vanadium$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_manganese)Manganese & Tantalum$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_basaltic_sands)Mineral Sands$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_oilsands)Oilsands$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Opal & Garnet$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_quartz)Quartzes$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)Redstone, Cinnabar, & Ruby$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Saltpeter & Electrotine$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Salts & Borax$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Sapphire & Almandine$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Scheelite & Tungstate$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Silver, Galena, & Lead$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)Soapstone, Talc, & Trona$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Sphalerite & Pyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Sphalerite & Sulfur$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Spodumene & Lepidolite$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Sulfur & Pyrite$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Tetrahedrite (Normal)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Tetrahedrite (Surface)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Wulfenite & Molybdenite$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 230$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Size$(): 40$(br)$(thing)Height$(): 8$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Gneiss, Limestone, Marble, Phyllite, Quartzite, Schist, Shale, Slate", + "title": "Amethyst & Garnet", + "type": "patchouli:text", + "anchor": "deep_garnet_amethyst" + }, + { + "Type": "patchouli:multiblock", + "name": "Amethyst", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 65%$(br)$(thing)Source of$(): Iron$(br)$(thing)Formula$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Garnet", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Andradite, Grossular, Uvarovite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Opal", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Silicon, Oxygen$(br)$(thing)Formula$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Red Garnet", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Pyrope, Almandine, Spessartine", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 34$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Apatite & Pyrochlore", + "type": "patchouli:text", + "anchor": "normal_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Apatite", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Calcium, Phosphorus, Forestry PTSD$(br)$(thing)Formula$(): Caβ‚…(POβ‚„)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tricalcium Phosphate", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Calcium, Phosphorus$(br)$(thing)Formula$(): Ca₃(POβ‚„)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrochlore", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Niobium$(br)$(thing)Formula$(): Caβ‚‚Nbβ‚‚O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 185$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 50$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Granite", + "title": "Bastnasite & Monazite", + "type": "patchouli:text", + "anchor": "normal_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bastnasite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Cerium, Fluorine$(br)$(thing)Formula$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Monazite", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Phosphorous, Rare Earth$(br)$(thing)Formula$(): ?(POβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Neodymium", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Neodymium$(br)$(thing)Formula$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 185$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", + "title": "Bauxite & Ilmenite", + "type": "patchouli:text", + "anchor": "normal_bauxite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bauxite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ilmenite", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Iron, Titanium$(br)$(thing)Formula$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Aluminium", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -40 β€” 30$(br)$(thing)Size$(): 26$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", + "title": "Bentonite & Olivine", + "type": "patchouli:text", + "anchor": "normal_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "Bentonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Sodium, Magnesium$(br)$(thing)Formula$(): NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Magnesite", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Olivine", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium, Iron$(br)$(thing)Formula$(): Mgβ‚‚Fe(SiOβ‚‚)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Glauconite Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Magnesium, Aluminium$(br)$(thing)Formula$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Diorite, Dolomite, Gabbro, Granite, Limestone, Shale", + "title": "Bismuth (Normal)", + "type": "patchouli:text", + "anchor": "normal_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bismuth", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 80%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lead", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 11%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 9%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 140$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Diorite, Dolomite, Gabbro, Granite, Limestone, Shale", + "title": "Bismuth (Surface)", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bismuth", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 90%$(br)$(thing)Melts into$(): Bismuth$(br)$(thing)Formula$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lead", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 7%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 3%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Granite", + "title": "Cassiterite (Normal)", + "type": "patchouli:text", + "anchor": "normal_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tin", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 135$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Granite", + "title": "Cassiterite (Surface)", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tin", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 200$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 20 β€” 217$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Chalcopyrite & Realgar", + "type": "patchouli:text", + "anchor": "surface_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Chalcopyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 61%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Zeolite", + "multiblock": { + "mapping": { + "0": "#forge:ores/zeolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 16%$(br)$(thing)Source of$(): Aluminium, Oxygen$(br)$(thing)Formula$(): NaCaβ‚„Si₂₇Al₉(Hβ‚‚O)β‚‚β‚ˆO₇₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Realgar", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 16%$(br)$(thing)Source of$(): Arsenic$(br)$(thing)Formula$(): Asβ‚„Sβ‚„$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 205$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 34$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", + "title": "Chromite & Magnetite", + "type": "patchouli:text", + "anchor": "deep_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Chromite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 60%$(br)$(thing)Source of$(): Chromium$(br)$(thing)Formula$(): FeCrβ‚‚Oβ‚„$(br)$(thing)Hazard$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Vanadium Magnetite", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Iron, Vanadium$(br)$(thing)Formula$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Magnetite", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 215$(br)$(thing)Density$(): 0.55$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Size$(): 60$(br)$(thing)Indicator Max Depth$(): 50$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", + "title": "Coal", + "type": "patchouli:text", + "anchor": "normal_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Coal", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 100%$(br)$(thing)Used for$(): Fuel, Distillation$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 300$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 0$(br)$(thing)Size$(): 30$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Cooperite & Bornite", + "type": "patchouli:text", + "anchor": "deep_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sheldonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Platinum, Nickel, Palladium$(br)$(thing)Formula$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Platinum", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Smelts into$(): Platinum$(br)$(thing)Formula$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Palladium", + "multiblock": { + "mapping": { + "0": "#forge:ores/palladium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Palladium$(br)$(thing)Formula$(): Pd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 85$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Copper & Chalcopyrite", + "type": "patchouli:text", + "anchor": "normal_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 65%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Chalcopyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 250$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Pipe Vein$(br)$(thing)Y$(): -32 β€” 50$(br)$(thing)Height$(): 60$(br)$(thing)Radius$(): 10$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Emerald & Beryllium", + "type": "patchouli:text", + "anchor": "normal_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Emerald", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Used for$(): MV components, Item tag filters$(br)$(thing)Formula$(): Be₃Alβ‚‚Si₆Oβ‚β‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Beryllium", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Beryllium$(br)$(thing)Formula$(): Be$(br)$(thing)Hazard$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Thorium", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 270$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -40 β€” 64$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Gneiss, Granite, Limestone, Marble, Phyllite, Quartzite, Rhyolite, Schist, Shale, Slate", + "title": "Garnet & Cassiterite Sands", + "type": "patchouli:text", + "anchor": "normal_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterite Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Garnet Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Almandine, Andradite, Grossular, Pyrope, Spessartine, Uvarovite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Asbestos", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium, Lung cancer$(br)$(thing)Formula$(): Mg₃Siβ‚‚Hβ‚„O₉$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diatomite", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Iron, Aluminium$(br)$(thing)Formula$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 70$(br2)$(thing)Stone Types$(): Diorite, Gabbro$(br2)Can't find it? Gabbro always spawns below $(thing)Basalt$(), and Gabbro dikes in oceans can be useful too!", + "title": "Garnierite & Cobaltite", + "type": "patchouli:text", + "anchor": "normal_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "Garnierite", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pentlandite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobaltite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Cobalt, Arsenic$(br)$(thing)Formula$(): CoAsS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobalt", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Smelts into$(): Cobalt$(br)$(thing)Formula$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Nickel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 240$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 32$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Limestone, Marble", + "title": "Goethite & Malachite", + "type": "patchouli:text", + "anchor": "deep_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Malachite", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 260$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 32$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", + "title": "Gold (Deep)", + "type": "patchouli:text", + "anchor": "deep_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 75%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 40$(br)$(thing)Height$(): 12$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", + "title": "Gold, Limonite, & Hematite", + "type": "patchouli:text", + "anchor": "normal_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 80$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” -16$(br)$(thing)Size$(): 16$(br)$(thing)Height$(): 6$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Diorite, Dolomite, Gabbro, Gneiss, Granite, Limestone, Marble, Phyllite, Quartzite, Rhyolite, Schist, Shale, Slate", + "title": "Graphite & Diamond", + "type": "patchouli:text", + "anchor": "normal_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "Graphite", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Used for$(): $(l:mechanics/fire_clay)Fire Clay$(), Graphene$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Coal", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Used for$(): Fuel, Distillation$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diamond", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Used for$(): Macerators, AE2$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 50$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Hematite & Limonite", + "type": "patchouli:text", + "anchor": "normal_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Size$(): 30$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Hematite, Goethite, & Ruby", + "type": "patchouli:text", + "anchor": "deep_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ruby", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Chromium, Aluminium$(br)$(thing)Formula$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 190$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Size$(): 36$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Kyanite, Mica, & Bauxite", + "type": "patchouli:text", + "anchor": "normal_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "Kyanite", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚SiOβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Mica", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Potassium, Aluminium, Fluorine$(br)$(thing)Formula$(): KAl₃Si₃Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Bauxite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pollucite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Caesium, Aluminium$(br)$(thing)Formula$(): Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -60 β€” 10$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Lapis, Lazurite, & Sodalite", + "type": "patchouli:text", + "anchor": "normal_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Lazurite", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium, Calcium, Sodium$(br)$(thing)Formula$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sodalite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium, Sodium$(br)$(thing)Formula$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lapis", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Lazurite, Sodalite, Pyrite, Calcite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcite", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Calcium$(br)$(thing)Formula$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 190$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 50$(br2)$(thing)Stone Types$(): Limestone, Marble", + "title": "Limonite", + "type": "patchouli:text", + "anchor": "normal_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Malachite", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 200$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 50$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", + "title": "Magnetite & Vanadium", + "type": "patchouli:text", + "anchor": "normal_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Magnetite", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 63%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Vanadium Magnetite", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 22%$(br)$(thing)Source of$(): Iron, Vanadium$(br)$(thing)Formula$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 9%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Chromite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 4%$(br)$(thing)Source of$(): Chromium$(br)$(thing)Formula$(): FeCrβ‚‚Oβ‚„$(br)$(thing)Hazard$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 195$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Chalk, Chert, Claystone, Conglomerate, Dacite, Dolomite, Limestone, Rhyolite, Shale", + "title": "Manganese & Tantalum", + "type": "patchouli:text", + "anchor": "normal_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "Grossular", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 37%$(br)$(thing)Source of$(): Calcium, Aluminium$(br)$(thing)Formula$(): Ca₃Alβ‚‚Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Spessartine", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Manganese, Aluminium$(br)$(thing)Formula$(): Alβ‚‚Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrolusite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Manganese$(br)$(thing)Formula$(): MnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tantalite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 12%$(br)$(thing)Source of$(): Manganese, Tantalum$(br)$(thing)Formula$(): MnTaβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 48$(br)$(thing)Height$(): 9$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Basalt, Granite", + "title": "Mineral Sands", + "type": "patchouli:text", + "anchor": "normal_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Basaltic Mineral Sands", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Granitic Mineral Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Fuller's Earth", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Gypsum", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Used for$(): Alabaster (dyeable) bricks$(br)$(thing)Formula$(): CaS(Hβ‚‚O)β‚‚Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 185$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 70$(br)$(thing)Size$(): 55$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Chalk, Chert, Claystone, Conglomerate, Dolomite, Limestone, Shale", + "title": "Oilsands", + "type": "patchouli:text", + "anchor": "normal_oilsands" + }, + { + "Type": "patchouli:multiblock", + "name": "Oilsands", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 100%$(br)$(thing)Source of$(): Freedom \uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 62$(br)$(thing)Size$(): 26$(br)$(thing)Height$(): 6$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", + "title": "Opal & Garnet", + "type": "patchouli:text", + "anchor": "deep_garnet_opal" + }, + { + "Type": "patchouli:multiblock", + "name": "Opal", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Source of$(): Silicon, Oxygen$(br)$(thing)Formula$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Amethyst", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Iron$(br)$(thing)Formula$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Garnet", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Andradite, Grossular, Uvarovite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Red Garnet", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Pyrope, Almandine, Spessartine", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 150$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 100$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Gneiss, Quartzite, Schist, Shale", + "title": "Quartzes", + "type": "patchouli:text", + "anchor": "normal_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "Quartzite", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 54%$(br)$(thing)Used for$(): LV components$(br)$(thing)Formula$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Certus Quartz", + "multiblock": { + "mapping": { + "0": "#forge:ores/certus_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Used for$(): Applied Energistics 2$(br)$(thing)Formula$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Barite", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Barium$(br)$(thing)Formula$(): BaSOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 100$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Granite$(br2)Can't find it? Granite always spawns below $(thing)Rhyolite$(), and looking in oceans can be useful too!", + "title": "Redstone, Cinnabar, & Ruby", + "type": "patchouli:text", + "anchor": "normal_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "Redstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Melts into$(): Redstone$(br)$(thing)Formula$(): Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ruby", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Chromium, Aluminium$(br)$(thing)Formula$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cinnabar", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Mercury$(br)$(thing)Formula$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Saltpeter & Electrotine", + "type": "patchouli:text", + "anchor": "normal_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Saltpeter", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Potassium, Nitrogen$(br)$(thing)Formula$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diatomite", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Iron, Aluminium$(br)$(thing)Formula$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Electrotine", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Gold, Silver, Redstone$(br)$(thing)Formula$(): (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Alunite", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Potassium, Aluminium$(br)$(thing)Formula$(): KAl₃Siβ‚‚H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 175$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 30 β€” 70$(br)$(thing)Size$(): 40$(br)$(thing)Height$(): 4$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Claystone, Limestone, Shale", + "title": "Salts & Borax", + "type": "patchouli:text", + "anchor": "normal_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "Rock Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Source of$(): Potassium, Chlorine$(br)$(thing)Formula$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Sodium, Chlorine$(br)$(thing)Formula$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lepidolite", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Borax", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Sodium, Boron$(br)$(thing)Formula$(): Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Size$(): 28$(br)$(thing)Height$(): 8$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Sapphire & Almandine", + "type": "patchouli:text", + "anchor": "deep_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Almandine", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 38%$(br)$(thing)Source of$(): Aluminium, Iron$(br)$(thing)Formula$(): Alβ‚‚Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrope", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 27%$(br)$(thing)Source of$(): Aluminium, Magnesium$(br)$(thing)Formula$(): Alβ‚‚Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 16%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Green Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 16%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 0$(br)$(thing)Size$(): 20$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Granite", + "title": "Scheelite & Tungstate", + "type": "patchouli:text", + "anchor": "deep_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Scheelite", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Source of$(): Tungsten$(br)$(thing)Formula$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tungstate", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Tungsten, Lithium$(br)$(thing)Formula$(): Liβ‚‚(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lithium", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Lithium$(br)$(thing)Formula$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Gneiss, Granite", + "title": "Silver, Galena, & Lead", + "type": "patchouli:text", + "anchor": "normal_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "Lead", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Galena", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): PbS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Silver", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 190$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -40 β€” 56$(br)$(thing)Size$(): 36$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Granite", + "title": "Soapstone, Talc, & Trona", + "type": "patchouli:text", + "anchor": "normal_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Soapstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Glauconite Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium, Aluminium$(br)$(thing)Formula$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Talc", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pentlandite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Trona", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Source of$(): Sodium$(br)$(thing)Formula$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Gneiss, Marble, Phyllite, Quartzite, Rhyolite, Schist, Slate", + "title": "Sphalerite & Pyrite", + "type": "patchouli:text", + "anchor": "normal_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Sphalerite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 145$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Gneiss, Marble, Phyllite, Quartzite, Rhyolite, Schist, Slate", + "title": "Sphalerite & Sulfur", + "type": "patchouli:text", + "anchor": "surface_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 55%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sphalerite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.375$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 20 β€” 60$(br)$(thing)Size$(): 35$(br)$(thing)Height$(): 6$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Spodumene & Lepidolite", + "type": "patchouli:text", + "anchor": "normal_spodumene" + }, + { + "Type": "patchouli:multiblock", + "name": "Spodumene", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Lithium, Aluminium$(br)$(thing)Formula$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Sodium, Chlorine$(br)$(thing)Formula$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Rock Salt", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Potassium, Chlorine$(br)$(thing)Formula$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lepidolite", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Potassium, Lithium, Aluminium, Fluorine$(br)$(thing)Formula$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 165$(br)$(thing)Density$(): 0.2$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Size$(): 45$(br)$(thing)Indicator Max Depth$(): 40$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Rhyolite", + "title": "Sulfur & Pyrite", + "type": "patchouli:text", + "anchor": "normal_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sphalerite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Size$(): 40$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Tetrahedrite (Normal)", + "type": "patchouli:text", + "anchor": "normal_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tetrahedrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Stibnite", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Smelts into$(): Antimony$(br)$(thing)Formula$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 140$(br)$(thing)Density$(): 0.25$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Size$(): 50$(br)$(thing)Indicator Max Depth$(): 60$(br2)$(thing)Stone Types$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Tetrahedrite (Surface)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tetrahedrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Stibnite", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Smelts into$(): Antimony$(br)$(thing)Formula$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 260$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Size$(): 28$(br)$(thing)Height$(): 7$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Gneiss, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Topaz & Chalcocite", + "type": "patchouli:text", + "anchor": "deep_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "Blue Topaz", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium, Fluorine$(br)$(thing)Formula$(): Alβ‚‚SiFβ‚‚Hβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Topaz", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium, Fluorine$(br)$(thing)Formula$(): Alβ‚‚SiFHβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Chalcocite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Copper$(br)$(thing)Formula$(): Cuβ‚‚S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” -20$(br)$(thing)Size$(): 24$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Marble, Phyllite, Quartzite, Schist, Slate", + "title": "Uraninite & Pitchblende", + "type": "patchouli:text", + "anchor": "deep_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Pitchblende", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Uraninite", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 245$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): -64 β€” 10$(br)$(thing)Size$(): 26$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Andesite, Basalt, Dacite, Diorite, Gabbro, Granite, Rhyolite", + "title": "Wulfenite & Molybdenite", + "type": "patchouli:text", + "anchor": "deep_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "Wulfenite", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Source of$(): Lead, Molybdenum$(br)$(thing)Formula$(): PbMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Molybdenite", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Molybdenum$(br)$(thing)Formula$(): MoSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Molybdenum", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Molybdenum$(br)$(thing)Formula$(): Mo", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Powellite", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Molybdenum$(br)$(thing)Formula$(): CaMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/hazards.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/hazards.json index c96eab0f8..7e3b1c6c7 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/hazards.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/hazards.json @@ -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$(), one step away from rubber." + }, + { + "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$()." + } + ] } diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/index.json deleted file mode 100644 index 8e49cff9b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/index.json +++ /dev/null @@ -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%$()" - } - ] -} - diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_ore_index.json new file mode 100644 index 000000000..db95a5f55 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_ore_index.json @@ -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)Anthracite: $(l:tfg_ores/nether_vein_index#nether_anthracite)100%$(/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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Bornite: $(l:tfg_ores/nether_vein_index#nether_sheldonite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_topaz)15%$(/l)$()$(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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Emerald: $(l:tfg_ores/nether_vein_index#nether_beryllium)50%$(/l)$()$(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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Kyanite: $(l:tfg_ores/nether_vein_index#nether_mica)35%$(/l)$()$(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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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)$()$(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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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)$()$(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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Spessartine: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Sphalerite: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Stibnite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Sulfur: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()$(li)Sylvite: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Talc: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Tantalite: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Tetrahedrite: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Thorium: $(l:tfg_ores/nether_vein_index#nether_beryllium)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)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(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)$()$(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" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_vein_index.json new file mode 100644 index 000000000..0b9d27575 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/nether_vein_index.json @@ -0,0 +1,2853 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "The Beneath Vein Index", + "icon": "gtceu:pyroxenite_nether_quartz_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(item)The Beneath$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns in, and more.", + "title": "The Beneath Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_garnet)Amethyst, Opal, & Garnet$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_anthracite)Anthracite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_apatite)Apatite & Pyrochlore$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_monazite)Bastnasite & Monazite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_bauxite)Bauxite & Ilmenite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_olivine)Bentonite & Olivine$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_cassiterite)Cassiterite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_magnetite)Chromite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sheldonite)Cooperite & Bornite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_copper)Copper & Chalcopyrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_beryllium)Emerald & Beryllium$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnet_tin)Garnet & Cassiterite Sands$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnierite)Garnierite & Cobaltite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_goethite)Goethite$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_gold)Gold & Hematite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_graphite)Graphite & Diamond$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_hematite)Hematite & Limonite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_mica)Kyanite, Mica, & Bauxite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lapis)Lapis, Lazurite, & Sodalite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_manganese)Manganese & Tantalum$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_basaltic_sands)Mineral Sands$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_naquadah)Naquadah & Plutonium$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_quartz)Nether Quartz$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_redstone)Redstone, Cinnabar, & Ruby$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_saltpeter)Saltpeter & Electrotine$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sapphire)Sapphire & Almandine$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_scheelite)Scheelite & Tungstate$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_silver)Silver, Galena, & Lead$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_lubricant)Soapstone, Talc, & Trona$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sphalerite)Sphalerite & Pyrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sulfur)Sulfur & Pyrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sylvite)Sylvite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_tetrahedrite)Tetrahedrite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_topaz)Topaz & Chalcocite$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_pitchblende)Uraninite & Pitchblende$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_molybdenum)Wulfenite & Molybdenite$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 230$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 45$(br)$(thing)Height$(): 8$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Amethyst, Opal, & Garnet", + "type": "patchouli:text", + "anchor": "nether_garnet" + }, + { + "Type": "patchouli:multiblock", + "name": "Amethyst", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 38%$(br)$(thing)Source of$(): Iron$(br)$(thing)Formula$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Opal", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 38%$(br)$(thing)Source of$(): Silicon, Oxygen$(br)$(thing)Formula$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Garnet", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 14%$(br)$(thing)Source of$(): Andradite, Grossular, Uvarovite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Red Garnet", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 9%$(br)$(thing)Source of$(): Pyrope, Almandine, Spessartine", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 35$(br)$(thing)Density$(): 0.8$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 48 β€” 127$(br)$(thing)Size$(): 13$(br)$(thing)Height$(): 4$(br2)$(thing)Stone Types$(): Migmatite", + "title": "Anthracite", + "type": "patchouli:text", + "anchor": "nether_anthracite" + }, + { + "Type": "patchouli:multiblock", + "name": "Anthracite", + "multiblock": { + "mapping": { + "0": "beneath:ore/nether_cursecoal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 100%$(br)$(thing)Used for$(): Fuel$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 48 β€” 128$(br)$(thing)Size$(): 39$(br2)$(thing)Stone Types$(): Gneiss, Schist", + "title": "Apatite & Pyrochlore", + "type": "patchouli:text", + "anchor": "nether_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Apatite", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Calcium, Phosphorus, Forestry PTSD$(br)$(thing)Formula$(): Caβ‚…(POβ‚„)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tricalcium Phosphate", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Calcium, Phosphorus$(br)$(thing)Formula$(): Ca₃(POβ‚„)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrochlore", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Niobium$(br)$(thing)Formula$(): Caβ‚‚Nbβ‚‚O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 185$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Bastnasite & Monazite", + "type": "patchouli:text", + "anchor": "nether_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bastnasite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Cerium, Fluorine$(br)$(thing)Formula$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Monazite", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Phosphorous, Rare Earth$(br)$(thing)Formula$(): ?(POβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Neodymium", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Neodymium$(br)$(thing)Formula$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 185$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Bauxite & Ilmenite", + "type": "patchouli:text", + "anchor": "nether_bauxite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bauxite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ilmenite", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Iron, Titanium$(br)$(thing)Formula$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Aluminium", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 250$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Size$(): 31$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Bentonite & Olivine", + "type": "patchouli:text", + "anchor": "nether_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "Bentonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Sodium, Magnesium$(br)$(thing)Formula$(): NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Magnesite", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Olivine", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium, Iron$(br)$(thing)Formula$(): Mgβ‚‚Fe(SiOβ‚‚)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Glauconite Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Magnesium, Aluminium$(br)$(thing)Formula$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.5$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Cassiterite", + "type": "patchouli:text", + "anchor": "nether_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tin", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 60%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 205$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 39$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Chromite", + "type": "patchouli:text", + "anchor": "nether_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Chromite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 60%$(br)$(thing)Source of$(): Chromium$(br)$(thing)Formula$(): FeCrβ‚‚Oβ‚„$(br)$(thing)Hazard$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Vanadium Magnetite", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Iron, Vanadium$(br)$(thing)Formula$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Magnetite", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 250$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 35$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Cooperite & Bornite", + "type": "patchouli:text", + "anchor": "nether_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sheldonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Platinum, Nickel, Palladium$(br)$(thing)Formula$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Platinum", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Smelts into$(): Platinum$(br)$(thing)Formula$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Palladium", + "multiblock": { + "mapping": { + "0": "#forge:ores/palladium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Palladium$(br)$(thing)Formula$(): Pd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.5$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Copper & Chalcopyrite", + "type": "patchouli:text", + "anchor": "nether_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 65%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Chalcopyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 250$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Pipe Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Height$(): 60$(br)$(thing)Radius$(): 12$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Emerald & Beryllium", + "type": "patchouli:text", + "anchor": "nether_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Emerald", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Used for$(): MV components, Item tag filters$(br)$(thing)Formula$(): Be₃Alβ‚‚Si₆Oβ‚β‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Beryllium", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Beryllium$(br)$(thing)Formula$(): Be$(br)$(thing)Hazard$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Thorium", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Thorium$(br)$(thing)Formula$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 270$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Migmatite, Pyroxenite, Schist, Travertine", + "title": "Garnet & Cassiterite Sands", + "type": "patchouli:text", + "anchor": "nether_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "Cassiterite Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Tin$(br)$(thing)Formula$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Garnet Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Almandine, Andradite, Grossular, Pyrope, Spessartine, Uvarovite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Asbestos", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium, Lung cancer$(br)$(thing)Formula$(): Mg₃Siβ‚‚Hβ‚„O₉$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diatomite", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Iron, Aluminium$(br)$(thing)Formula$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.5$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 16 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Pyroxenite", + "title": "Garnierite & Cobaltite", + "type": "patchouli:text", + "anchor": "nether_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "Garnierite", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pentlandite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobaltite", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Cobalt, Arsenic$(br)$(thing)Formula$(): CoAsS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cobalt", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Smelts into$(): Cobalt$(br)$(thing)Formula$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Nickel", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 240$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 37$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Goethite", + "type": "patchouli:text", + "anchor": "nether_goethite" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Malachite", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 260$(br)$(thing)Density$(): 0.55$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 37$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Gold & Hematite", + "type": "patchouli:text", + "anchor": "nether_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 75%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 120$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Pipe Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Height$(): 60$(br)$(thing)Radius$(): 12$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Graphite & Diamond", + "type": "patchouli:text", + "anchor": "nether_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "Graphite", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Used for$(): $(l:mechanics/fire_clay)Fire Clay$(), Graphene$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diamond", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Used for$(): Macerators, AE2$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Coal", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Used for$(): Fuel, Distillation$(br)$(thing)Formula$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 35$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Hematite & Limonite", + "type": "patchouli:text", + "anchor": "nether_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Hematite", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Goethite", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ruby", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Chromium, Aluminium$(br)$(thing)Formula$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Yellow Limonite", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Gold", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 5%$(br)$(thing)Melts into$(): Gold$(br)$(thing)Formula$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 41$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Kyanite, Mica, & Bauxite", + "type": "patchouli:text", + "anchor": "nether_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "Kyanite", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚SiOβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Mica", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Potassium, Aluminium, Fluorine$(br)$(thing)Formula$(): KAl₃Si₃Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Bauxite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pollucite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Caesium, Aluminium$(br)$(thing)Formula$(): Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 40$(br2)$(thing)Stone Types$(): Migmatite, Pyroxenite, Travertine", + "title": "Lapis, Lazurite, & Sodalite", + "type": "patchouli:text", + "anchor": "nether_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Lazurite", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium, Calcium, Sodium$(br)$(thing)Formula$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sodalite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium, Sodium$(br)$(thing)Formula$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lapis", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Lazurite, Sodalite, Pyrite, Calcite", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Calcite", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Calcium$(br)$(thing)Formula$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 195$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Manganese & Tantalum", + "type": "patchouli:text", + "anchor": "nether_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "Grossular", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 37%$(br)$(thing)Source of$(): Calcium, Aluminium$(br)$(thing)Formula$(): Ca₃Alβ‚‚Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Spessartine", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Manganese, Aluminium$(br)$(thing)Formula$(): Alβ‚‚Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrolusite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Manganese$(br)$(thing)Formula$(): MnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tantalite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 12%$(br)$(thing)Source of$(): Manganese, Tantalum$(br)$(thing)Formula$(): MnTaβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 48 β€” 128$(br)$(thing)Size$(): 48$(br)$(thing)Height$(): 9$(br2)$(thing)Stone Types$(): Basalt, Granite", + "title": "Mineral Sands", + "type": "patchouli:text", + "anchor": "nether_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Basaltic Mineral Sands", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Granitic Mineral Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Fuller's Earth", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Gypsum", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Used for$(): Alabaster (dyeable) bricks$(br)$(thing)Formula$(): CaS(Hβ‚‚O)β‚‚Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 250$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 38$(br)$(thing)Size$(): 32$(br2)$(thing)Stone Types$(): Basalt, Pyroxenite", + "title": "Naquadah & Plutonium", + "type": "patchouli:text", + "anchor": "nether_naquadah" + }, + { + "Type": "patchouli:multiblock", + "name": "Naquadah", + "multiblock": { + "mapping": { + "0": "#forge:ores/naquadah" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 75%$(br)$(thing)Source of$(): Naquadah, Tritanium$(br)$(thing)Formula$(): Nq", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Plutonium", + "multiblock": { + "mapping": { + "0": "#forge:ores/plutonium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Plutonium$(br)$(thing)Formula$(): Pu²³⁹$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 150$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Basalt, Diorite, Gabbro, Granite, Migmatite, Pyroxenite, Travertine", + "title": "Nether Quartz", + "type": "patchouli:text", + "anchor": "nether_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "Nether Quartz", + "multiblock": { + "mapping": { + "0": "#forge:ores/nether_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 54%$(br)$(thing)Used for$(): Applied Energistics 2$(br)$(thing)Formula$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Quartzite", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Used for$(): LV components$(br)$(thing)Formula$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Barite", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Barium$(br)$(thing)Formula$(): BaSOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.5$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Granite, Pyroxenite", + "title": "Redstone, Cinnabar, & Ruby", + "type": "patchouli:text", + "anchor": "nether_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "Redstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Melts into$(): Redstone$(br)$(thing)Formula$(): Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Ruby", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Chromium, Aluminium$(br)$(thing)Formula$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Cinnabar", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Mercury$(br)$(thing)Formula$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 210$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 50$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Saltpeter & Electrotine", + "type": "patchouli:text", + "anchor": "nether_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Saltpeter", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Potassium, Nitrogen$(br)$(thing)Formula$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Diatomite", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Iron, Aluminium$(br)$(thing)Formula$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Electrotine", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Gold, Silver, Redstone$(br)$(thing)Formula$(): (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Alunite", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Potassium, Aluminium$(br)$(thing)Formula$(): KAl₃Siβ‚‚H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 33$(br)$(thing)Height$(): 8$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Sapphire & Almandine", + "type": "patchouli:text", + "anchor": "nether_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Almandine", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 38%$(br)$(thing)Source of$(): Aluminium, Iron$(br)$(thing)Formula$(): Alβ‚‚Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrope", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 27%$(br)$(thing)Source of$(): Aluminium, Magnesium$(br)$(thing)Formula$(): Alβ‚‚Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 16%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Green Sapphire", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 16%$(br)$(thing)Source of$(): Aluminium$(br)$(thing)Formula$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.45$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 25$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Scheelite & Tungstate", + "type": "patchouli:text", + "anchor": "nether_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Scheelite", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 45%$(br)$(thing)Source of$(): Tungsten$(br)$(thing)Formula$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Tungstate", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Tungsten, Lithium$(br)$(thing)Formula$(): Liβ‚‚(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lithium", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Lithium$(br)$(thing)Formula$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 160$(br)$(thing)Density$(): 0.5$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Gneiss, Granite, Pyroxenite", + "title": "Silver, Galena, & Lead", + "type": "patchouli:text", + "anchor": "nether_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Silver", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Silver$(br)$(thing)Formula$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Lead", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): Pb$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Galena", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Smelts into$(): Lead$(br)$(thing)Formula$(): PbS$(br)$(thing)Hazard$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 250$(br)$(thing)Density$(): 0.35$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 41$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Soapstone, Talc, & Trona", + "type": "patchouli:text", + "anchor": "nether_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Soapstone", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Glauconite Sand", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Magnesium, Aluminium$(br)$(thing)Formula$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Talc", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Source of$(): Magnesium$(br)$(thing)Formula$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pentlandite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Nickel$(br)$(thing)Formula$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Trona", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 10%$(br)$(thing)Source of$(): Sodium$(br)$(thing)Formula$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.5$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Sphalerite & Pyrite", + "type": "patchouli:text", + "anchor": "nether_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Sphalerite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 165$(br)$(thing)Density$(): 0.3$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 50$(br2)$(thing)Stone Types$(): Basalt, Diorite, Pyroxenite, Schist", + "title": "Sulfur & Pyrite", + "type": "patchouli:text", + "anchor": "nether_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Sulfur", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Sulfur$(br)$(thing)Formula$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Pyrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Melts into$(): Cast Iron$(br)$(thing)Formula$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Sphalerite", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Zinc$(br)$(thing)Formula$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 75$(br)$(thing)Density$(): 0.6$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 64$(br)$(thing)Size$(): 17$(br)$(thing)Indicator Max Depth$(): 20$(br2)$(thing)Stone Types$(): Pyroxenite", + "title": "Sylvite", + "type": "patchouli:text", + "anchor": "nether_sylvite" + }, + { + "Type": "patchouli:multiblock", + "name": "Sylvite", + "multiblock": { + "mapping": { + "0": "beneath:ore/blackstone_sylvite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 100%$(br)$(thing)Used for$(): Fertiliser$(br)$(thing)Formula$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 170$(br)$(thing)Density$(): 0.5$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Size$(): 45$(br2)$(thing)Stone Types$(): Gneiss, Migmatite, Pyroxenite, Schist, Travertine", + "title": "Tetrahedrite", + "type": "patchouli:text", + "anchor": "nether_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Tetrahedrite", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Native Copper", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Stibnite", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 20%$(br)$(thing)Smelts into$(): Antimony$(br)$(thing)Formula$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 180$(br)$(thing)Density$(): 0.4$(br)$(thing)Type$(): Disc Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 33$(br)$(thing)Height$(): 7$(br2)$(thing)Stone Types$(): Basalt, Migmatite, Pyroxenite, Travertine", + "title": "Topaz & Chalcocite", + "type": "patchouli:text", + "anchor": "nether_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "Blue Topaz", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 35%$(br)$(thing)Source of$(): Aluminium, Fluorine$(br)$(thing)Formula$(): Alβ‚‚SiFβ‚‚Hβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Topaz", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Aluminium, Fluorine$(br)$(thing)Formula$(): Alβ‚‚SiFHβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Chalcocite", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 25%$(br)$(thing)Source of$(): Copper$(br)$(thing)Formula$(): Cuβ‚‚S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Bornite", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Melts into$(): Copper$(br)$(thing)Formula$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 220$(br)$(thing)Density$(): 0.55$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 29$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Uraninite & Pitchblende", + "type": "patchouli:text", + "anchor": "nether_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Pitchblende", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Uranium, Thorium, Lead$(br)$(thing)Formula$(): (UOβ‚‚)₃ThPb$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Uraninite", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 50%$(br)$(thing)Source of$(): Uranium$(br)$(thing)Formula$(): UOβ‚‚$(br)$(thing)Hazard$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Rarity$(): 245$(br)$(thing)Density$(): 0.55$(br)$(thing)Type$(): Cluster Vein$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Size$(): 31$(br2)$(thing)Stone Types$(): Diorite, Gabbro, Gneiss, Granite, Pyroxenite, Schist", + "title": "Wulfenite & Molybdenite", + "type": "patchouli:text", + "anchor": "nether_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "Wulfenite", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 40%$(br)$(thing)Source of$(): Lead, Molybdenum$(br)$(thing)Formula$(): PbMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Molybdenite", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 30%$(br)$(thing)Source of$(): Molybdenum$(br)$(thing)Formula$(): MoSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Molybdenum", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Molybdenum$(br)$(thing)Formula$(): Mo", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Powellite", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Percentage$(): 15%$(br)$(thing)Source of$(): Molybdenum$(br)$(thing)Formula$(): CaMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_apatite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_apatite.json deleted file mode 100644 index 2c1e4a081..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_apatite.json +++ /dev/null @@ -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₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_basaltic_sands.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_basaltic_sands.json deleted file mode 100644 index ed966f2c6..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_basaltic_sands.json +++ /dev/null @@ -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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_bauxite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_bauxite.json deleted file mode 100644 index 47906ed69..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_bauxite.json +++ /dev/null @@ -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₃" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_beryllium.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_beryllium.json deleted file mode 100644 index f2bbc297c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_beryllium.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_bismuth.json deleted file mode 100644 index 051c7bba5..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_bismuth.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_cassiterite.json deleted file mode 100644 index cbbbe8087..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_cassiterite.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_coal.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_coal.json deleted file mode 100644 index 881eb7e2c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_coal.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_copper.json deleted file mode 100644 index 304c7e04f..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_copper.json +++ /dev/null @@ -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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_garnet_tin.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_garnet_tin.json deleted file mode 100644 index f644bc4cb..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_garnet_tin.json +++ /dev/null @@ -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₃)" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_garnierite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_garnierite.json deleted file mode 100644 index eea947011..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_garnierite.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_gold.json deleted file mode 100644 index 86014608c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_gold.json +++ /dev/null @@ -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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_graphite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_graphite.json deleted file mode 100644 index 0c50e503c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_graphite.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_hematite.json deleted file mode 100644 index 94d6e0285..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_hematite.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_lapis.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_lapis.json deleted file mode 100644 index c206a6786..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_lapis.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_limonite.json deleted file mode 100644 index 9ef074f35..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_limonite.json +++ /dev/null @@ -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β‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_lubricant.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_lubricant.json deleted file mode 100644 index ba387d560..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_lubricant.json +++ /dev/null @@ -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₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_magnetite.json deleted file mode 100644 index a4590d621..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_magnetite.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_manganese.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_manganese.json deleted file mode 100644 index 09181fb78..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_manganese.json +++ /dev/null @@ -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₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_mica.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_mica.json deleted file mode 100644 index 9b8bcc739..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_mica.json +++ /dev/null @@ -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₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_monazite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_monazite.json deleted file mode 100644 index a60f17681..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_monazite.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_oilsands.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_oilsands.json deleted file mode 100644 index d2347422b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_oilsands.json +++ /dev/null @@ -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 πŸ›’πŸ¦…πŸ—½" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_olivine.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_olivine.json deleted file mode 100644 index f9066eb7e..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_olivine.json +++ /dev/null @@ -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₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_quartz.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_quartz.json deleted file mode 100644 index 144c7687c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_quartz.json +++ /dev/null @@ -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β‚‚" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_redstone.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_redstone.json deleted file mode 100644 index 7e7b90dcd..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_redstone.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_salt.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_salt.json deleted file mode 100644 index db640427b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_salt.json +++ /dev/null @@ -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₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_saltpeter.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_saltpeter.json deleted file mode 100644 index 4776bbf74..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_saltpeter.json +++ /dev/null @@ -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₁₄" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_silver.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_silver.json deleted file mode 100644 index 0beca1f10..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_silver.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_sphalerite.json deleted file mode 100644 index 0b52d9932..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_sphalerite.json +++ /dev/null @@ -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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_spodumene.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_spodumene.json deleted file mode 100644 index 15179ab4d..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_spodumene.json +++ /dev/null @@ -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₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_sulfur.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_sulfur.json deleted file mode 100644 index 827392484..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_sulfur.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_tetrahedrite.json deleted file mode 100644 index a525b3be4..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/normal_tetrahedrite.json +++ /dev/null @@ -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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/ore_basics.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/ore_basics.json index c3ddc1f80..0e6c5c688 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/ore_basics.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/ore_basics.json @@ -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." + } + ] } diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_bismuth.json deleted file mode 100644 index 2be98e09e..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_bismuth.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_cassiterite.json deleted file mode 100644 index 1578a4734..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_cassiterite.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_copper.json deleted file mode 100644 index b1b80768a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_copper.json +++ /dev/null @@ -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." - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_sphalerite.json deleted file mode 100644 index dd3306166..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_sphalerite.json +++ /dev/null @@ -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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_tetrahedrite.json deleted file mode 100644 index 2b7cbd0e3..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_ores/surface_tetrahedrite.json +++ /dev/null @@ -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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json index 32f6e83d8..d84ae86f0 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/faqs.json @@ -13,7 +13,7 @@ }, { "type": "patchouli:text", - "text": "$(li)$(l:tfg_tips/faqs#boats)Why did my boat sink?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make yeast starter?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make pineapple fiber?$()$(li)$(l:tfg_tips/faqs#jam)How do I make jam?$()$(li)$(l:tfg_tips/faqs#resin)How do I make Sticky Resin?$()$(li)$(l:tfg_tips/faqs#chunks)How do I force-load a chunk or increase my limit?$()" + "text": "$(li)$(l:tfg_tips/faqs#boats)Why did my boat sink?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make yeast starter?$()$(li)$(l:tfg_tips/faqs#dried_fruit)How do I make pineapple fiber?$()$(li)$(l:tfg_tips/faqs#jam)How do I make jam?$()$(li)$(l:tfg_tips/faqs#resin)How do I make Rubber?$()$(li)$(l:tfg_tips/faqs#chunks)How do I force-load a chunk or increase my limit?$()" }, { "type": "patchouli:text", @@ -38,11 +38,11 @@ { "type": "patchouli:text", "anchor": "resin", - "text": "$(italic)How do I make sticky resin?$()$(br2)First, grow some $(thing)Kapok$() trees and make some $(thing)Tree Taps$(). Place a tree tap on the main trunk of each kapok tree (more taps on a tree just splits the output). Right-click each tree tap with an empty $(thing)Wooden Bucket$(), then wait for the correct season (Feb-Oct, excluding July). When the bucket is full, $(item)$(k:use)$() it with an $(thing)empty hand$(). You can automate this with a $(l:mechanics/pumps)Mechanical Pump$() on the bucket, if you'd like." + "text": "$(italic)How do I make rubber?$()$(br2)Sticky Resin is no longer what you are looking for! First, grow some $(thing)Latex$()-producing trees and make some $(thing)Tree Taps$(). Place a tree tap on the trunk of each tree (more taps on a tree just splits the output). You can collect the Latex that comes out with a $(tfc:mechanics/barrels)Barrel$()." }, { "type": "patchouli:text", - "text": "It's quickest to cook your latex in a $(l:firmalife/oven_appliances#vat)Vat$(). Combine your latex with $(item)Sulfur$() dust in the vat (put the GregTech one in a Quern to get the TFC one), add heat, and $(bold)close the lid$() on the Vat with $(item)$(k:sneak)$() + $(item)$(k:use)$().$(br2)You can automate this later with the $(thing)LV Centrifuge$()." + "text": "It's quickest to cook your latex in a $(l:firmalife/oven_appliances#vat)Vat$(). Combine your latex with $(item)Sulfur$() powder in the vat (put the GregTech dust in a Quern to get the powder), add heat, and $(bold)close the lid$() on the Vat with $(item)$(k:sneak)$() + $(item)$(k:use)$(). You will get $(thing)Vulcanized Latex$() which you can vacuumize in a $(thing)Vacuum Chamber$() for that long-awaited Rubber!$(br2)Later on, the $(thing)LV Centrifuge$() lets you get $(thing)Raw Rubber Pulp$() directly from the logs of latex-producing trees." } ] } \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/lv_machines.json b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/lv_machines.json index f8abd796a..9555257e9 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/lv_machines.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/en_us/entries/tfg_tips/lv_machines.json @@ -44,12 +44,12 @@ "title": "Chem Reactor/Solidifer", "item": "gtceu:lv_chemical_reactor,gtceu:lv_fluid_solidifier", "text": "The $(item)Chemical Reactor$() makes much cheaper $(thing)Rubber$() which the $(item)Fluid Solidifier$() can turn into cheaper $(thing)Rubber Sheets$(), and can also make cheaper $(thing)Rotors$().$(br2)The $(item)Extractor$() is also useful paired up with the Fluid Solidifier, and is a big upgrade over the steam one because it can make metal fluids." - }, + }, { "type": "patchouli:spotlight", "title": "Centrifuge", "item": "gtceu:lv_centrifuge", - "text": "The $(item)Centrifuge$() makes $(thing)Sticky Resin$() directly from Kapok logs, and much cheaper $(thing)Raw Rubber$() as well. No more latex!" + "text": "The $(item)Centrifuge$() can help with separating things, such as byproducts out of impure or purified ore dusts, but the most immediate improvement will be that it separates out $(thing)Raw Rubber Pulp$() directly from latex-producing tree logs. No more latex!" }, { "type": "patchouli:spotlight", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/mechanics/fire_clay.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/mechanics/fire_clay.json index 714e36bd9..781bb6423 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/mechanics/fire_clay.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/mechanics/fire_clay.json @@ -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", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_garnet_amethyst.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_garnet_amethyst.json deleted file mode 100644 index 71feddb74..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_garnet_amethyst.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_garnet_opal.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_garnet_opal.json deleted file mode 100644 index da9ffd5fe..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_garnet_opal.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_gold.json deleted file mode 100644 index f50509c80..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_gold.json +++ /dev/null @@ -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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_hematite.json deleted file mode 100644 index e7cbb4150..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_hematite.json +++ /dev/null @@ -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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_limonite.json deleted file mode 100644 index 3ebb4facd..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_limonite.json +++ /dev/null @@ -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β‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_magnetite.json deleted file mode 100644 index c5b62293e..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_magnetite.json +++ /dev/null @@ -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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_molybdenum.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_molybdenum.json deleted file mode 100644 index 4ef974430..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_molybdenum.json +++ /dev/null @@ -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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_naquadah.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_naquadah.json deleted file mode 100644 index e23b9ae43..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_naquadah.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_pitchblende.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_pitchblende.json deleted file mode 100644 index 4797f5974..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_pitchblende.json +++ /dev/null @@ -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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_sapphire.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_sapphire.json deleted file mode 100644 index d5328d3eb..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_sapphire.json +++ /dev/null @@ -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₃" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_scheelite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_scheelite.json deleted file mode 100644 index 5b3c021b2..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_scheelite.json +++ /dev/null @@ -1,69 +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/cooperite" - }, - "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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_sheldonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_sheldonite.json deleted file mode 100644 index 773c8da7a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_sheldonite.json +++ /dev/null @@ -1,88 +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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_topaz.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_topaz.json deleted file mode 100644 index b146d8dac..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/deep_topaz.json +++ /dev/null @@ -1,88 +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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/hazards.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/hazards.json deleted file mode 100644 index f8caece51..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/hazards.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "name": "Dealing with Hazards", - "icon": "gtceu:hazmat_headpiece", - "category": "tfc:tfg_ores", - "priority": true, - "sortnum": 1, - "pages": [ - { - "type": "patchouli:text", - "text": "Some ores are hazardous! Having them in your inventory will deal continuous poison damage.$(br2)There's a full $(thing)hazmat suit$(), but that's all the way in $(thing)MV$(), so what can you do instead?$(br2)Here's some tips until TFG is able to update to a newer version of a GregTech that provides its own primitive protection equipment." - }, - { - "type": "patchouli:text", - "text": "Later, if you want to move hazardous materials around, you can take them out of small vessels and into chests and machines by $(thing)Right-clicking$() on the vessel. This way, it will never enter your inventory!$(br2)Lastly, if you don't enjoy hazards, you can turn them off in the GregTech options." - }, - { - "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": "As mentioned, the 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:mechanics/crankshaft)Backpack$() or $(l:getting_started/pottery#vessel)Vessel$().", - "item": "sophisticatedbackpacks:backpack,tfc:ceramic/vessel,tfc:ceramic/large_vessel" - }, - { - "type": "patchouli:spotlight", - "title": "Armor", - "text": "Better armor will reduce the damage taken from hazardous materials.", - "item": { - "tag": "minecraft:trimmable_armor" - } - }, - { - "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$()." - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/index.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/index.json deleted file mode 100644 index f66c39d8c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/index.json +++ /dev/null @@ -1,43 +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%$()" - } - ] -} - diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_apatite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_apatite.json deleted file mode 100644 index ae29f6b7a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_apatite.json +++ /dev/null @@ -1,69 +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₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_basaltic_sands.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_basaltic_sands.json deleted file mode 100644 index c40fc7801..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_basaltic_sands.json +++ /dev/null @@ -1,88 +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β‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_bauxite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_bauxite.json deleted file mode 100644 index 95df4f78c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_bauxite.json +++ /dev/null @@ -1,69 +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" - }, - { - "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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_beryllium.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_beryllium.json deleted file mode 100644 index 196f19c23..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_beryllium.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_bismuth.json deleted file mode 100644 index 513802e51..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_bismuth.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_cassiterite.json deleted file mode 100644 index f6eac1048..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_cassiterite.json +++ /dev/null @@ -1,50 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_coal.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_coal.json deleted file mode 100644 index ca04d421f..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_coal.json +++ /dev/null @@ -1,31 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_copper.json deleted file mode 100644 index 865e2ce3c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_copper.json +++ /dev/null @@ -1,88 +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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_garnet_tin.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_garnet_tin.json deleted file mode 100644 index 11a96ff6c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_garnet_tin.json +++ /dev/null @@ -1,88 +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₃)" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_garnierite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_garnierite.json deleted file mode 100644 index dc6ee56a2..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_garnierite.json +++ /dev/null @@ -1,107 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_gold.json deleted file mode 100644 index 729e40325..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_gold.json +++ /dev/null @@ -1,88 +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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_graphite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_graphite.json deleted file mode 100644 index 6b9259169..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_graphite.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_hematite.json deleted file mode 100644 index 78ab5ed11..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_hematite.json +++ /dev/null @@ -1,88 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_lapis.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_lapis.json deleted file mode 100644 index cfc88eccd..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_lapis.json +++ /dev/null @@ -1,88 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_limonite.json deleted file mode 100644 index 0c2018fc2..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_limonite.json +++ /dev/null @@ -1,88 +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β‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_lubricant.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_lubricant.json deleted file mode 100644 index 0f0dd1064..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_lubricant.json +++ /dev/null @@ -1,107 +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₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_magnetite.json deleted file mode 100644 index d3995a8af..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_magnetite.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_manganese.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_manganese.json deleted file mode 100644 index 70ffb6d17..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_manganese.json +++ /dev/null @@ -1,88 +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₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_mica.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_mica.json deleted file mode 100644 index 67afd9ec9..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_mica.json +++ /dev/null @@ -1,88 +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₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_monazite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_monazite.json deleted file mode 100644 index aa50494ab..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_monazite.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_oilsands.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_oilsands.json deleted file mode 100644 index 3b25e7451..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_oilsands.json +++ /dev/null @@ -1,31 +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 πŸ›’πŸ¦…πŸ—½" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_olivine.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_olivine.json deleted file mode 100644 index 589922e34..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_olivine.json +++ /dev/null @@ -1,88 +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₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_quartz.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_quartz.json deleted file mode 100644 index 5c2f2cd81..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_quartz.json +++ /dev/null @@ -1,88 +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 Bud" - }, - { - "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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_redstone.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_redstone.json deleted file mode 100644 index f2db1e173..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_redstone.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_salt.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_salt.json deleted file mode 100644 index c14ab69c1..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_salt.json +++ /dev/null @@ -1,88 +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₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_saltpeter.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_saltpeter.json deleted file mode 100644 index 0f3934a77..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_saltpeter.json +++ /dev/null @@ -1,88 +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₁₄" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_silver.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_silver.json deleted file mode 100644 index 013976a89..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_silver.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_sphalerite.json deleted file mode 100644 index 85a67c420..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_sphalerite.json +++ /dev/null @@ -1,69 +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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_spodumene.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_spodumene.json deleted file mode 100644 index 6ac967181..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_spodumene.json +++ /dev/null @@ -1,88 +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₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_sulfur.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_sulfur.json deleted file mode 100644 index 6fc011b3a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_sulfur.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_tetrahedrite.json deleted file mode 100644 index 7da4dfae6..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/normal_tetrahedrite.json +++ /dev/null @@ -1,69 +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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/ore_basics.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/ore_basics.json deleted file mode 100644 index 674c4bc66..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/ore_basics.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "Mining in TFG", - "icon": "gtceu:pyrite_dust", - "category": "tfc:tfg_ores", - "priority": true, - "sortnum": 0, - "pages": [ - { - "type": "patchouli:text", - "text": "There are two ways of mining ores - with a $(thing)Pickaxe$(), or with a $(thing)Hammer$().$(br)Generally, you should mine anything meltable (such as $(thing)Copper$()) with a hammer, and everything else with a pickaxe, but check JEI if you're unsure." - }, - { - "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": "Hammer", - "text": "Breaking an ore block with a hammer will yield 1-2 $(thing)Crushed Ores$(). These already melt into more mB than Raw ores, but with a little $(l:tfg_ores/ore_basics#processing)extra processing$() they can be worth even more!", - "item": { - "tag": "forge:tools/hammers" - } - }, - { - "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:copper_dust", - "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$().$(br2)To further purify it, throw the dust into some water and wait a few seconds, or right-click a $(thing)Cauldron$() filled with water." - }, - { - "type": "patchouli:crafting", - "title": "Impure Dust", - "recipe": "gtceu:shapeless/crushed_ore_to_dust_copper" - }, - { - "type": "patchouli:spotlight", - "title": "Steam Age", - "text": "Once you have $(thing)Steam machines$(), you can mine everything with a $(thing)Mining Hammer$() - putting Raw ores into a $(thing)Steam Forge Hammer$() or $(thing)Steam Macerator$() gives about the same yield as mining with a Hammer yourself.", - "item": "gtceu:hp_steam_forge_hammer,gtceu:hp_steam_macerator" - }, - { - "type": "patchouli:text", - "text": "Later, when you're in LV, check the LV quests to learn about all the different ore processing machines and extra byproducts they can give you. Remember the $(thing)Macerator$() does not give byproducts until $(thing)HV$()!$(br2)Here's a $(l:https://docs.google.com/spreadsheets/d/1P3Baz4y5vgJ3XrCoNs4l3BXGPiFEPlW7i4taPEWpTB4/edit?usp=sharing)Spreadsheet$() if you prefer to see this section's ore generation data that way." - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_bismuth.json deleted file mode 100644 index 2e3c05e95..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_bismuth.json +++ /dev/null @@ -1,69 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_cassiterite.json deleted file mode 100644 index e85206386..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_cassiterite.json +++ /dev/null @@ -1,50 +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" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_copper.json deleted file mode 100644 index 184c45050..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_copper.json +++ /dev/null @@ -1,92 +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." - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_kaolin.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_kaolin.json deleted file mode 100644 index 2a00dd7ef..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_kaolin.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "name": "Kaolin Clay", - "icon": "tfc:kaolin_clay", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "anchor": "kaolinite", - "text": "Kaolin Clay is required to make $(l:mechanics/fire_clay)Fire Clay$(). It can be found spawning at high altitudes in Plateaus, Old Mountains, Rolling Hills, and Highlands, at a $(l:the_world/climate#temperature)temperature$() of at least 18Β°C, with a $(l:the_world/climate#rainfall)rainfall$() of at least 300mm. The $(thing)Blood Lily$() flower grows on Kaolin clay." - }, - { - "type": "tfc:multimultiblock", - "text": "Generally, go $(thing)South East$() to increase temperature and humidity.", - "multiblocks": [ - { - "pattern": [ - [ - "X" - ], - [ - "Y" - ], - [ - "0" - ] - ], - "mapping": { - "X": "tfc:plant/blood_lily", - "Y": "tfc:kaolin_clay_grass" - } - }, - { - "pattern": [ - [ - "X" - ], - [ - "Y" - ], - [ - "0" - ] - ], - "mapping": { - "X": "tfc:plant/blood_lily", - "Y": "tfc:red_kaolin_clay" - } - }, - { - "pattern": [ - [ - "X" - ], - [ - "Y" - ], - [ - "0" - ] - ], - "mapping": { - "X": "tfc:plant/blood_lily", - "Y": "tfc:white_kaolin_clay" - } - }, - { - "pattern": [ - [ - "X" - ], - [ - "Y" - ], - [ - "0" - ] - ], - "mapping": { - "X": "tfc:plant/blood_lily", - "Y": "tfc:pink_kaolin_clay" - } - } - ] - }, - { - "type": "patchouli:spotlight", - "item": "tfc:powder/kaolinite", - "anchor": "powder", - "text": "Only $(thing)20%$() of Kaolin Clay will turn into $(thing)Kaolinite Powder$(), so it's recommended to bake it on-site using $(l:getting_started/pit_kiln)Pit Kilns$() to save inventory space.$(br2)Bring home around 20 $(thing)Blocks$() of Kaolin Clay as well, for $(l:mechanics/glassworking_applications)Glassworking$() later." - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_sphalerite.json deleted file mode 100644 index d5e82af9c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_sphalerite.json +++ /dev/null @@ -1,69 +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β‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_tetrahedrite.json deleted file mode 100644 index ec900b974..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/tfg_ores/surface_tetrahedrite.json +++ /dev/null @@ -1,69 +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₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/the_world/ores_and_minerals.json b/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/the_world/ores_and_minerals.json deleted file mode 100644 index 2afa99fe9..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/it_it/entries/the_world/ores_and_minerals.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Ores and Minerals", - "category": "tfc:the_world", - "icon": "tfc:ore/normal_hematite", - "pages": [ - { - "type": "patchouli:text", - "text": "This page is here to override the default TFC ores and minerals page.$(br2)Information about ores can be found in the $(l:tfg_ores)Ores in TFG$() category." - } - ], - "read_by_default": true, - "sortnum": 1 -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/fire_clay.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/fire_clay.json index abad8b00f..9683e5dbd 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/fire_clay.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/fire_clay.json @@ -11,12 +11,12 @@ { "type": "patchouli:crafting", "recipe": "tfc:crafting/fire_clay", - "text": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Π³Π»ΠΈΠ½Π° изготавливаСтся ΠΈΠ· ΠΏΠΎΡ€ΠΎΡˆΠΊΠ° $(l:tfg_ores/normal_graphite)Π³Ρ€Π°Ρ„ΠΈΡ‚Π°$(), ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Ρ‘Π½Π½ΠΎΠ³ΠΎ Π² $(l:mechanics/quern)ΠΆΠ΅Ρ€Π½ΠΎΠ²Π΅$(), Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΠΎΡ€ΠΎΡˆΠΊΠ° $(l:tfg_ores/surface_kaolin#powder)ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π°$()" + "text": "ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Π³Π»ΠΈΠ½Π° изготавливаСтся ΠΈΠ· ΠΏΠΎΡ€ΠΎΡˆΠΊΠ° $(l:tfg_ores/earth_vein_index#normal_graphite)Π³Ρ€Π°Ρ„ΠΈΡ‚Π°$(), ΠΈΠ·ΠΌΠ΅Π»ΡŒΡ‡Ρ‘Π½Π½ΠΎΠ³ΠΎ Π² $(l:mechanics/quern)ΠΆΠ΅Ρ€Π½ΠΎΠ²Π΅$(), Π° Ρ‚Π°ΠΊΠΆΠ΅ ΠΏΠΎΡ€ΠΎΡˆΠΊΠ° $(l:tfg_ores/surface_kaolin#powder)ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π°$()" }, { "type": "tfc:heat_recipe", "recipe": "tfc:heating/kaolin_clay", - "text": "ΠŸΠΎΡ€ΠΎΡˆΠΎΠΊ ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π° ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΏΡƒΡ‚Π΅ΠΌ нагрСвания $(l:tfg_ores/surface_kaolin#powder)ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΎΠ²ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹$(). Однако процСсс Π½Π΅ ΠΈΠ΄Π΅Π°Π»Π΅Π½, ΠΈ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ 20% Π³Π»ΠΈΠ½Ρ‹ прСвращаСтся Π² ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ!" + "text": "ΠŸΠΎΡ€ΠΎΡˆΠΎΠΊ ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚Π° ΠΏΠΎΠ»ΡƒΡ‡Π°ΡŽΡ‚ ΠΏΡƒΡ‚Π΅ΠΌ нагрСвания $(l:mechanics/surface_kaolin#powder)ΠΊΠ°ΠΎΠ»ΠΈΠ½ΠΎΠ²ΠΎΠΉ Π³Π»ΠΈΠ½Ρ‹$(). Однако процСсс Π½Π΅ ΠΈΠ΄Π΅Π°Π»Π΅Π½, ΠΈ Ρ‚ΠΎΠ»ΡŒΠΊΠΎ 20% Π³Π»ΠΈΠ½Ρ‹ прСвращаСтся Π² ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ!" }, { "type": "tfc:knapping_recipe", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_kaolin.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/surface_kaolin.json similarity index 98% rename from kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_kaolin.json rename to kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/surface_kaolin.json index 54ee02944..e8a37ff2f 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_kaolin.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/mechanics/surface_kaolin.json @@ -1,7 +1,7 @@ { "name": "ΠšΠ°ΠΎΠ»ΠΈΠ½ΠΈΡ‚ΠΎΠ²Π°Ρ Π³Π»ΠΈΠ½Π°", "icon": "tfc:kaolin_clay", - "category": "tfc:tfg_ores", + "category": "tfc:mechanics", "read_by_default": true, "pages": [ { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_garnet_amethyst.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_garnet_amethyst.json deleted file mode 100644 index b954c9e0b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_garnet_amethyst.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "АмСтист ΠΈ Π³Ρ€Π°Π½Π°Ρ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "minecraft:amethyst_shard", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 230$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 26$(br)Π Π°Π·ΠΌΠ΅Ρ€: 28$(br)Высота: 8$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€, Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π¦Π²Π΅Ρ‚ΡƒΡ‰ΠΈΠΉ амСтист" - }, - { - "type": "patchouli:multiblock", - "name": "АмСтист", - "multiblock": - { - "mapping": { "0": "#forge:ores/amethyst" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 65%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚„Fe" - }, - { - "type": "patchouli:multiblock", - "name": "Опал", - "multiblock": - { - "mapping": { "0": "#forge:ores/opal" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/red_garnet" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠŸΠΈΡ€ΠΎΠΏ, Альмандин, БпасСрит" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_garnet" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Андрадит, Гроссуляр, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_garnet_opal.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_garnet_opal.json deleted file mode 100644 index c771655f1..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_garnet_opal.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:opal_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 220$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 62$(br)Π Π°Π·ΠΌΠ΅Ρ€: 26$(br)Высота: 6$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π¦Π²Π΅Ρ‚ΡƒΡ‰ΠΈΠΉ амСтист" - }, - { - "type": "patchouli:multiblock", - "name": "Опал", - "multiblock": - { - "mapping": { "0": "#forge:ores/opal" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 55%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)" - }, - { - "type": "patchouli:multiblock", - "name": "АмСтист", - "multiblock": - { - "mapping": { "0": "#forge:ores/amethyst" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚„Fe" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/red_garnet" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠŸΠΈΡ€ΠΎΠΏ, Альмандин, БпасСрит" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_garnet" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Андрадит, Гроссуляр, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_gold.json deleted file mode 100644 index 07398acbe..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_gold.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ (Π“Π»ΡƒΠ±ΠΎΠΊΠΎΠ΅)", - "icon": "gtceu:rich_raw_gold", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 260$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.45$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 30$(br)Π Π°Π·ΠΌΠ΅Ρ€: 32$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/gold" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 75%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_limonite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/hematite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/goethite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_hematite.json deleted file mode 100644 index 3de1a829d..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_hematite.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π“Ρ‘Ρ‚ΠΈΡ‚, Π ΡƒΠ±ΠΈΠ½ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_hematite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 220$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 30$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½ΠΎΠ΅ Π—ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/hematite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_limonite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/goethite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/gold" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π ΡƒΠ±ΠΈΠ½", - "multiblock": - { - "mapping": { "0": "#forge:ores/ruby" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π₯Ρ€ΠΎΠΌ, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CrAlβ‚‚O₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_limonite.json deleted file mode 100644 index 4984a3363..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_limonite.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π“Ρ‘Ρ‚ΠΈΡ‚ ΠΈ ΠœΠ°Π»Π°Ρ…ΠΈΡ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_goethite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 240$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 30$(br)Π Π°Π·ΠΌΠ΅Ρ€: 32$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠœΡ€Π°ΠΌΠΎΡ€, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, ΠœΠ°Π»Π°Ρ…ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/goethite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_limonite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/hematite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π»Π°Ρ…ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/malachite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚‚CHβ‚‚Oβ‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_magnetite.json deleted file mode 100644 index 7eea039df..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_magnetite.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "Π₯Ρ€ΠΎΠΌΠΈΡ‚ ΠΈ ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_chromite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 205$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 30$(br)Π Π°Π·ΠΌΠ΅Ρ€: 340$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ, Π₯Ρ€ΠΎΠΌΠΈΡ‚, Π‘Π°ΠΏΡ„ΠΈΡ€" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯Ρ€ΠΎΠΌΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/chromite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 60%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π₯Ρ€ΠΎΠΌ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeCrβ‚‚Oβ‚„" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/magnetite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Fe₃Oβ‚„" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π°Π½Π°Π΄ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/vanadium_magnetite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π–Π΅Π»Π΅Π·ΠΎ, Π’Π°Π½Π°Π΄ΠΈΠΉ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)V" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/gold" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°ΠΏΡ„ΠΈΡ€", - "multiblock": - { - "mapping": { "0": "#forge:ores/sapphire" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_molybdenum.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_molybdenum.json deleted file mode 100644 index c5a1351dd..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_molybdenum.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚ & ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_wulfenite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 245$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.45$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 10$(br)Π Π°Π·ΠΌΠ΅Ρ€: 26$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚, ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚, МолибдСн, ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/wulfenite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 40%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π‘Π²ΠΈΠ½Π΅Ρ†, МолибдСн$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: PbMoOβ‚„$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/molybdenite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: МолибдСн$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MoSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "МолибдСн", - "multiblock": - { - "mapping": { "0": "#forge:ores/molybdenum" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: МолибдСн$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mo" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/powellite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: МолибдСн$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CaMoOβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_naquadah.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_naquadah.json deleted file mode 100644 index 4df310d4c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_naquadah.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "Наквада ΠΈ ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_naquadah", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 310$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - -20$(br)Π Π°Π·ΠΌΠ΅Ρ€: 32$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π‘Π»Π°Π½Π΅Ρ†, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Наквада, ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Наквада", - "multiblock": - { - "mapping": { "0": "#forge:ores/naquadah" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 75%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Наквада$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Nq" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ", - "multiblock": - { - "mapping": { "0": "#forge:ores/plutonium" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pu²³⁹$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_pitchblende.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_pitchblende.json deleted file mode 100644 index 37824d8db..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_pitchblende.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚ ΠΈ Π£Ρ€Π°Π½ΠΈΡ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_uraninite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 220$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.45$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - -20$(br)Π Π°Π·ΠΌΠ΅Ρ€: 24$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π£Ρ€Π°Π½ΠΈΡ‚, Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚$(br2)Π―Π΄Π΅Ρ€Π½ΠΎΠ³ΠΎ Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Π° Π½Π΅Ρ‚, Π½ΠΎ Π΅ΡΡ‚ΡŒ Π΄Ρ€ΡƒΠ³ΠΈΠ΅ примСнСния." - }, - { - "type": "patchouli:multiblock", - "name": "Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/uraninite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π£Ρ€Π°Π½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: UOβ‚‚$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - }, - { - "type": "patchouli:multiblock", - "name": "Π£Ρ€Π°Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pitchblende" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π£Ρ€Π°Π½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (UOβ‚‚)₃ThPb$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_sapphire.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_sapphire.json deleted file mode 100644 index f0e8f4fad..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_sapphire.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "name": "Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:sapphire_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 180$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 26$(br)Π Π°Π·ΠΌΠ΅Ρ€: 28$(br)Высота: 8$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Альмандин, ΠŸΠΈΡ€ΠΎΠΏ, Π‘Π°ΠΏΡ„ΠΈΡ€, Π—Π΅Π»Ρ‘Π½Ρ‹ΠΉ сапфир$(br2)Если Π²Ρ‹ ΠΈΡ‰ΠΈΡ‚Π΅ $(thing)Алюминий$(), Ρ‚ΠΎ Π»ΡƒΡ‡ΡˆΠ΅ Π²Ρ‹Π±Ρ€Π°Ρ‚ΡŒ ΠΆΠΈΠ»Ρƒ $(l:tfg_ores/normal_bauxite)Боксита$().$(br)" - }, - { - "type": "patchouli:multiblock", - "name": "Альмандин", - "anchor": "almandine", - "multiblock": - { - "mapping": { "0": "#forge:ores/almandine" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚Fe₃Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΈΡ€ΠΎΠΏ", - "anchor": "pyrope", - "multiblock": - { - "mapping": { "0": "#forge:ores/pyrope" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚Mg₃Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°ΠΏΡ„ΠΈΡ€", - "multiblock": - { - "mapping": { "0": "#forge:ores/sapphire" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π—Π΅Π»Ρ‘Π½Ρ‹ΠΉ сапфир", - "multiblock": - { - "mapping": { "0": "#forge:ores/green_sapphire" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_scheelite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_scheelite.json deleted file mode 100644 index 56d550692..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_scheelite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_scheelite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 220$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 0$(br)Высота: 28$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π¨Π΅Π΅Π»ΠΈΡ‚, Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚, Π›ΠΈΡ‚ΠΈΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Π¨Π΅Π΅Π»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/scheelite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 45%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ca(WO₃)O" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/tungstate" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ, Π›ΠΈΡ‚ΠΈΠΉ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Liβ‚‚(WO₃)O" - }, - { - "type": "patchouli:multiblock", - "name": "Π›ΠΈΡ‚ΠΈΠΉ", - "multiblock": - { - "mapping": { "0": "#forge:ores/lithium" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π›ΠΈΡ‚ΠΈΠΉ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Li" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_sheldonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_sheldonite.json deleted file mode 100644 index 74aad59ef..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_sheldonite.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚ (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:rich_raw_platinum", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 300$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π°Ρ ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 0$(br)Π Π°Π·ΠΌΠ΅Ρ€: 30$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π‘ΠΎΡ€Π½ΠΈΡ‚, Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚, ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°, Палладий" - }, - { - "type": "patchouli:multiblock", - "name": "Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/cooperite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°, НикСль, Палладий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pt₃NiSPd" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/platinum" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pt" - }, - { - "type": "patchouli:multiblock", - "name": "Палладий", - "multiblock": - { - "mapping": { "0": "#forge:ores/palladium" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Палладий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pt" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΎΡ€Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/bornite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚…FeSβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_topaz.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_topaz.json deleted file mode 100644 index 575e88e68..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/deep_topaz.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин (Π“Π»ΡƒΠ±ΠΎΠΊΠΈΠ΅)", - "icon": "gtceu:topaz_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 260$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 26$(br)Π Π°Π·ΠΌΠ΅Ρ€: 28$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π’ΠΎΠΏΠ°Π·, Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·, Π₯алькозин, Π‘ΠΎΡ€Π½ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΠΎΠΏΠ°Π·", - "multiblock": - { - "mapping": { "0": "#forge:ores/topaz" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, Π€Ρ‚ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚SiFHβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·", - "multiblock": - { - "mapping": { "0": "#forge:ores/blue_topaz" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, Π€Ρ‚ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚SiFβ‚‚Hβ‚‚O₆" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯алькозин", - "multiblock": - { - "mapping": { "0": "#forge:ores/chalcocite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚‚S" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΎΡ€Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/bornite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚…FeSβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_ore_index.json new file mode 100644 index 000000000..a0b6b8e6f --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_ore_index.json @@ -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)Алмаз: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Алунит: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)Альмандин: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)Алюминий: $(l:tfg_ores/earth_vein_index#normal_bauxite)25%$(/l)$()$(li)АмСтист: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)Апатит: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)АсбСст: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)20%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/earth_vein_index#normal_monazite)50%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)Боксит: $(l:tfg_ores/earth_vein_index#normal_bauxite)45%$(/l), $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)Π‘ΠΎΡ€Π½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_sheldonite)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘ΡƒΡ€Π°: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()$(li)Π’Π°Π½Π°Π΄ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)15%$(/l)$()$(li)Висмут: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)90%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)40%$(/l)$()$(li)Π“Π°Π»Π΅Π½Π°: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)Π“Ρ‘Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)Гипс: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()$(li)Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Π“Ρ€Π°Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Π“Ρ€Π°Ρ„ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Гроссуляр: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()$(li)Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()$(li)Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)15%$(/l)$()$(li)Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l)$()$(li)Π—Π΅Π»Ρ‘Π½Ρ‹ΠΉ сапфир: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l)$()$(li)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_bauxite)30%$(/l)$()$(li)Π˜ΡΡ‚ΠΈΠ½Π½Ρ‹ΠΉ ΠΊΠ²Π°Ρ€Ρ†: $(l:tfg_ores/earth_vein_index#normal_quartz)25%$(/l)$()$(li)ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)КамСнная соль: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)54%$(/l)$()$(li)ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)Π›ΠΈΡ‚ΠΈΠΉ: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)5%$(/l)$()$(li)ΠœΠ°Π»Π°Ρ…ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l)$()$(li)МолибдСн: $(l:tfg_ores/earth_vein_index#deep_molybdenum)15%$(/l)$()$(li)ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)30%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_monazite)25%$(/l)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)НСодим: $(l:tfg_ores/earth_vein_index#normal_monazite)25%$(/l)$()$(li)НСфтСносный пСсок: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)НикСль: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Оливин: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/earth_vein_index#normal_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)40%$(/l)$()$(li)Опал: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)Палладий: $(l:tfg_ores/earth_vein_index#deep_sheldonite)15%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)ΠŸΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΠΏ: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/earth_vein_index#deep_sheldonite)25%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)15%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Π Π΅Π°Π»ΡŒΠ³Π°Ρ€: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)РСдстоун: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Π ΡƒΠ±ΠΈΠ½: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)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)Бамородная МСдь: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Бамородная Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l)$()$(li)Π‘Π°ΠΏΡ„ΠΈΡ€: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)5%$(/l)$()$(li)Π‘Π²ΠΈΠ½Π΅Ρ†: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Π‘Π΅Π»ΠΈΡ‚Ρ€Π°: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)Π‘Π΅Ρ€Π°: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)Блюда: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()$(li)БмСктичСская Π³Π»ΠΈΠ½Π°: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Боль: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)БпасСрит: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Вальк: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)ВСтраэдрит: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€ΠΈΠΉ: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Уголь: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Π₯алькозин: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_magnetite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Π¦Π΅ΠΎΠ»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Π¦ΠΈΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)Π¨Π΅Π΅Π»ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_sheldonite)25%$(/l)$()$(li)Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()", + "type": "patchouli:text" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_vein_index.json new file mode 100644 index 000000000..c3a3ffcfb --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/earth_vein_index.json @@ -0,0 +1,3867 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "Earth Vein Index", + "icon": "tfc:ore/normal_native_copper/chalk", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(thing)Earth$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns on, and more.", + "title": "Earth Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)АмСтист ΠΈ Π³Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_apatite)Апатит ΠΈ ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_monazite)БастнСзит ΠΈ ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_olivine)Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚ ΠΈ Оливин$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bauxite)Боксит ΠΈ Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bismuthinite)Висмут (ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_bismuthinite)Висмут (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚ & ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnierite)Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚ ΠΈ ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π“Ρ‘Ρ‚ΠΈΡ‚, Π ΡƒΠ±ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_limonite)Π“Ρ‘Ρ‚ΠΈΡ‚ ΠΈ ΠœΠ°Π»Π°Ρ…ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnet_tin)Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ ΠΈ ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_graphite)Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_gold)Π—ΠΎΠ»ΠΎΡ‚ΠΎ (Π“Π»ΡƒΠ±ΠΎΠΊΠΎΠ΅)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_gold)Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚ ΠΈ Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄ ΠΈ Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_cassiterite)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_cassiterite)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_quartz)ΠšΠ²Π°Ρ€Ρ†Ρ‹$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lapis)Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_limonite)Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_magnetite)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ ΠΈ Π’Π°Π½Π°Π΄ΠΈΠΉ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_manganese)ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ† ΠΈ Π’Π°Π½Ρ‚Π°Π»$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_copper)МСдь ΠΈ Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_basaltic_sands)ΠœΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ пСски$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь, Вальк ΠΈ Π’Ρ€ΠΎΠ½Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_oilsands)НСфтСносный пСсок$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)РСдстоун, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ ΠΈ Π ΡƒΠ±ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Π‘Π΅Π»ΠΈΡ‚Ρ€Π° ΠΈ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, Π“Π°Π»Π΅Π½Π° ΠΈ Π‘Π²ΠΈΠ½Π΅Ρ†$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Π‘ΠΎΠ»ΠΈ ΠΈ Π‘ΡƒΡ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ ΠΈ Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ ΠΈ Π‘Π΅Ρ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)ВСтраэдрит (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)ВСтраэдрит (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_coal)Уголь$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚ ΠΈ Π£Ρ€Π°Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚ ΠΈ Π Π΅Π°Π»ΡŒΠ³Π°Ρ€$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Π₯Ρ€ΠΎΠΌΠΈΡ‚ ΠΈ ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 230$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 26$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Высота$(): 8$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Аспидный сланСц, ГнСйс, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, ΠœΡ€Π°ΠΌΠΎΡ€, Π‘Π»Π°Π½Π΅Ρ†, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "АмСтист ΠΈ Π³Ρ€Π°Π½Π°Ρ‚", + "type": "patchouli:text", + "anchor": "deep_garnet_amethyst" + }, + { + "Type": "patchouli:multiblock", + "name": "АмСтист", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 65%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Андрадит, Гроссуляр, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Опал", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΡ€Π΅ΠΌΠ½ΠΈΠΉ, ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠŸΠΈΡ€ΠΎΠΏ, Альмандин, БпасСрит", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 34$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Апатит ΠΈ ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", + "type": "patchouli:text", + "anchor": "normal_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Апатит", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Ѐосфор$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚…(POβ‚„)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Ѐосфор$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃(POβ‚„)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Ниобий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚‚Nbβ‚‚O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 185$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 50$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚", + "title": "БастнСзит ΠΈ ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "БастнСзит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π¦Π΅Ρ€ΠΈΠΉ, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Ѐосфор, РСдкая зСмля$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ?(POβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "НСодим", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): НСодим$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 180$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -40 β€” 30$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 26$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚ ΠΈ Оливин", + "type": "patchouli:text", + "anchor": "normal_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий, Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Оливин", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний, Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mgβ‚‚Fe(SiOβ‚‚)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 185$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "Боксит ΠΈ Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_bauxite" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Π’ΠΈΡ‚Π°Π½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алюминий", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "Висмут (ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", + "type": "patchouli:text", + "anchor": "normal_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Висмут", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 80%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Висмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 11%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 9%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 140$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 60 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "Висмут (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Висмут", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 90%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Висмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 7%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 3%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 245$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 10$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 26$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚ & ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "deep_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π²ΠΈΠ½Π΅Ρ†, МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MoSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "МолибдСн", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mo", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 70$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Π°Π±Π±Ρ€ΠΎ, Π”ΠΈΠΎΡ€ΠΈΡ‚$(br2)НС получаСтся Π½Π°ΠΉΡ‚ΠΈ это? Π“Π°Π±Π±Ρ€ΠΎ всСгда гСнСрируСтся ΠΏΠΎΠ΄ $(thing)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠΌ$(), Π° Π½Π° Π΄Π½Π΅ ΠΎΠΊΠ΅Π°Π½Π° Π»Π΅Π³ΠΊΠΎ ΠΎΠ±Π½Π°Ρ€ΡƒΠΆΠΈΡ‚ΡŒ столбы, Π²Π΅Π΄ΡƒΡ‰ΠΈΠ΅ ΠΊ Π½ΠΈΠΆΠ½Π΅ΠΌΡƒ слою!", + "title": "Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚ ΠΈ ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚, ΠœΡ‹ΡˆΡŒΡΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CoAsS$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "НикСль", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 210$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 30$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 30$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π“Ρ‘Ρ‚ΠΈΡ‚, Π ΡƒΠ±ΠΈΠ½", + "type": "patchouli:text", + "anchor": "deep_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π₯Ρ€ΠΎΠΌ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 240$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 30$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 32$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠœΡ€Π°ΠΌΠΎΡ€", + "title": "Π“Ρ‘Ρ‚ΠΈΡ‚ ΠΈ ΠœΠ°Π»Π°Ρ…ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "deep_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π»Π°Ρ…ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 270$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -40 β€” 64$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Аргиллит, Аспидный сланСц, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, ΠœΡ€Π°ΠΌΠΎΡ€, Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π»Π°Π½Π΅Ρ†, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ ΠΈ ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "type": "patchouli:text", + "anchor": "normal_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Альмандин, Андрадит, Гроссуляр, ΠŸΠΈΡ€ΠΎΠΏ, БпасСрит, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "АсбСст", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚‚Hβ‚„O₉$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 80$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” -16$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 16$(br)$(thing)Высота$(): 6$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Аргиллит, Аспидный сланСц, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, ΠœΡ€Π°ΠΌΠΎΡ€, Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π»Π°Π½Π΅Ρ†, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз", + "type": "patchouli:text", + "anchor": "normal_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Ρ„ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): $(l:mechanics/fire_clay)ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Π³Π»ΠΈΠ½Π°$(), Π“Ρ€Π°Ρ„Π΅Π½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Уголь", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, рСктификация$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алмаз", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΠΈ, ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ· AE2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 260$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 30$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 32$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ (Π“Π»ΡƒΠ±ΠΎΠΊΠΎΠ΅)", + "type": "patchouli:text", + "anchor": "deep_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 75%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Высота$(): 12$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚ ΠΈ Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 55%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 250$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): трубчатая ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 50$(br)$(thing)Высота$(): 60$(br)$(thing)Радиус$(): 10$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄ ΠΈ Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ", + "type": "patchouli:text", + "anchor": "normal_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ уровня MV, ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹ (Вэг)$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be₃Alβ‚‚Si₆Oβ‚β‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Π­Π½Π΄Π΅Ρ€-ΠΆΠ΅ΠΌΡ‡ΡƒΠ³$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΡ€ΠΈΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚", + "title": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", + "type": "patchouli:text", + "anchor": "normal_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 135$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 60 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚", + "title": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 150$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 100$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 40$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π‘Π»Π°Π½Π΅Ρ†", + "title": "ΠšΠ²Π°Ρ€Ρ†Ρ‹", + "type": "patchouli:text", + "anchor": "normal_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 54%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ уровня LV$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π˜ΡΡ‚ΠΈΠ½Π½Ρ‹ΠΉ ΠΊΠ²Π°Ρ€Ρ†", + "multiblock": { + "mapping": { + "0": "#forge:ores/certus_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Applied Energistics 2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π°Ρ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): BaSOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -60 β€” 10$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Натрий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Натрий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚, ΠŸΠΈΡ€ΠΈΡ‚, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 190$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠœΡ€Π°ΠΌΠΎΡ€", + "title": "Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π»Π°Ρ…ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 200$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ ΠΈ Π’Π°Π½Π°Π΄ΠΈΠΉ", + "type": "patchouli:text", + "anchor": "normal_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 63%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Π°Π΄ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 22%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Π’Π°Π½Π°Π΄ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 9%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Ρ€ΠΎΠΌΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 4%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π₯Ρ€ΠΎΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeCrβ‚‚Oβ‚„$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 195$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Аргиллит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π»Π°Π½Π΅Ρ†", + "title": "ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ† ΠΈ Π’Π°Π½Ρ‚Π°Π»", + "type": "patchouli:text", + "anchor": "normal_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "Гроссуляр", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 37%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃Alβ‚‚Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "БпасСрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 12%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†, Π’Π°Π½Ρ‚Π°Π»$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnTaβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 85$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "МСдь ΠΈ Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная МСдь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 65%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 48$(br)$(thing)Высота$(): 9$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Ρ€Π°Π½ΠΈΡ‚", + "title": "ΠœΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ пСски", + "type": "patchouli:text", + "anchor": "normal_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "БмСктичСская Π³Π»ΠΈΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гипс", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): АлСбастр (ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΊΡ€Π°ΡΠΈΡ‚ΡŒ) ΠΈ Π΅Π³ΠΎ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaS(Hβ‚‚O)β‚‚Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 190$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -40 β€” 56$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 36$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚", + "title": "ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь, Вальк ΠΈ Π’Ρ€ΠΎΠ½Π°", + "type": "patchouli:text", + "anchor": "normal_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вальк", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΎΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 185$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 70$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 55$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "НСфтСносный пСсок", + "type": "patchouli:text", + "anchor": "normal_oilsands" + }, + { + "Type": "patchouli:multiblock", + "name": "НСфтСносный пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 100%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 62$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 26$(br)$(thing)Высота$(): 6$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚", + "type": "patchouli:text", + "anchor": "deep_garnet_opal" + }, + { + "Type": "patchouli:multiblock", + "name": "Опал", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 55%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΡ€Π΅ΠΌΠ½ΠΈΠΉ, ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "АмСтист", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Андрадит, Гроссуляр, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠŸΠΈΡ€ΠΎΠΏ, Альмандин, БпасСрит", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 100$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Ρ€Π°Π½ΠΈΡ‚$(br2)НС получаСтся Π½Π°ΠΉΡ‚ΠΈ это? На Π΄Π½Π΅ ΠΎΠΊΠ΅Π°Π½Π° Π»Π΅Π³ΠΊΠΎ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ красноС свСчСниС!", + "title": "РСдстоун, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ ΠΈ Π ΡƒΠ±ΠΈΠ½", + "type": "patchouli:text", + "anchor": "normal_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "РСдстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): РСдстоун$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π₯Ρ€ΠΎΠΌ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π Ρ‚ΡƒΡ‚ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 180$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 26$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 28$(br)$(thing)Высота$(): 8$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин", + "type": "patchouli:text", + "anchor": "deep_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Альмандин", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 38%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΎΠΏ", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 27%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„ΠΈΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 16%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π—Π΅Π»Ρ‘Π½Ρ‹ΠΉ сапфир", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 16%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 210$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π‘Π΅Π»ΠΈΡ‚Ρ€Π° ΠΈ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "type": "patchouli:text", + "anchor": "normal_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Π»ΠΈΡ‚Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Азот$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, РСдстоун$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алунит", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Siβ‚‚H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 165$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 40$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚", + "title": "Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, Π“Π°Π»Π΅Π½Π° ΠΈ Π‘Π²ΠΈΠ½Π΅Ρ†", + "type": "patchouli:text", + "anchor": "normal_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 55%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Π»Π΅Π½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbS$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 175$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 30 β€” 70$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Высота$(): 4$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, Π‘Π»Π°Π½Π΅Ρ†", + "title": "Π‘ΠΎΠ»ΠΈ ΠΈ Π‘ΡƒΡ€Π°", + "type": "patchouli:text", + "anchor": "normal_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "КамСнная соль", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Π₯Π»ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боль", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий, Π₯Π»ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Π›ΠΈΡ‚ΠΈΠΉ, Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΡƒΡ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий, Π‘ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 180$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.375$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 20 β€” 60$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 35$(br)$(thing)Высота$(): 6$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ ΠΈ Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_spodumene" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π›ΠΈΡ‚ΠΈΠΉ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боль", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий, Π₯Π»ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "КамСнная соль", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Π₯Π»ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Π›ΠΈΡ‚ΠΈΠΉ, Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Аспидный сланСц, Π‘Π°Π·Π°Π»ΡŒΡ‚, ГнСйс, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π ΠΈΠΎΠ»ΠΈΡ‚, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 145$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 60 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Аспидный сланСц, Π‘Π°Π·Π°Π»ΡŒΡ‚, ГнСйс, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π ΠΈΠΎΠ»ΠΈΡ‚, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ ΠΈ Π‘Π΅Ρ€Π°", + "type": "patchouli:text", + "anchor": "surface_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 55%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -32 β€” 75$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "ВСтраэдрит (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", + "type": "patchouli:text", + "anchor": "normal_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "ВСтраэдрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная МСдь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘ΡƒΡ€ΡŒΠΌΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 140$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 60 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "ВСтраэдрит (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "ВСтраэдрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная МСдь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘ΡƒΡ€ΡŒΠΌΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 260$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 26$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 28$(br)$(thing)Высота$(): 7$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин", + "type": "patchouli:text", + "anchor": "deep_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFβ‚‚Hβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFHβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯алькозин", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 215$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 60$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "Уголь", + "type": "patchouli:text", + "anchor": "normal_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Уголь", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 100%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, рСктификация$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” -20$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 24$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚ ΠΈ Π£Ρ€Π°Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "deep_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π£Ρ€Π°Π½, Π’ΠΎΡ€ΠΈΠΉ, Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (UOβ‚‚)₃ThPb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π£Ρ€Π°Π½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): UOβ‚‚$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 200$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 20 β€” 217$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π ΠΈΠΎΠ»ΠΈΡ‚", + "title": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚ ΠΈ Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", + "type": "patchouli:text", + "anchor": "surface_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 61%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¦Π΅ΠΎΠ»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/zeolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 16%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaCaβ‚„Si₂₇Al₉(Hβ‚‚O)β‚‚β‚ˆO₇₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 16%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠœΡ‹ΡˆΡŒΡΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Asβ‚„Sβ‚„$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 205$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 30$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 34$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аргиллит, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл, Π‘Π»Π°Π½Π΅Ρ†", + "title": "Π₯Ρ€ΠΎΠΌΠΈΡ‚ ΠΈ ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "deep_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Ρ€ΠΎΠΌΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π₯Ρ€ΠΎΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeCrβ‚‚Oβ‚„$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Π°Π΄ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Π’Π°Π½Π°Π΄ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„ΠΈΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 190$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 210$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 36$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит", + "type": "patchouli:text", + "anchor": "normal_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¦ΠΈΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiOβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Блюда", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Si₃Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π¦Π΅Π·ΠΈΠΉ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 0$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 20$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚", + "title": "Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚", + "type": "patchouli:text", + "anchor": "deep_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Π΅Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ, Π›ΠΈΡ‚ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Liβ‚‚(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›ΠΈΡ‚ΠΈΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π›ΠΈΡ‚ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 300$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): -64 β€” 0$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 30$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΡ€Π°ΠΌΠΎΡ€, Π€ΠΈΠ»Π»ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц", + "title": "Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "deep_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°, НикСль, Палладий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Палладий", + "multiblock": { + "mapping": { + "0": "#forge:ores/palladium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Палладий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/hazards.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/hazards.json index bd2b5c60c..92418ecc6 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/hazards.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/hazards.json @@ -1,6 +1,6 @@ { "name": "ΠŸΡ€ΠΎΡ‚ΠΈΠ²ΠΎΠ΄Π΅ΠΉΡΡ‚Π²ΠΈΠ΅ ядовитым Ρ€ΡƒΠ΄Π°ΠΌ", - "icon": "gtceu:hazmat_headpiece", + "icon": "createdeco:decal_skull", "category": "tfc:tfg_ores", "priority": true, "sortnum": 1, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_ore_index.json new file mode 100644 index 000000000..8e7dab160 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_ore_index.json @@ -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)Алмаз: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Алунит: $(l:tfg_ores/nether_vein_index#nether_saltpeter)15%$(/l)$()$(li)Альмандин: $(l:tfg_ores/nether_vein_index#nether_sapphire)38%$(/l)$()$(li)Алюминий: $(l:tfg_ores/nether_vein_index#nether_bauxite)25%$(/l)$()$(li)АмСтист: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)Антрацит: $(l:tfg_ores/nether_vein_index#nether_anthracite)100%$(/l)$()$(li)Апатит: $(l:tfg_ores/nether_vein_index#nether_apatite)50%$(/l)$()$(li)АсбСст: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_quartz)20%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/nether_vein_index#nether_monazite)50%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_olivine)35%$(/l)$()$(li)Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ: $(l:tfg_ores/nether_vein_index#nether_beryllium)35%$(/l)$()$(li)Боксит: $(l:tfg_ores/nether_vein_index#nether_bauxite)45%$(/l), $(l:tfg_ores/nether_vein_index#nether_mica)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘ΠΎΡ€Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sheldonite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_topaz)15%$(/l)$()$(li)Π’Π°Π½Π°Π΄ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)15%$(/l)$()$(li)Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)40%$(/l)$()$(li)Π“Π°Π»Π΅Π½Π°: $(l:tfg_ores/nether_vein_index#nether_silver)30%$(/l)$()$(li)Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)30%$(/l)$()$(li)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_hematite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)5%$(/l)$()$(li)Π“Ρ‘Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()$(li)Гипс: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)15%$(/l)$()$(li)Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/nether_vein_index#nether_lubricant)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_olivine)15%$(/l)$()$(li)Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)Π“Ρ€Π°Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l)$()$(li)Π“Ρ€Π°Ρ„ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/nether_vein_index#nether_manganese)37%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()$(li)Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()$(li)Π—Π΅Π»Ρ‘Π½Ρ‹ΠΉ сапфир: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l)$()$(li)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄: $(l:tfg_ores/nether_vein_index#nether_beryllium)50%$(/l)$()$(li)Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_bauxite)30%$(/l)$()$(li)ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_cassiterite)40%$(/l)$()$(li)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()$(li)ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)20%$(/l)$()$(li)ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)35%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Π›ΠΈΡ‚ΠΈΠΉ: $(l:tfg_ores/nether_vein_index#nether_scheelite)20%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)5%$(/l)$()$(li)ΠœΠ°Π»Π°Ρ…ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)20%$(/l)$()$(li)МолибдСн: $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)30%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()$(li)Наквада: $(l:tfg_ores/nether_vein_index#nether_naquadah)75%$(/l)$()$(li)НСзСр-ΠΊΠ²Π°Ρ€Ρ†: $(l:tfg_ores/nether_vein_index#nether_quartz)54%$(/l)$()$(li)НСодим: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)НикСль: $(l:tfg_ores/nether_vein_index#nether_garnierite)10%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Оливин: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)Опал: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)Палладий: $(l:tfg_ores/nether_vein_index#nether_sheldonite)15%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_lubricant)15%$(/l)$()$(li)ΠŸΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sulfur)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)10%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΠΏ: $(l:tfg_ores/nether_vein_index#nether_sapphire)27%$(/l)$()$(li)ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/nether_vein_index#nether_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_sheldonite)25%$(/l)$()$(li)ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ: $(l:tfg_ores/nether_vein_index#nether_naquadah)25%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_mica)15%$(/l)$()$(li)РСдстоун: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π ΡƒΠ±ΠΈΠ½: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ: $(l:tfg_ores/nether_vein_index#nether_gold)75%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)5%$(/l)$()$(li)Бамородная МСдь: $(l:tfg_ores/nether_vein_index#nether_copper)65%$(/l), $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)30%$(/l)$()$(li)Бамородная Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Π‘Π°ΠΏΡ„ΠΈΡ€: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)5%$(/l)$()$(li)Π‘Π²ΠΈΠ½Π΅Ρ†: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Π‘Π΅Π»ΠΈΡ‚Ρ€Π°: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)Π‘Π΅Ρ€Π°: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()$(li)Бильвин: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)Блюда: $(l:tfg_ores/nether_vein_index#nether_mica)25%$(/l)$()$(li)БмСктичСская Π³Π»ΠΈΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l)$()$(li)Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)БпасСрит: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Вальк: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)ВСтраэдрит: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€ΠΈΠΉ: $(l:tfg_ores/nether_vein_index#nether_beryllium)15%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Уголь: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)Π₯алькозин: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π₯Ρ€ΠΎΠΌΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)60%$(/l)$()$(li)Π¦ΠΈΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_mica)35%$(/l)$()$(li)Π¨Π΅Π΅Π»ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sheldonite)25%$(/l)$()$(li)Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()", + "type": "patchouli:text" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_vein_index.json new file mode 100644 index 000000000..f5fca839c --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/nether_vein_index.json @@ -0,0 +1,2853 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "The Beneath Vein Index", + "icon": "gtceu:pyroxenite_nether_quartz_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(thing)The Beneath$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns on, and more.", + "title": "The Beneath Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_garnet)АмСтист, Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_anthracite)Антрацит$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_apatite)Апатит ΠΈ ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_monazite)БастнСзит ΠΈ ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_olivine)Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚ ΠΈ Оливин$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_bauxite)Боксит ΠΈ Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_molybdenum)Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚ & ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnierite)Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚ ΠΈ ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_goethite)Π“Ρ‘Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnet_tin)Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ ΠΈ ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_graphite)Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_gold)Π—ΠΎΠ»ΠΎΡ‚ΠΎ ΠΈ Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_beryllium)Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄ ΠΈ Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_cassiterite)ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lapis)Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_manganese)ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ† ΠΈ Π’Π°Π½Ρ‚Π°Π»$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_copper)МСдь ΠΈ Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_basaltic_sands)ΠœΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ пСски$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lubricant)ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь, Вальк ΠΈ Π’Ρ€ΠΎΠ½Π°$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_naquadah)Наквада ΠΈ ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_quartz)НСзСр-ΠΊΠ²Π°Ρ€Ρ†$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_redstone)РСдстоун, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ ΠΈ Π ΡƒΠ±ΠΈΠ½$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sapphire)Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_saltpeter)Π‘Π΅Π»ΠΈΡ‚Ρ€Π° ΠΈ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sulfur)Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_silver)Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, Π“Π°Π»Π΅Π½Π° ΠΈ Π‘Π²ΠΈΠ½Π΅Ρ†$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sylvite)Бильвин$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_tetrahedrite)ВСтраэдрит$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_topaz)Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_pitchblende)Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚ ΠΈ Π£Ρ€Π°Π½ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_magnetite)Π₯Ρ€ΠΎΠΌΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_mica)Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_scheelite)Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 230$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br)$(thing)Высота$(): 8$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "АмСтист, Опал ΠΈ Π³Ρ€Π°Π½Π°Ρ‚", + "type": "patchouli:text", + "anchor": "nether_garnet" + }, + { + "Type": "patchouli:multiblock", + "name": "АмСтист", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 38%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Опал", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 38%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΡ€Π΅ΠΌΠ½ΠΈΠΉ, ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 14%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Андрадит, Гроссуляр, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΡ€Π°ΡΠ½Ρ‹ΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 9%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠŸΠΈΡ€ΠΎΠΏ, Альмандин, БпасСрит", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 35$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.8$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 48 β€” 127$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 13$(br)$(thing)Высота$(): 4$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚", + "title": "Антрацит", + "type": "patchouli:text", + "anchor": "nether_anthracite" + }, + { + "Type": "patchouli:multiblock", + "name": "Антрацит", + "multiblock": { + "mapping": { + "0": "beneath:ore/nether_cursecoal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 100%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 48 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 39$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс", + "title": "Апатит ΠΈ ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", + "type": "patchouli:text", + "anchor": "nether_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Апатит", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Ѐосфор$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚…(POβ‚„)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Ѐосфор$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃(POβ‚„)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Ниобий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚‚Nbβ‚‚O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 185$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 24 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "БастнСзит ΠΈ ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "БастнСзит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π¦Π΅Ρ€ΠΈΠΉ, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Ѐосфор, РСдкая зСмля$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ?(POβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "НСодим", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): НСодим$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 250$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 24 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 31$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚ ΠΈ Оливин", + "type": "patchouli:text", + "anchor": "nether_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий, Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Оливин", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний, Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mgβ‚‚Fe(SiOβ‚‚)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 185$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Боксит ΠΈ Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_bauxite" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Π’ΠΈΡ‚Π°Π½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алюминий", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 245$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 31$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚ & ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π²ΠΈΠ½Π΅Ρ†, МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ»ΠΈΠ±Π΄Π΅Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MoSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "МолибдСн", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mo", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ²Π΅Π»Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МолибдСн$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 16 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Π°Π±Π±Ρ€ΠΎ, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚ ΠΈ ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚, ΠœΡ‹ΡˆΡŒΡΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CoAsS$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "НикСль", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 35$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π₯Ρ€ΠΎΠΌ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 240$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 37$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_goethite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π»Π°Ρ…ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 270$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 24 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ ΠΈ ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "type": "patchouli:text", + "anchor": "nether_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Альмандин, Андрадит, Гроссуляр, ΠŸΠΈΡ€ΠΎΠΏ, БпасСрит, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "АсбСст", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚‚Hβ‚„O₉$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 120$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): трубчатая ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Высота$(): 60$(br)$(thing)Радиус$(): 12$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз", + "type": "patchouli:text", + "anchor": "nether_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Ρ„ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): $(l:mechanics/fire_clay)ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Π³Π»ΠΈΠ½Π°$(), Π“Ρ€Π°Ρ„Π΅Π½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алмаз", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΠΈ, ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ· AE2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Уголь", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, рСктификация$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 260$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 37$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ ΠΈ Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 75%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 250$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): трубчатая ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Высота$(): 60$(br)$(thing)Радиус$(): 12$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄ ΠΈ Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ", + "type": "patchouli:text", + "anchor": "nether_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ уровня MV, ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹ (Вэг)$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be₃Alβ‚‚Si₆Oβ‚β‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Π­Π½Π΄Π΅Ρ€-ΠΆΠ΅ΠΌΡ‡ΡƒΠ³$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΡ€ΠΈΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΡ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 40$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Натрий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Натрий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚, ΠŸΠΈΡ€ΠΈΡ‚, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 195$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ† ΠΈ Π’Π°Π½Ρ‚Π°Π»", + "type": "patchouli:text", + "anchor": "nether_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "Гроссуляр", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 37%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃Alβ‚‚Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "БпасСрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 12%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†, Π’Π°Π½Ρ‚Π°Π»$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnTaβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "МСдь ΠΈ Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная МСдь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 65%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 48 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 48$(br)$(thing)Высота$(): 9$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Ρ€Π°Π½ΠΈΡ‚", + "title": "ΠœΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ пСски", + "type": "patchouli:text", + "anchor": "nether_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "БмСктичСская Π³Π»ΠΈΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гипс", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): АлСбастр (ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΊΡ€Π°ΡΠΈΡ‚ΡŒ) ΠΈ Π΅Π³ΠΎ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaS(Hβ‚‚O)β‚‚Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 250$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 41$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь, Вальк ΠΈ Π’Ρ€ΠΎΠ½Π°", + "type": "patchouli:text", + "anchor": "nether_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вальк", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): НикСль$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΎΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 10%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Натрий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 250$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 38$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 32$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Наквада ΠΈ ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ", + "type": "patchouli:text", + "anchor": "nether_naquadah" + }, + { + "Type": "patchouli:multiblock", + "name": "Наквада", + "multiblock": { + "mapping": { + "0": "#forge:ores/naquadah" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 75%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Наквада, Π’Ρ€ΠΈΡ‚Π°Π½ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Nq", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/plutonium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠŸΠ»ΡƒΡ‚ΠΎΠ½ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pu²³⁹$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 150$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "НСзСр-ΠΊΠ²Π°Ρ€Ρ†", + "type": "patchouli:text", + "anchor": "nether_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "НСзСр-ΠΊΠ²Π°Ρ€Ρ†", + "multiblock": { + "mapping": { + "0": "#forge:ores/nether_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 54%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Applied Energistics 2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ уровня LV$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π°Ρ€ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): BaSOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π“Ρ€Π°Π½ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "РСдстоун, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ ΠΈ Π ΡƒΠ±ΠΈΠ½", + "type": "patchouli:text", + "anchor": "nether_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "РСдстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): РСдстоун$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π₯Ρ€ΠΎΠΌ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π Ρ‚ΡƒΡ‚ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 180$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 33$(br)$(thing)Высота$(): 8$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π‘Π°ΠΏΡ„ΠΈΡ€ ΠΈ Альмандин", + "type": "patchouli:text", + "anchor": "nether_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Альмандин", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 38%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΎΠΏ", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 27%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Магний$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„ΠΈΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 16%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π—Π΅Π»Ρ‘Π½Ρ‹ΠΉ сапфир", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 16%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 210$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π‘Π΅Π»ΠΈΡ‚Ρ€Π° ΠΈ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "type": "patchouli:text", + "anchor": "nether_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Π»ΠΈΡ‚Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Азот$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, РСдстоун$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алунит", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Siβ‚‚H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 165$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 50$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 160$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 24 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, Π“Π°Π»Π΅Π½Π° ΠΈ Π‘Π²ΠΈΠ½Π΅Ρ†", + "type": "patchouli:text", + "anchor": "nether_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Π»Π΅Π½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbS$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 75$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.6$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 64$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 17$(br)$(thing)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Бильвин", + "type": "patchouli:text", + "anchor": "nether_sylvite" + }, + { + "Type": "patchouli:multiblock", + "name": "Бильвин", + "multiblock": { + "mapping": { + "0": "beneath:ore/blackstone_sylvite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 100%$(br)$(thing)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для$(): УдобрСния$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 40%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π‘Π΅Ρ€Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 170$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, ГнСйс, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "ВСтраэдрит", + "type": "patchouli:text", + "anchor": "nether_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "ВСтраэдрит", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная МСдь", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 30%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π‘ΡƒΡ€ΡŒΠΌΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 180$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): дискообразная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 33$(br)$(thing)Высота$(): 7$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π’ΠΎΠΏΠ°Π· ΠΈ Π₯алькозин", + "type": "patchouli:text", + "anchor": "nether_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΈΠ½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFβ‚‚Hβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFHβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯алькозин", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 29$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚ ΠΈ Π£Ρ€Π°Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π£Ρ€Π°Π½, Π’ΠΎΡ€ΠΈΠΉ, Π‘Π²ΠΈΠ½Π΅Ρ†$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (UOβ‚‚)₃ThPb$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½ΠΈΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 50%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π£Ρ€Π°Π½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): UOβ‚‚$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 205$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 39$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π₯Ρ€ΠΎΠΌΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Ρ€ΠΎΠΌΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 60%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π₯Ρ€ΠΎΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeCrβ‚‚Oβ‚„$(br)$(thing)Π―Π΄ΠΎΠ²ΠΈΡ‚$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Π°Π΄ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π–Π΅Π»Π΅Π·ΠΎ, Π’Π°Π½Π°Π΄ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Бамородная Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): Π–Π΅Π»Π΅Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„ΠΈΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 5%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 220$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 32 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 41$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит", + "type": "patchouli:text", + "anchor": "nether_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¦ΠΈΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiOβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Блюда", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Калий, Алюминий, Π€Ρ‚ΠΎΡ€$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Si₃Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π¦Π΅Π·ΠΈΠΉ, Алюминий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 180$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 25$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Аспидный сланСц, Π“Π°Π±Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚", + "title": "Π¨Π΅Π΅Π»ΠΈΡ‚ ΠΈ Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚", + "type": "patchouli:text", + "anchor": "nether_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Π΅Π»ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 45%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΠ°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ, Π›ΠΈΡ‚ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Liβ‚‚(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›ΠΈΡ‚ΠΈΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 20%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Π›ΠΈΡ‚ΠΈΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ$(): 250$(br)$(thing)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠ΄$(): кластСрная ΠΆΠΈΠ»Π°$(br)$(thing)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ$(): 0 β€” 128$(br)$(thing)Π Π°Π·ΠΌΠ΅Ρ€$(): 35$(br2)$(thing)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΠΈΠ³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΠΈΡ€ΠΎΠΊΡΠ΅Π½ΠΈΡ‚, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚ ΠΈ Π‘ΠΎΡ€Π½ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 35%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): МСдь$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Π»Π΄ΠΎΠ½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°, НикСль, Палладий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 25%$(br)$(thing)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Палладий", + "multiblock": { + "mapping": { + "0": "#forge:ores/palladium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹$(): 15%$(br)$(thing)Π₯Ρ€ΠΎΠΌΠΈΡ‚$(): Палладий$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_apatite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_apatite.json deleted file mode 100644 index 85c036697..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_apatite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Апатит ΠΈ ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", - "icon": "gtceu:raw_apatite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 220$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 34$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Апатит, Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚, ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€" - }, - { - "type": "patchouli:multiblock", - "name": "Апатит", - "multiblock": - { - "mapping": { "0": "#forge:ores/apatite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Ѐосфор$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Caβ‚…(POβ‚„)₃Cl" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†ΠΈΠΉΡ„ΠΎΡΡ„Π°Ρ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/tricalcium_phosphate" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Ѐосфор$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ca₃(POβ‚„)β‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΈΡ€ΠΎΡ…Π»ΠΎΡ€", - "multiblock": - { - "mapping": { "0": "#forge:ores/pyrochlore" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Ниобий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Caβ‚‚Nbβ‚‚O₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_basaltic_sands.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_basaltic_sands.json deleted file mode 100644 index 50cff68c4..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_basaltic_sands.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "ΠœΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ пСски", - "icon": "gtceu:raw_basaltic_mineral_sand", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 160$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 48$(br)Высота: 9$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΈ Π“Ρ€Π°Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹Π΅ пСски, БмСктичСская Π³Π»ΠΈΠ½Π°, Гипс" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок", - "multiblock": - { - "mapping": { "0": "#forge:ores/basaltic_mineral_sand" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ€Π°Π½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ ΠΌΠΈΠ½Π΅Ρ€Π°Π»ΡŒΠ½Ρ‹ΠΉ пСсок", - "multiblock": - { - "mapping": { "0": "#forge:ores/granitic_mineral_sand" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))" - }, - { - "type": "patchouli:multiblock", - "name": "БмСктичСская Π³Π»ΠΈΠ½Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/fullers_earth" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁" - }, - { - "type": "patchouli:multiblock", - "name": "Гипс", - "multiblock": - { - "mapping": { "0": "#forge:ores/gypsum" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: АлСбастр (ΠΌΠΎΠΆΠ½ΠΎ ΠΏΠΎΠΊΡ€Π°ΡΠΈΡ‚ΡŒ) ΠΈ Π΅Π³ΠΎ ΠΊΠΈΡ€ΠΏΠΈΡ‡ΠΈ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CaS(Hβ‚‚O)β‚‚Oβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_bauxite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_bauxite.json deleted file mode 100644 index 4e51742a0..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_bauxite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Боксит ΠΈ Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚", - "icon": "gtceu:raw_bauxite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 185$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Боксит, Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚, Алюминий" - }, - { - "type": "patchouli:multiblock", - "name": "Боксит", - "multiblock": - { - "mapping": { "0": "#forge:ores/bauxite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 45%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Алюминий", - "multiblock": - { - "mapping": { "0": "#forge:ores/aluminium" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Al" - }, - { - "type": "patchouli:multiblock", - "name": "Π˜Π»ΡŒΠΌΠ΅Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/ilmenite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π’ΠΈΡ‚Π°Π½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeTiO₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_beryllium.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_beryllium.json deleted file mode 100644 index 940b7f58b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_beryllium.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄ ΠΈ Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ", - "icon": "minecraft:emerald", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 180$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠ΄: трубчатая ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 50$(br)Высота: 60$(br)Радиус: 10$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ, Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄, Π’ΠΎΡ€ΠΈΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€ΠΈΠ»Π»ΠΈΠΉ", - "multiblock": - { - "mapping": { "0": "#forge:ores/beryllium" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: Π­Π½Π΄Π΅Ρ€-ΠΆΠ΅ΠΌΡ‡ΡƒΠ³$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Be$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - }, - { - "type": "patchouli:multiblock", - "name": "Π˜Π·ΡƒΠΌΡ€ΡƒΠ΄", - "multiblock": - { - "mapping": { "0": "#forge:ores/emerald" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ‹ уровня MV, ΠŸΡ€Π΅Π΄ΠΌΠ΅Ρ‚Π½Ρ‹Π΅ Ρ„ΠΈΠ»ΡŒΡ‚Ρ€Ρ‹ (Вэг)$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Be₃Alβ‚‚Si₆Oβ‚β‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€ΠΈΠΉ", - "multiblock": - { - "mapping": { "0": "#forge:ores/thorium" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)БСсполСзСн!$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Th" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_bismuth.json deleted file mode 100644 index f68c4ac40..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_bismuth.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Висмут (ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", - "icon": "gtceu:raw_bismuth", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 170$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Висмутин" - }, - { - "type": "patchouli:multiblock", - "name": "Висмут", - "multiblock": - { - "mapping": { "0": "#forge:ores/bismuth" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 80%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Висмут$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Bi" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/sulfur" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 9%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π²ΠΈΠ½Π΅Ρ†", - "multiblock": - { - "mapping": { "0": "#forge:ores/lead" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 11%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: свинСц$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pb$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_cassiterite.json deleted file mode 100644 index 841862935..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_cassiterite.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠžΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", - "icon": "gtceu:raw_cassiterite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 170$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/cassiterite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 40%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Олово", - "multiblock": - { - "mapping": { "0": "#forge:ores/tin" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 60%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sn" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_coal.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_coal.json deleted file mode 100644 index f93cd6414..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_coal.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "Уголь", - "icon": "minecraft:coal", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 215$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.55$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 0 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 60$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Уголь" - }, - { - "type": "patchouli:multiblock", - "name": "Уголь", - "multiblock": - { - "mapping": { "0": "#forge:ores/coal" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 100%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, рСктификация$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_copper.json deleted file mode 100644 index e3937613b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_copper.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "МСдь ΠΈ Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", - "icon": "minecraft:raw_copper", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 170$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Бамородная мСдь" - }, - { - "type": "patchouli:multiblock", - "name": "МСдь", - "multiblock": - { - "mapping": { "0": "#forge:ores/copper" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 65%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/chalcopyrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CuFeSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Π΅Π»Π΅Π·ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/iron" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Fe" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΈΡ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pyrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 10%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_garnet_tin.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_garnet_tin.json deleted file mode 100644 index d2f11db9e..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_garnet_tin.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ ΠΈ ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", - "icon": "gtceu:raw_garnet_sand", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 360$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -40 - 64$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ВсС$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", - "multiblock": - { - "mapping": { "0": "#forge:ores/cassiterite_sand" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²Ρ‹ΠΉ пСсок", - "multiblock": - { - "mapping": { "0": "#forge:ores/garnet_sand" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Альмандин, Андрадит, Гроссуляр, ΠŸΠΈΡ€ΠΎΠΏ, БпасСрит, Π£Π²Π°Ρ€ΠΎΠ²ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "АсбСст", - "multiblock": - { - "mapping": { "0": "#forge:ores/asbestos" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mg₃Siβ‚‚Hβ‚„O₉$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - }, - { - "type": "patchouli:multiblock", - "name": "Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/diatomite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π–Π΅Π»Π΅Π·ΠΎ, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_garnierite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_garnierite.json deleted file mode 100644 index 25815f4f6..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_garnierite.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚ ΠΈ ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", - "icon": "gtceu:raw_garnierite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 140$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π°Ρ€Π½ΠΈΠ΅Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/garnierite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: НикСль$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NiO" - }, - { - "type": "patchouli:multiblock", - "name": "НикСль", - "multiblock": - { - "mapping": { "0": "#forge:ores/nickel" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 10%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: НикСль$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ni" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/cobaltite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠšΠΎΠ±Π°Π»ΡŒΡ‚, ΠœΡ‹ΡˆΡŒΡΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CoAsS$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pentlandite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: НикСль$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ni₉Sβ‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/cobalt" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: ΠšΠΎΠ±Π°Π»ΡŒΡ‚$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Co" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_gold.json deleted file mode 100644 index cf1b76476..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_gold.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚ ΠΈ Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅)", - "icon": "minecraft:raw_gold", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 170$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br)Высота: 12$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/gold" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 55%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_limonite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/hematite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/goethite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_graphite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_graphite.json deleted file mode 100644 index 8c61c3e35..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_graphite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Π“Ρ€Π°Ρ„ΠΈΡ‚ ΠΈ Алмаз", - "icon": "minecraft:diamond", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 175$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠ΄: трубчатая ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -64 - 100$(br)Высота: 60$(br)Радиус: 12$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Алмаз, Π“Ρ€Π°Ρ„ΠΈΡ‚, Уголь$(br2)НС получаСтся Π½Π°ΠΉΡ‚ΠΈ это? Π“Π°Π±Π±Ρ€ΠΎ всСгда гСнСрируСтся ΠΏΠΎΠ΄ $(thing)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠΌ$(), Π° Π½Π° Π΄Π½Π΅ ΠΎΠΊΠ΅Π°Π½Π° Π»Π΅Π³ΠΊΠΎ ΠΎΠ±Π½Π°Ρ€ΡƒΠΆΠΈΡ‚ΡŒ столбы, Π²Π΅Π΄ΡƒΡ‰ΠΈΠ΅ ΠΊ Π½ΠΈΠΆΠ½Π΅ΠΌΡƒ слою!" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ€Π°Ρ„ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/graphite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 45%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: $(l:mechanics/fire_clay)ΠžΠ³Π½Π΅ΡƒΠΏΠΎΡ€Π½Π°Ρ Π³Π»ΠΈΠ½Π°$(), Π“Ρ€Π°Ρ„Π΅Π½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - }, - { - "type": "patchouli:multiblock", - "name": "Алмаз", - "multiblock": - { - "mapping": { "0": "#forge:ores/diamond" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: Π˜Π·ΠΌΠ΅Π»ΡŒΡ‡ΠΈΡ‚Π΅Π»ΠΈ, ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ‹ ΠΈΠ· AE2$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - }, - { - "type": "patchouli:multiblock", - "name": "Уголь", - "multiblock": - { - "mapping": { "0": "#forge:ores/coal" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: Ρ‚ΠΎΠΏΠ»ΠΈΠ²ΠΎ, рСктификация$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_hematite.json deleted file mode 100644 index 0676b0e18..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_hematite.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ ΠΈ Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚ (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅)", - "icon": "gtceu:raw_hematite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 210$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/hematite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_limonite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/goethite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/gold" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_lapis.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_lapis.json deleted file mode 100644 index 288980526..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_lapis.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2 ΠΈ Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", - "icon": "minecraft:lapis_lazuli", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 170$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -60 - 10$(br)Π Π°Π·ΠΌΠ΅Ρ€: 50$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/lazurite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Натрий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Al₆Si₆Caβ‚ˆNaβ‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/sodalite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, Натрий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Al₃Si₃Naβ‚„Cl" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/calcite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CaCO₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚ 2", - "multiblock": - { - "mapping": { "0": "#forge:ores/lapis" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π‘ΠΎΠ΄Π°Π»ΠΈΡ‚, ΠŸΠΈΡ€ΠΈΡ‚, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_limonite.json deleted file mode 100644 index 3744897f2..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_limonite.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚ (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", - "icon": "gtceu:raw_yellow_limonite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 190$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠœΡ€Π°ΠΌΠΎΡ€, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π›ΠΈΠΌΠΎΠ½ΠΈΡ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, ΠœΠ°Π»Π°Ρ…ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π–Ρ‘Π»Ρ‚Ρ‹ΠΉ Π»ΠΈΠΌΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/yellow_limonite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ‘Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/goethite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/hematite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π»Π°Ρ…ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/malachite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚‚CHβ‚‚Oβ‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_lubricant.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_lubricant.json deleted file mode 100644 index 4cd500921..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_lubricant.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "name": "ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь, Вальк ΠΈ Π’Ρ€ΠΎΠ½Π°", - "icon": "gtceu:raw_soapstone", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 190$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -40 - 56$(br)Π Π°Π·ΠΌΠ΅Ρ€: 36$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь, Вальк, Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок, ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚, Π’Ρ€ΠΎΠ½Π°" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΡ‹Π»ΡŒΠ½Ρ‹ΠΉ камСнь", - "multiblock": - { - "mapping": { "0": "#forge:ores/soapstone" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mg₃Siβ‚„Hβ‚‚O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "Вальк", - "multiblock": - { - "mapping": { "0": "#forge:ores/talc" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mg₃Siβ‚„Hβ‚‚O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", - "multiblock": - { - "mapping": { "0": "#forge:ores/glauconite_sand" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KMgβ‚‚Alβ‚„Hβ‚‚O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pentlandite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: НикСль$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ni₉Sβ‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Ρ€ΠΎΠ½Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/trona" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 10%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_magnetite.json deleted file mode 100644 index 210063e07..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_magnetite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ ΠΈ Π’Π°Π½Π°Π΄ΠΈΠΉ (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅)", - "icon": "gtceu:raw_magnetite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 200$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½ΠΎΠ΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/magnetite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 65%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Fe₃Oβ‚„" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π°Π½Π°Π΄ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/vanadium_magnetite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π–Π΅Π»Π΅Π·ΠΎ, Π’Π°Π½Π°Π΄ΠΈΠΉ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)V" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/gold" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 10%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_manganese.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_manganese.json deleted file mode 100644 index eb5554372..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_manganese.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ† ΠΈ Π’Π°Π½Ρ‚Π°Π»", - "icon": "gtceu:raw_grossular", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 195$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Гроссуляр, БпасСрит, ΠŸΠΈΡ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚, Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Гроссуляр", - "multiblock": - { - "mapping": { "0": "#forge:ores/grossular" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠšΠ°Π»ΡŒΡ†ΠΈΠΉ, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ca₃Alβ‚‚Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "БпасСрит", - "multiblock": - { - "mapping": { "0": "#forge:ores/spessartine" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚Mn₃Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΈΡ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pyrolusite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π°Π½Ρ‚Π°Π»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/tantalite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 10%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†, Π’Π°Π½Ρ‚Π°Π»$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MnTaβ‚‚O₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_mica.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_mica.json deleted file mode 100644 index 8647c55fd..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_mica.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда ΠΈ Боксит", - "icon": "gtceu:raw_mica", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 190$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 0 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 36$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π¦ΠΈΠΎΠ½ΠΈΡ‚, Блюда, Боксит, ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π¦ΠΈΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/kyanite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚SiOβ‚…" - }, - { - "type": "patchouli:multiblock", - "name": "Блюда", - "multiblock": - { - "mapping": { "0": "#forge:ores/mica" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Калий, Алюминий, Π€Ρ‚ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KAl₃Si₃Fβ‚‚O₁₀" - }, - { - "type": "patchouli:multiblock", - "name": "Боксит", - "multiblock": - { - "mapping": { "0": "#forge:ores/bauxite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΎΠ»Π»ΡƒΡ†ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pollucite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_monazite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_monazite.json deleted file mode 100644 index 72c3a4c3b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_monazite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "БастнСзит ΠΈ ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", - "icon": "gtceu:monazite_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 185$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 50$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: БастнСзит, ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚, НСодим" - }, - { - "type": "patchouli:multiblock", - "name": "БастнСзит", - "multiblock": - { - "mapping": { "0": "#forge:ores/bastnasite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π¦Π΅Ρ€ΠΈΠΉ, Π€Ρ‚ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CeCFO₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/monazite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Ѐосфор, РСдкая зСмля$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ?(POβ‚„)" - }, - { - "type": "patchouli:multiblock", - "name": "НСодим", - "multiblock": - { - "mapping": { "0": "#forge:ores/neodymium" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Nd" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_oilsands.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_oilsands.json deleted file mode 100644 index 8a7584c04..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_oilsands.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "НСфтСносный пСсок", - "icon": "gtceu:raw_oilsands", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 185$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.20$(br)Π’ΠΈΠ΄: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π°Ρ ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 0 - 70$(br)Π Π°Π·ΠΌΠ΅Ρ€: 55$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: НСфтСносный пСсок$(br2)Π Π°Π½Π½ΠΈΠΉ доступ ΠΊ Π½Π΅Ρ„Ρ‚ΠΈ ΠΈ Π΅Ρ‘ ΠΏΡ€ΠΎΠ΄ΡƒΠΊΡ‚Π°ΠΌ." - }, - { - "type": "patchouli:multiblock", - "name": "НСфтСносный пСсок", - "multiblock": - { - "mapping": { "0": "#forge:ores/oilsands" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 100%" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_olivine.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_olivine.json deleted file mode 100644 index 6515b4eee..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_olivine.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚ ΠΈ Оливин", - "icon": "gtceu:olivine_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 180$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -40 - 30$(br)Π Π°Π·ΠΌΠ΅Ρ€: 26$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚, ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚, Оливин, Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/bentonite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/magnesite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MgCO₃" - }, - { - "type": "patchouli:multiblock", - "name": "Оливин", - "multiblock": - { - "mapping": { "0": "#forge:ores/olivine" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mgβ‚‚Fe(SiOβ‚‚)β‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π»Π°ΡƒΠΊΠΎΠ½ΠΈΡ‚ΠΎΠ²Ρ‹ΠΉ пСсок", - "multiblock": - { - "mapping": { "0": "#forge:ores/glauconite_sand" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Магний, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KMgβ‚‚Alβ‚„Hβ‚‚O₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_quartz.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_quartz.json deleted file mode 100644 index b1a2c8594..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_quartz.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "ΠšΠ²Π°Ρ€Ρ†Ρ‹", - "icon": "minecraft:quartz", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 150$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄Ρ‹: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 100$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π‘Π»Π°Π½Π΅Ρ†, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Аспидный сланСц, ГнСйс$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π¦Π²Π΅Ρ‚ΡƒΡ‰ΠΈΠΉ истинный ΠΊΠ²Π°Ρ€Ρ†" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/quartzite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 45%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SiOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π˜ΡΡ‚ΠΈΠ½Π½Ρ‹ΠΉ ΠΊΠ²Π°Ρ€Ρ†", - "multiblock": - { - "mapping": { "0": "#forge:ores/certus_quartz" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Applied Energistics 2$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SiOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "НСзСр-ΠΊΠ²Π°Ρ€Ρ†", - "multiblock": - { - "mapping": { "0": "#forge:ores/nether_quartz" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 10%$(br)Π˜ΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ для: Ρ€Π΅Ρ†Π΅ΠΏΡ‚Ρ‹ Applied Energistics 2$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SiOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/barite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π‘Π°Ρ€ΠΈΠΉ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: BaSOβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_redstone.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_redstone.json deleted file mode 100644 index 8eb603ae5..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_redstone.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "РСдстоун, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ ΠΈ Π ΡƒΠ±ΠΈΠ½", - "icon": "minecraft:redstone", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 160$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 100$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: РСдстоун, Π ΡƒΠ±ΠΈΠ½, ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ$(br2)НС получаСтся Π½Π°ΠΉΡ‚ΠΈ это? На Π΄Π½Π΅ ΠΎΠΊΠ΅Π°Π½Π° Π»Π΅Π³ΠΊΠΎ ΡƒΠ²ΠΈΠ΄Π΅Ρ‚ΡŒ красноС свСчСниС!" - }, - { - "type": "patchouli:multiblock", - "name": "РСдстоун", - "multiblock": - { - "mapping": { "0": "#forge:ores/redstone" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 45%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: РСдстоун$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π ΡƒΠ±ΠΈΠ½", - "multiblock": - { - "mapping": { "0": "#forge:ores/ruby" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, Π₯Ρ€ΠΎΠΌ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CrAlβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ", - "multiblock": - { - "mapping": { "0": "#forge:ores/cinnabar" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π Ρ‚ΡƒΡ‚ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: HgS$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_salt.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_salt.json deleted file mode 100644 index 99e9d7eb7..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_salt.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π‘ΠΎΠ»ΠΈ ΠΈ Π‘ΡƒΡ€Π°", - "icon": "tfc:powder/salt", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 175$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 30 - 70$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br)Высота: 4$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π‘Π»Π°Π½Π΅Ρ†, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Бамосадочная соль, КамСнная соль, Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚, Π‘ΡƒΡ€Π°" - }, - { - "type": "patchouli:multiblock", - "name": "КамСнная соль", - "multiblock": - { - "mapping": { "0": "#forge:ores/rock_salt" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 40%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Калий, Π₯Π»ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KCl" - }, - { - "type": "patchouli:multiblock", - "name": "Боль", - "multiblock": - { - "mapping": { "0": "#forge:ores/salt" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Натрий, Π₯Π»ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaCl" - }, - { - "type": "patchouli:multiblock", - "name": "Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/lepidolite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Калий, Π›ΠΈΡ‚ΠΈΠΉ, Алюминий, Π€Ρ‚ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KLi₃Alβ‚„Fβ‚‚O₁₀" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΡƒΡ€Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/borax" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π‘ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_saltpeter.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_saltpeter.json deleted file mode 100644 index 0bf0aea02..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_saltpeter.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π‘Π΅Π»ΠΈΡ‚Ρ€Π° ΠΈ Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", - "icon": "gtceu:raw_saltpeter", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 210$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 50$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π‘Π΅Π»ΠΈΡ‚Ρ€Π°, Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚, Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½, Алунит" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Π»ΠΈΡ‚Ρ€Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/saltpeter" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Калий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KNO₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π”ΠΈΠ°Ρ‚ΠΎΠΌΠΎΠ²Ρ‹ΠΉ ΠΏΠ΅Π»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/diatomite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π–Π΅Π»Π΅Π·ΠΎ, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)" - }, - { - "type": "patchouli:multiblock", - "name": "Π­Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", - "multiblock": - { - "mapping": { "0": "#forge:ores/electrotine" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, РСдстоун$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)" - }, - { - "type": "patchouli:multiblock", - "name": "Алунит", - "multiblock": - { - "mapping": { "0": "#forge:ores/alunite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Калий, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KAl₃Siβ‚‚H₆O₁₄" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_silver.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_silver.json deleted file mode 100644 index ac67488ee..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_silver.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ, Π“Π°Π»Π΅Π½Π° ΠΈ Π‘Π²ΠΈΠ½Π΅Ρ†", - "icon": "gtceu:raw_silver", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 160$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, ГнСйс$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½ΠΎΠ΅ сСрСбро" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π°Π»Π΅Π½Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/galena" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π‘Π²ΠΈΠ½Π΅Ρ†$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: PbS$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ", - "multiblock": - { - "mapping": { "0": "#forge:ores/silver" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π‘Π΅Ρ€Π΅Π±Ρ€ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ag" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π²ΠΈΠ½Π΅Ρ†", - "multiblock": - { - "mapping": { "0": "#forge:ores/lead" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 55%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π‘Π²ΠΈΠ½Π΅Ρ†$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pb$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_sphalerite.json deleted file mode 100644 index c443fd839..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_sphalerite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ & ΠŸΠΈΡ€ΠΈΡ‚ (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹Π΅)", - "icon": "gtceu:raw_sphalerite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 170$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/sphalerite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 40%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π¦ΠΈΠ½ΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ZnS" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/sulfur" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΈΡ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pyrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 25%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_spodumene.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_spodumene.json deleted file mode 100644 index 13268eff6..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_spodumene.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ ΠΈ Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚", - "icon": "gtceu:raw_spodumene", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 180$(br)ΠΏΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.375$(br)Π’ΠΈΠ΄: дискообразная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 20 - 60$(br)Π Π°Π·ΠΌΠ΅Ρ€: 35$(br)Высота: 6$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Бамосадочная соль, КамСнная соль, Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚, Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½" - }, - { - "type": "patchouli:multiblock", - "name": "КамСнная соль", - "multiblock": - { - "mapping": { "0": "#forge:ores/rock_salt" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Калий, Π₯Π»ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KCl" - }, - { - "type": "patchouli:multiblock", - "name": "Боль", - "multiblock": - { - "mapping": { "0": "#forge:ores/salt" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Натрий, Π₯Π»ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaCl" - }, - { - "type": "patchouli:multiblock", - "name": "Π›Π΅ΠΏΠΈΠ΄ΠΎΠ»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/lepidolite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Калий, Π›ΠΈΡ‚ΠΈΠΉ, Алюминий, Π€Ρ‚ΠΎΡ€$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KLi₃Alβ‚„Fβ‚‚O₁₀" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", - "multiblock": - { - "mapping": { "0": "#forge:ores/spodumene" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Π›ΠΈΡ‚ΠΈΠΉ, Алюминий$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: LiAlSiβ‚‚O₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_sulfur.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_sulfur.json deleted file mode 100644 index 43d8f935a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_sulfur.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Π‘Π΅Ρ€Π° ΠΈ ΠŸΠΈΡ€ΠΈΡ‚", - "icon": "gtceu:raw_sulfur", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 165$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.2$(br)Π’ΠΈΠ΄: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π°Ρ ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 0 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 45$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Π‘Π΅Ρ€Π°, ΠŸΠΈΡ€ΠΈΡ‚, Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/sulfur" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΈΡ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pyrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 35%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/sphalerite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π¦ΠΈΠ½ΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ZnS" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_tetrahedrite.json deleted file mode 100644 index f275ede4a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/normal_tetrahedrite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "ВСтраэдрит (ΠΎΠ±Ρ‹Ρ‡Π½Ρ‹ΠΉ)", - "icon": "gtceu:raw_tetrahedrite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 170$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: -32 - 75$(br)Π Π°Π·ΠΌΠ΅Ρ€: 40$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: ВСтраэдрит, Бамородная мСдь" - }, - { - "type": "patchouli:multiblock", - "name": "ВСтраэдрит", - "multiblock": - { - "mapping": { "0": "#forge:ores/tetrahedrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 50%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu₃SbS₃Fe" - }, - { - "type": "patchouli:multiblock", - "name": "Бамородная мСдь", - "multiblock": - { - "mapping": { "0": "#forge:ores/copper" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 30%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/stibnite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π‘ΡƒΡ€ΡŒΠΌΠ°$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sbβ‚‚S₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/ore_basics.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/ore_basics.json index 010a0a4c1..c86ad2551 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/ore_basics.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/ore_basics.json @@ -1,6 +1,6 @@ { "name": "Π”ΠΎΠ±Ρ‹Ρ‡Π° Ρ€ΡƒΠ΄Ρ‹ Π² TFG", - "icon": "gtceu:pyrite_dust", + "icon": "minecraft:diamond_pickaxe", "category": "tfc:tfg_ores", "priority": true, "sortnum": 0, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_bismuth.json deleted file mode 100644 index a0d51aa70..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_bismuth.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Висмут (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", - "icon": "gtceu:poor_raw_bismuth", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 140$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 60 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 50$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Аргиллит, Π˜Π·Π²Π΅ΡΡ‚Π½ΡΠΊ, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΠΈΡ‚, ΠšΡ€Π΅ΠΌΠ½ΠΈΡΡ‚Ρ‹ΠΉ сланСц, МСл$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Висмутин" - }, - { - "type": "patchouli:multiblock", - "name": "Висмут", - "multiblock": - { - "mapping": { "0": "#forge:ores/bismuth" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 90%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Висмут$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Bi" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/sulfur" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 3%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π²ΠΈΠ½Π΅Ρ†", - "multiblock": - { - "mapping": { "0": "#forge:ores/lead" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 7%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π‘Π²ΠΈΠ½Π΅Ρ†$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pb$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_cassiterite.json deleted file mode 100644 index 45d934084..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_cassiterite.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", - "icon": "gtceu:poor_raw_cassiterite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 135$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 60 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 50$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π“Ρ€Π°Π½ΠΈΡ‚, Π”ΠΈΠΎΡ€ΠΈΡ‚, Π“Π°Π±Π±Ρ€ΠΎ$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/cassiterite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 60%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Олово", - "multiblock": - { - "mapping": { "0": "#forge:ores/tin" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 40%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sn" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_copper.json deleted file mode 100644 index 39d89c3c7..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_copper.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚ ΠΈ Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", - "icon": "gtceu:raw_chalcopyrite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 140$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 30 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 50$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: Бамородная мСдь, ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚, Π Π΅Π°Π»ΡŒΠ³Π°Ρ€$(br2)НС получаСтся Π½Π°ΠΉΡ‚ΠΈ это? $(l:tfg_ores/normal_garnierite)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚$() слуТит Π°Π»ΡŒΡ‚Π΅Ρ€Π½Π°Ρ‚ΠΈΠ²Π½Ρ‹ΠΌ источником ΠΌΡ‹ΡˆΡŒΡΠΊΠ°, ΠΎΠ΄Π½Π°ΠΊΠΎ для этого понадобится $(thing)ЭлСктричСская домСнная ΠΏΠ΅Ρ‡ΡŒ$()" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/chalcopyrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 55%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CuFeSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π¦Π΅ΠΎΠ»ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/zeolite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: Алюминий, ΠšΠΈΡΠ»ΠΎΡ€ΠΎΠ΄$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaCaβ‚„Si₂₇Al₉(Hβ‚‚O)β‚‚β‚ˆO₇₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/cassiterite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", - "multiblock": - { - "mapping": { "0": "#forge:ores/realgar" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 15%$(br)Π‘ΠΎΠ΄Π΅Ρ€ΠΆΠΈΡ‚: ΠœΡ‹ΡˆΡŒΡΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Asβ‚„Sβ‚„$(br)Π―Π΄ΠΎΠ²ΠΈΡ‚: Π”Π°" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_sphalerite.json deleted file mode 100644 index 0f4027c88..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_sphalerite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ ΠΈ Π‘Π΅Ρ€Π° (повСрхностныС)", - "icon": "gtceu:poor_raw_sphalerite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 145$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 60 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 50$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: Π ΠΈΠΎΠ»ΠΈΡ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/sphalerite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 40%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π¦ΠΈΠ½ΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ZnS" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€Π°", - "multiblock": - { - "mapping": { "0": "#forge:ores/sulfur" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 55%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΈΡ€ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/pyrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 5%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π–Π΅Π»Π΅Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_tetrahedrite.json deleted file mode 100644 index 1d3b3b4d0..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/tfg_ores/surface_tetrahedrite.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "ВСтраэдрит (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½ΠΎΡΡ‚Π½Ρ‹ΠΉ)", - "icon": "gtceu:poor_raw_tetrahedrite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Π΅Π΄ΠΊΠΎΡΡ‚ΡŒ: 140$(br)ΠŸΠ»ΠΎΡ‚Π½ΠΎΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠ΄: кластСрная ΠΆΠΈΠ»Π°$(br)Y-ΡƒΡ€ΠΎΠ²Π΅Π½ΡŒ: 60 - 210$(br)Π Π°Π·ΠΌΠ΅Ρ€: 50$(br2)Π’ΠΈΠ΄Ρ‹ ΠΊΠ°ΠΌΠ½Π΅ΠΉ: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½Ρ‹ΠΉ сланСц, Π€ΠΈΠ»Π»ΠΈΡ‚, Аспидный сланСц, ГнСйс, ΠœΡ€Π°ΠΌΠΎΡ€$(br2)Π˜Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€Ρ‹: ВСтраэдрит, Бамородная мСдь" - }, - { - "type": "patchouli:multiblock", - "name": "ВСтраэдрит", - "multiblock": - { - "mapping": { "0": "#forge:ores/tetrahedrite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 60%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu₃SbS₃Fe" - }, - { - "type": "patchouli:multiblock", - "name": "Бамородная мСдь", - "multiblock": - { - "mapping": { "0": "#forge:ores/copper" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: МСдь$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ‚ΠΈΠ±Π½ΠΈΡ‚", - "multiblock": - { - "mapping": { "0": "#forge:ores/stibnite" }, - "pattern": [[ "0" ], [ " " ]] - }, - "enable_visualize": false, - "text": "ΠŸΡ€ΠΎΡ†Π΅Π½Ρ‚ Ρ€ΡƒΠ΄Ρ‹: 20%$(br)ΠŸΠ»Π°Π²ΠΈΡ‚ΡΡ Π²: Π‘ΡƒΡ€ΡŒΠΌΠ°$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sbβ‚‚S₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/the_world/ores_and_minerals.json b/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/the_world/ores_and_minerals.json deleted file mode 100644 index 323d77818..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/ru_ru/entries/the_world/ores_and_minerals.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Ores and Minerals", - "category": "tfc:the_world", - "icon": "tfc:ore/normal_hematite", - "pages": [ - { - "type": "patchouli:text", - "text": "Π­Ρ‚Π° страница Π½Π΅ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΠ΅Ρ‚ΡΡ.$(br2)Вся информация ΠΎ Ρ€ΡƒΠ΄Π°Ρ… находится Π² ΠΊΠ°Ρ‚Π΅Π³ΠΎΡ€ΠΈΠΈ $(l:tfg_ores)Π ΡƒΠ΄Ρ‹ Π² TFG$()." - } - ], - "read_by_default": true, - "sortnum": 1 -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/mechanics/fire_clay.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/mechanics/fire_clay.json index 1d9b88144..1fe44d251 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/mechanics/fire_clay.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/mechanics/fire_clay.json @@ -11,12 +11,12 @@ { "type": "patchouli:crafting", "recipe": "tfc:crafting/fire_clay", - "text": "Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΡƒ Π³Π»ΠΈΠ½Ρƒ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒ Π· ΠΏΠΎΡ€ΠΎΡˆΠΊΡƒ $(l:tfg_ores/normal_graphite)Π³Ρ€Π°Ρ„Ρ–Ρ‚Ρƒ$() ΠΏΠΎΠ΄Ρ€Ρ–Π±Π½Π΅Π½ΠΎΠ³ΠΎ Π² $(l:mechanics/quern)ΠΆΠΎΡ€Π½Ρ–$(), Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΏΠΎΡ€ΠΎΡˆΠΊΡƒ $(l:tfg_ores/surface_kaolin#powder)ΠΊΠ°ΠΎΠ»Ρ–Π½Ρ–Ρ‚Ρƒ$()" + "text": "Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΡƒ Π³Π»ΠΈΠ½Ρƒ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒ Π· ΠΏΠΎΡ€ΠΎΡˆΠΊΡƒ $(l:tfg_ores/earth_vein_index#normal_graphite)Π³Ρ€Π°Ρ„Ρ–Ρ‚Ρƒ$() ΠΏΠΎΠ΄Ρ€Ρ–Π±Π½Π΅Π½ΠΎΠ³ΠΎ Π² $(l:mechanics/quern)ΠΆΠΎΡ€Π½Ρ–$(), Π° Ρ‚Π°ΠΊΠΎΠΆ ΠΏΠΎΡ€ΠΎΡˆΠΊΡƒ $(l:tfg_ores/surface_kaolin#powder)ΠΊΠ°ΠΎΠ»Ρ–Π½Ρ–Ρ‚Ρƒ$()" }, { "type": "tfc:heat_recipe", "recipe": "tfc:heating/kaolin_clay", - "text": "ΠšΠ°ΠΎΠ»Ρ–Π½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒ ΡˆΠ»ΡΡ…ΠΎΠΌ нагрівання $(l:tfg_ores/surface_kaolin)ΠšΠ°ΠΎΠ»Ρ–Π½Ρ–Ρ‚ΠΎΠ²ΠΎΡ— Π“Π»ΠΈΠ½ΠΈ$(). Однак процСс Π½Π΅ Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΉ, Ρ– лишС 20% Π³Π»ΠΈΠ½ΠΈ ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ” ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ!" + "text": "ΠšΠ°ΠΎΠ»Ρ–Π½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ Π²ΠΈΠ³ΠΎΡ‚ΠΎΠ²Π»ΡΡŽΡ‚ΡŒ ΡˆΠ»ΡΡ…ΠΎΠΌ нагрівання $(l:mechanics/surface_kaolin)ΠšΠ°ΠΎΠ»Ρ–Π½Ρ–Ρ‚ΠΎΠ²ΠΎΡ— Π“Π»ΠΈΠ½ΠΈ$(). Однак процСс Π½Π΅ Ρ–Π΄Π΅Π°Π»ΡŒΠ½ΠΈΠΉ, Ρ– лишС 20% Π³Π»ΠΈΠ½ΠΈ ΡƒΡ‚Π²ΠΎΡ€ΡŽΡ” ΠΏΠΎΡ€ΠΎΡˆΠΎΠΊ!" }, { "type": "tfc:knapping_recipe", diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_kaolin.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/mechanics/surface_kaolin.json similarity index 99% rename from kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_kaolin.json rename to kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/mechanics/surface_kaolin.json index 98889460d..d08459688 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_kaolin.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/mechanics/surface_kaolin.json @@ -1,7 +1,7 @@ { "name": "ΠšΠ°ΠΎΠ»Ρ–Π½ΠΎΠ²Π° Π³Π»ΠΈΠ½Π°", "icon": "tfc:kaolin_clay", - "category": "tfc:tfg_ores", + "category": "tfc:mechanics", "read_by_default": true, "pages": [ { diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_garnet_amethyst.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_garnet_amethyst.json deleted file mode 100644 index 096e5b283..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_garnet_amethyst.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "АмСтист Ρ– Π“Ρ€Π°Π½Π°Ρ‚", - "icon": "minecraft:amethyst_shard", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 230$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: Дискова Π²Π΅Π½Π°$(br)Y: -64 - 26$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 28$(br)Висота: 8$(br2)Π’ΠΈΠΏΠΈ камСню: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргиліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π ΠΎΠ΄ΡŽΡ‡ΠΈΠΉ АмСтист" - }, - { - "type": "patchouli:multiblock", - "name": "АмСтист", - "multiblock": { - "mapping": { - "0": "#forge:ores/amethyst" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 65%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π—Π°Π»Ρ–Π·Π°$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚„Fe" - }, - { - "type": "patchouli:multiblock", - "name": "Опал", - "multiblock": { - "mapping": { - "0": "#forge:ores/opal" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)" - }, - { - "type": "patchouli:multiblock", - "name": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/red_garnet" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠŸΡ–Ρ€ΠΎΠΏ, Альмандин, БпСссартин" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_garnet" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Андрадит, Гроссулар, Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_garnet_opal.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_garnet_opal.json deleted file mode 100644 index 170e45674..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_garnet_opal.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚", - "icon": "gtceu:opal_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 220$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠΏ: Дискова Π²Π΅Π½Π°(br)Y: -64 - 62$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 26$(br)Висота: 6$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π ΠΎΠ΄ΡŽΡ‡ΠΈΠΉ АмСтист" - }, - { - "type": "patchouli:multiblock", - "name": "Опал", - "multiblock": { - "mapping": { - "0": "#forge:ores/opal" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 55%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)" - }, - { - "type": "patchouli:multiblock", - "name": "АмСтист", - "multiblock": { - "mapping": { - "0": "#forge:ores/amethyst" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π—Π°Π»Ρ–Π·Π°$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚„Fe" - }, - { - "type": "patchouli:multiblock", - "name": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/red_garnet" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Source of: ΠŸΡ–Ρ€ΠΎΠΏ, Алмадін, БпСсартін" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_garnet" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Andradite, Grossular, Uvarovite" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_gold.json deleted file mode 100644 index c2282d340..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_gold.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ (Π“Π»ΠΈΠ±ΠΎΠΊΠ΅)", - "icon": "gtceu:rich_raw_gold", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 260$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.45$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 30$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 32$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 75%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_hematite.json deleted file mode 100644 index 011ca3a15..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_hematite.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π“Π΅Ρ‚ΠΈΡ‚ Ρ– Π ΡƒΠ±Ρ–Π½", - "icon": "gtceu:rich_raw_hematite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 220$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 30$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π›ΠΈΠΌΠΎΠ½Ρ–Ρ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§ΡƒΠ³ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π ΡƒΠ±Ρ–Π½", - "multiblock": { - "mapping": { - "0": "#forge:ores/ruby" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π₯Ρ€ΠΎΠΌΡƒ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CrAlβ‚‚O₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_limonite.json deleted file mode 100644 index 47de3d1d0..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_limonite.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π“Π΅Ρ‚ΠΈΡ‚ Ρ– ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚", - "icon": "gtceu:rich_raw_goethite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 240$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 30$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 32$(br2)Π’ΠΈΠΏΠΈ камСню: ΠœΠ°Ρ€ΠΌΡƒΡ€, Вапняк$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π›ΠΈΠΌΠΎΠ½Ρ–Ρ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½ $(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/malachite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚‚CHβ‚‚Oβ‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_magnetite.json deleted file mode 100644 index d5275855c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_magnetite.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "name": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚ Ρ– ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "icon": "gtceu:rich_raw_chromite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 205$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 30$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 340$(br2)Π’ΠΈΠΏΠΈ камСню: Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ, Π₯Ρ€ΠΎΠΌΡ–Ρ‚, Π‘Π°ΠΏΡ„Ρ–Ρ€" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/chromite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 60%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π₯Ρ€ΠΎΠΌΡƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeCrβ‚‚Oβ‚„" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/magnetite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Fe₃Oβ‚„" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/vanadium_magnetite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π—Π°Π»Ρ–Π·Π°, Π’Π°Π½Π°Π΄Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)V" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°ΠΏΡ„Ρ–Ρ€", - "multiblock": { - "mapping": { - "0": "#forge:ores/sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_molybdenum.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_molybdenum.json deleted file mode 100644 index 5cadadc47..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_molybdenum.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚ Ρ– ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚", - "icon": "gtceu:rich_raw_wulfenite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 245$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.45$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 10$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 26$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ $(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚, ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚, ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ, ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/wulfenite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 40%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ, ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: PbMoOβ‚„$(br)НСбСзпСчний: Π’Π°ΠΊ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/molybdenite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ $(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MoSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ", - "multiblock": { - "mapping": { - "0": "#forge:ores/molybdenum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Π€ΠΎΡ€ΠΌΡƒΠ»Π°: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mo" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/powellite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ $(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CaMoOβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_naquadah.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_naquadah.json deleted file mode 100644 index 5fccf6bf3..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_naquadah.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "Наквадак Ρ– ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ", - "icon": "gtceu:rich_raw_naquadah", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 310$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - -20$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 32$(br2)Π’ΠΈΠΏΠΈ камСню: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Наквадак, ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Наквадак", - "multiblock": { - "mapping": { - "0": "#forge:ores/naquadah" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 75%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π‘Ρ‚Π°Ρ€Π³Π΅ΠΉΡ‚Ρ–ΡƒΠΌ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Nq" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ", - "multiblock": { - "mapping": { - "0": "#forge:ores/plutonium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pu²³⁹$(br)НСбСзпСчний: Π’Π°ΠΊ" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_pitchblende.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_pitchblende.json deleted file mode 100644 index dbd07c617..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_pitchblende.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "Π£Ρ€Π°Π½Ρ–Ρ‚ & ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄", - "icon": "gtceu:rich_raw_uraninite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 220$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.45$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - -20$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 24$(br2)Π’ΠΈΠΏ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄, Π£Ρ€Π°Π½Ρ–Ρ‚$(br2)Π£ TFG Π½Π΅ΠΌΠ°Ρ” Ρ€Π΅Π°ΠΊΡ‚ΠΎΡ€Ρ–Π² для розщСплСння, Π°Π»Π΅ ΡƒΡ€Π°Π½ ΠΌΠ°Ρ” Ρ–Π½ΡˆΠ΅ застосування." - }, - { - "type": "patchouli:multiblock", - "name": "Π£Ρ€Π°Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/uraninite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π£Ρ€Π°Π½Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: UOβ‚‚$(br)НСбСзпСчний: Π’Π°ΠΊ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄", - "multiblock": { - "mapping": { - "0": "#forge:ores/pitchblende" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π£Ρ€Π°Π½Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (UOβ‚‚)₃ThPb$(br)НСбСзпСчний: Π’Π°ΠΊ" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_sapphire.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_sapphire.json deleted file mode 100644 index 5bfbe1a2a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_sapphire.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "name": "Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½", - "icon": "gtceu:sapphire_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 280$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠΏ: Дискова Π²Π΅Π½Π°$(br)Y: -64 - 26$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 28$(br)Висота: 8$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Алмадін, ΠŸΡ–Ρ€ΠΎΠΏ, Π‘Π°ΠΏΡ„Ρ–Ρ€, Π—Π΅Π»Π΅Π½ΠΈΠΉ Π‘Π°ΠΏΡ„Ρ–Ρ€ $(br2)Π―ΠΊΡ‰ΠΎ Π²ΠΈ ΡˆΡƒΠΊΠ°Ρ”Ρ‚Π΅ $(thing)ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ$(), Π·Π½Π°ΠΉΠ΄Ρ–Ρ‚ΡŒ $(l:tfg_ores/normal_bauxite)Бокситну$() Π²Π΅Π½Ρƒ Π·Π°ΠΌΡ–ΡΡ‚ΡŒ.$(br)" - }, - { - "type": "patchouli:multiblock", - "name": "Алмандін", - "anchor": "almandine", - "multiblock": { - "mapping": { - "0": "#forge:ores/almandine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ, Π—Π°Π»Ρ–Π·ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚Fe₃Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ€ΠΎΠΏ", - "anchor": "pyrope", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrope" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠœΠ°Π³Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚Mg₃Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°ΠΏΡ„Ρ–Ρ€", - "multiblock": { - "mapping": { - "0": "#forge:ores/sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π—Π΅Π»Π΅Π½ΠΈΠΉ сапфір", - "multiblock": { - "mapping": { - "0": "#forge:ores/green_sapphire" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_scheelite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_scheelite.json deleted file mode 100644 index a8909e4a1..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_scheelite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ", - "icon": "gtceu:rich_raw_scheelite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 220$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 0$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 28$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π¨Π΅Ρ”Π»Ρ–Ρ‚, Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ, Π›Ρ–Ρ‚Ρ–ΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Π¨Π΅Ρ”Π»Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/scheelite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 45%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ca(WO₃)O" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ", - "multiblock": { - "mapping": { - "0": "#forge:ores/tungstate" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ, Π›Ρ–Ρ‚Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Liβ‚‚(WO₃)O" - }, - { - "type": "patchouli:multiblock", - "name": "Π›Ρ–Ρ‚Ρ–ΠΉ", - "multiblock": { - "mapping": { - "0": "#forge:ores/lithium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π›Ρ–Ρ‚Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Li" - } - ] -} diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_sheldonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_sheldonite.json deleted file mode 100644 index cfbc87cc6..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_sheldonite.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚", - "icon": "gtceu:rich_raw_platinum", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 300$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 0$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 30$(br2)Π’ΠΈΠΏΠΈ камСню: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘ΠΎΡ€Π½Ρ–Ρ‚, ΠšΡƒΠΏΡ€ΠΈΡ‚., ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°, ΠŸΠ°Π»Π°Π΄Ρ–ΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½", - "multiblock": { - "mapping": { - "0": "#forge:ores/cooperite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ, ΠΡ–ΠΊΠ΅Π»ΡŽ, ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pt₃NiSPd" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°", - "multiblock": { - "mapping": { - "0": "#forge:ores/platinum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pt" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ°Π»Π°Π΄Ρ–ΠΉ", - "multiblock": { - "mapping": { - "0": "#forge:ores/palladium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pt" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΎΡ€Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/bornite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚…FeSβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_topaz.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_topaz.json deleted file mode 100644 index 952f14fd3..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/deep_topaz.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚", - "icon": "gtceu:topaz_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 260$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: Дискова Π²Π΅Π½Π°$(br)Y: -64 - 26$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 28$(br2)Π’ΠΈΠΏΠΈ камСню: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π’ΠΎΠΏΠ°Π·, Π‘Π»Π°ΠΊΠΈΡ‚Π½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·, Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚, Π‘ΠΎΡ€Π½Ρ–Ρ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΠΎΠΏΠ°Π·", - "multiblock": { - "mapping": { - "0": "#forge:ores/topaz" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚SiFHβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π»Π°ΠΊΠΈΡ‚Π½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·", - "multiblock": { - "mapping": { - "0": "#forge:ores/blue_topaz" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚SiFβ‚‚Hβ‚‚O₆" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/chalcocite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚‚S" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΎΡ€Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/bornite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚…FeSβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_ore_index.json new file mode 100644 index 000000000..5e01d0adb --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_ore_index.json @@ -0,0 +1,56 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "зСмля 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)зСмля$(). 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": "зСмля Ore Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)АзбСст: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Алмандін: $(l:tfg_ores/earth_vein_index#deep_sapphire)38%$(/l)$()$(li)Алуніт: $(l:tfg_ores/earth_vein_index#normal_saltpeter)15%$(/l)$()$(li)ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ: $(l:tfg_ores/earth_vein_index#normal_bauxite)25%$(/l)$()$(li)АмСтист: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)65%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)25%$(/l)$()$(li)Апатит: $(l:tfg_ores/earth_vein_index#normal_apatite)50%$(/l)$()$(li)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)20%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/earth_vein_index#normal_monazite)50%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)35%$(/l)$()$(li)Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ: $(l:tfg_ores/earth_vein_index#normal_beryllium)35%$(/l)$()$(li)Бісмут: $(l:tfg_ores/earth_vein_index#surface_bismuthinite)90%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)80%$(/l)$()$(li)Π‘Π»Π°ΠΊΠΈΡ‚Π½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·: $(l:tfg_ores/earth_vein_index#deep_topaz)35%$(/l)$()$(li)Боксит: $(l:tfg_ores/earth_vein_index#normal_bauxite)45%$(/l), $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘ΠΎΡ€Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_sheldonite)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_topaz)15%$(/l)$()$(li)Π‘ΡƒΡ€Π°: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l)$()$(li)Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)22%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)15%$(/l)$()$(li)Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ: $(l:tfg_ores/earth_vein_index#deep_scheelite)35%$(/l)$()$(li)Вугілля: $(l:tfg_ores/earth_vein_index#normal_coal)100%$(/l), $(l:tfg_ores/earth_vein_index#normal_graphite)30%$(/l)$()$(li)Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)40%$(/l)$()$(li)Π“Π°Π»Π΅Π½Π°: $(l:tfg_ores/earth_vein_index#normal_silver)30%$(/l)$()$(li)Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)30%$(/l)$()$(li)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_hematite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)5%$(/l)$()$(li)Π“Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)5%$(/l)$()$(li)Гіпс: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)15%$(/l)$()$(li)Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок: $(l:tfg_ores/earth_vein_index#normal_lubricant)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_olivine)15%$(/l)$()$(li)Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²ΠΈΠΉ пісок: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)25%$(/l)$()$(li)Π“Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π“Ρ€Π°Ρ„Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_graphite)45%$(/l)$()$(li)Гроссуляр: $(l:tfg_ores/earth_vein_index#normal_manganese)37%$(/l)$()$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/earth_vein_index#normal_graphite)25%$(/l)$()$(li)Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚Π½: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_garnet_tin)15%$(/l)$()$(li)Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/earth_vein_index#normal_saltpeter)25%$(/l)$()$(li)Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)15%$(/l)$()$(li)Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_limonite)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_hematite)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)20%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_limonite)15%$(/l), $(l:tfg_ores/earth_vein_index#deep_gold)5%$(/l)$()$(li)Π—Π΅Π»Π΅Π½ΠΈΠΉ сапфір: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l)$()$(li)ЗСмля Π€ΡƒΠ»Π»Π΅Ρ€Π°: $(l:tfg_ores/earth_vein_index#normal_basaltic_sands)25%$(/l)$()$(li)Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_bauxite)30%$(/l)$()$(li)ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)15%$(/l)$()$(li)ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ: $(l:tfg_ores/earth_vein_index#normal_salt)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)20%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_cassiterite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_copper)5%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски: $(l:tfg_ores/earth_vein_index#normal_garnet_tin)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_quartz)54%$(/l)$()$(li)ΠšΡ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_mica)35%$(/l)$()$(li)ΠšΡ–Π½ΠΎΠ²Π°Ρ€: $(l:tfg_ores/earth_vein_index#normal_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)20%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)35%$(/l)$()$(li)Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_salt)15%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)15%$(/l)$()$(li)Π›Ρ–Ρ‚Ρ–ΠΉ: $(l:tfg_ores/earth_vein_index#deep_scheelite)20%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_magnetite)63%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)5%$(/l)$()$(li)ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_limonite)20%$(/l), $(l:tfg_ores/earth_vein_index#normal_limonite)15%$(/l)$()$(li)ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)30%$(/l)$()$(li)ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ: $(l:tfg_ores/earth_vein_index#deep_molybdenum)15%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_monazite)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Нафтові піски: $(l:tfg_ores/earth_vein_index#normal_oilsands)100%$(/l)$()$(li)НСодим: $(l:tfg_ores/earth_vein_index#normal_monazite)25%$(/l)$()$(li)ΠΡ–ΠΊΠ΅Π»ΡŒ: $(l:tfg_ores/earth_vein_index#normal_garnierite)10%$(/l)$()$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/earth_vein_index#normal_saltpeter)35%$(/l)$()$(li)ΠžΠ»ΠΈΠ²Ρ–Π½: $(l:tfg_ores/earth_vein_index#normal_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/earth_vein_index#normal_cassiterite)60%$(/l), $(l:tfg_ores/earth_vein_index#surface_cassiterite)40%$(/l)$()$(li)Опал: $(l:tfg_ores/earth_vein_index#deep_garnet_opal)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)15%$(/l)$()$(li)ΠŸΠ°Π»Π°Π΄Ρ–ΠΉ: $(l:tfg_ores/earth_vein_index#deep_sheldonite)15%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_garnierite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_lubricant)15%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_sulfur)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)25%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)10%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)5%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΠΏ: $(l:tfg_ores/earth_vein_index#deep_sapphire)27%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/earth_vein_index#normal_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/earth_vein_index#deep_sheldonite)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_molybdenum)15%$(/l)$()$(li)Поклади Істинного ΠšΠ²Π°Ρ€Ρ†Ρƒ: $(l:tfg_ores/earth_vein_index#normal_quartz)25%$(/l)$()$(li)ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_mica)15%$(/l)$()$(li)Π Π΅Π°Π»ΡŒΠ³Π°Ρ€: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)РСдстоун: $(l:tfg_ores/earth_vein_index#normal_redstone)45%$(/l)$()$(li)Π ΡƒΠ±Ρ–Π½: $(l:tfg_ores/earth_vein_index#normal_redstone)35%$(/l), $(l:tfg_ores/earth_vein_index#deep_hematite)20%$(/l)$()$(li)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ: $(l:tfg_ores/earth_vein_index#deep_gold)75%$(/l), $(l:tfg_ores/earth_vein_index#normal_gold)55%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)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)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ: $(l:tfg_ores/earth_vein_index#normal_copper)65%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)30%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π‘Ρ€Ρ–Π±Π»Π°: $(l:tfg_ores/earth_vein_index#normal_silver)15%$(/l)$()$(li)Π‘Π°ΠΏΡ„Ρ–Ρ€: $(l:tfg_ores/earth_vein_index#deep_sapphire)16%$(/l), $(l:tfg_ores/earth_vein_index#deep_magnetite)5%$(/l)$()$(li)Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ: $(l:tfg_ores/earth_vein_index#normal_silver)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)11%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)7%$(/l)$()$(li)Π‘Ρ–Π»ΡŒ: $(l:tfg_ores/earth_vein_index#normal_salt)30%$(/l), $(l:tfg_ores/earth_vein_index#normal_spodumene)30%$(/l)$()$(li)Π‘Ρ–Ρ€ΠΊΠ°: $(l:tfg_ores/earth_vein_index#surface_sphalerite)55%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)50%$(/l), $(l:tfg_ores/earth_vein_index#normal_sphalerite)35%$(/l), $(l:tfg_ores/earth_vein_index#normal_bismuthinite)9%$(/l), $(l:tfg_ores/earth_vein_index#surface_bismuthinite)3%$(/l)$()$(li)Блюда: $(l:tfg_ores/earth_vein_index#normal_mica)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/earth_vein_index#normal_beryllium)50%$(/l)$()$(li)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)Боапостон: $(l:tfg_ores/earth_vein_index#normal_lubricant)30%$(/l)$()$(li)Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_lapis)25%$(/l)$()$(li)БпСсартін: $(l:tfg_ores/earth_vein_index#normal_manganese)25%$(/l)$()$(li)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½: $(l:tfg_ores/earth_vein_index#normal_spodumene)35%$(/l)$()$(li)Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)20%$(/l), $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)20%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#normal_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#surface_sphalerite)40%$(/l), $(l:tfg_ores/earth_vein_index#normal_sulfur)15%$(/l)$()$(li)Вальк: $(l:tfg_ores/earth_vein_index#normal_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#normal_manganese)12%$(/l)$()$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_tetrahedrite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€Ρ–ΠΉ: $(l:tfg_ores/earth_vein_index#normal_beryllium)15%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/earth_vein_index#normal_apatite)35%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/earth_vein_index#normal_lubricant)10%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Π£Ρ€Π°Π½Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_pitchblende)50%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#surface_copper)61%$(/l), $(l:tfg_ores/earth_vein_index#normal_copper)20%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚: $(l:tfg_ores/earth_vein_index#deep_topaz)25%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΡ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_magnetite)60%$(/l), $(l:tfg_ores/earth_vein_index#normal_magnetite)4%$(/l)$()$(li)Π¦Π΅ΠΎΠ»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#surface_copper)16%$(/l)$()$(li)Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)5%$(/l), $(l:tfg_ores/earth_vein_index#deep_garnet_opal)5%$(/l)$()$(li)Π¨Π΅Ρ”Π»Ρ–Ρ‚: $(l:tfg_ores/earth_vein_index#deep_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½: $(l:tfg_ores/earth_vein_index#deep_sheldonite)25%$(/l)$()", + "type": "patchouli:text" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_vein_index.json new file mode 100644 index 000000000..63d3def06 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/earth_vein_index.json @@ -0,0 +1,3867 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "зСмля Vein Index", + "icon": "tfc:ore/normal_native_copper/chalk", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(thing)зСмля$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns on, and more.", + "title": "зСмля Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_amethyst)АмСтист Ρ– Π“Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_apatite)Апатит Ρ– ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_monazite)БастнСзит Ρ– ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_olivine)Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚ Ρ‚Π° ΠžΠ»Ρ–Π²Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bismuthinite)Бісмут (Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_bismuthinite)Бісмут (повСрхня)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_bauxite)Боксит Ρ– Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_coal)Вугілля$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_molybdenum)Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚ Ρ– ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnierite)Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚ Ρ– ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π“Π΅Ρ‚ΠΈΡ‚ Ρ– Π ΡƒΠ±Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_limonite)Π“Π΅Ρ‚ΠΈΡ‚ Ρ– ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_garnet_tin)Π“Ρ€Π°Π½Π°Ρ‚ Ρ– ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_graphite)Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_gold)Π—ΠΎΠ»ΠΎΡ‚ΠΎ (Π“Π»ΠΈΠ±ΠΎΠΊΠ΅)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_gold)Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚ Ρ‚Π° Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_cassiterite)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_cassiterite)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_quartz)ΠšΠ²Π°Ρ€Ρ†$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_mica)ΠšΡ–Π°Π½Ρ–Ρ‚, Блюда Ρ‚Π° Боксити$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_limonite)Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_magnetite)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ Ρ– Π’Π°Π½Π°Π΄Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_manganese)ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†ΡŒ Ρ– Π’Π°Π½Ρ‚Π°Π»$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_copper)ΠœΡ–Π΄ΡŒ Ρ‚Π° Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_basaltic_sands)ΠœΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½Ρ– піски$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_oilsands)Нафтові піски$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_garnet_opal)Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#normal_redstone)РСдстоун, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ Ρ– Π ΡƒΠ±Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sapphire)Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_saltpeter)Π‘Π΅Π»Ρ–Ρ‚Ρ€Π° Ρ‚Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sulfur)Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_beryllium)Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lapis)Π‘ΠΌΠ°Ρ€Π°Π³Π΄, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_lubricant)Боапостон, Вальк Ρ– Π’Ρ€ΠΎΠ½Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_salt)Π‘ΠΎΠ»Ρ– Ρ‚Π° Π‘ΡƒΡ€Π°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_spodumene)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ Ρ‚Π° Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_silver)Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– Π‘Ρ–Ρ€ΠΊΠ°$()$()$(li)$(l:tfg_ores/earth_vein_index#normal_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/earth_vein_index#deep_topaz)Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_pitchblende)Π£Ρ€Π°Π½Ρ–Ρ‚ & ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄$()$()$(li)$(l:tfg_ores/earth_vein_index#surface_copper)Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚ Ρ‚Π° Π Π΅Π°Π»ΡŒΠ³Π°Ρ€$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_magnetite)Π₯Ρ€ΠΎΠΌΡ–Ρ‚ Ρ– ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_scheelite)Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$()$()$(li)$(l:tfg_ores/earth_vein_index#deep_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 230$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Висота$(): 8$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "АмСтист Ρ– Π“Ρ€Π°Π½Π°Ρ‚", + "type": "patchouli:text", + "anchor": "deep_garnet_amethyst" + }, + { + "Type": "patchouli:multiblock", + "name": "АмСтист", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 65%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Андрадит, Гросулар, Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Опал", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΡ€Π΅ΠΌΠ½Ρ–ΠΉ, Кисню$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΡ–Ρ€ΠΎΠΏ, Алмадін, БпСсартін", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 34$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Апатит Ρ– ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", + "type": "patchouli:text", + "anchor": "normal_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Апатит", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, Ѐосфору, Лісовий ПВБР$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚…(POβ‚„)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, Ѐосфору$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃(POβ‚„)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Ніобій$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚‚Nbβ‚‚O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 185$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 50$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚", + "title": "БастнСзит Ρ– ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "БастнСзит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π¦Π΅Ρ€Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Ѐосфору, Π Ρ–Π΄ΠΊΠΎΠ·Π΅ΠΌΠ΅Π»ΡŒΠ½Ρ–$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ?(POβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "НСодим", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): НСодим$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 180$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -40 β€” 30$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 26$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚ Ρ‚Π° ΠžΠ»Ρ–Π²Ρ–Π½", + "type": "patchouli:text", + "anchor": "normal_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ, ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠžΠ»ΠΈΠ²Ρ–Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mgβ‚‚Fe(SiOβ‚‚)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Бісмут (Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", + "type": "patchouli:text", + "anchor": "normal_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Бісмут", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 80%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Бісмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 11%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 9%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 140$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Бісмут (повСрхня)", + "type": "patchouli:text", + "anchor": "surface_bismuthinite" + }, + { + "Type": "patchouli:multiblock", + "name": "Бісмут", + "multiblock": { + "mapping": { + "0": "#forge:ores/bismuth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 90%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Бісмут$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Bi", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 7%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 3%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 185$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Боксит Ρ– Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "normal_bauxite" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, Π’ΠΈΡ‚Π°Π½Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 215$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 60$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Вугілля", + "type": "patchouli:text", + "anchor": "normal_coal" + }, + { + "Type": "patchouli:multiblock", + "name": "Вугілля", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 100%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): КовальськС ΠΏΠ°Π»ΠΈΠ²ΠΎ, Дистиляція$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 245$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 10$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 26$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚ Ρ– ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "deep_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ, ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MoSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mo", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 70$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Π°Π±Ρ€ΠΎ, Π”Ρ–ΠΎΡ€ΠΈΡ‚$(br2)НС моТСш Π·Π½Π°ΠΉΡ‚ΠΈ? Π“Π°Π±Ρ€ΠΎ Π·Π°Π²ΠΆΠ΄ΠΈ залягає Π½ΠΈΠΆΡ‡Π΅ $(thing)Π‘Π°Π·Π°Π»ΡŒΡ‚Ρƒ$(), Ρ– Π΄Π°ΠΌΠ±ΠΈ Π· Π“Π°Π±Ρ€ΠΎ Π² ΠΎΠΊΠ΅Π°Π½Π°Ρ… Ρ‚Π΅ΠΆ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ корисними!", + "title": "Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚ Ρ– ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚Ρƒ, Миш'яку$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CoAsS$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠΡ–ΠΊΠ΅Π»ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 210$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "normal_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 30$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π“Π΅Ρ‚ΠΈΡ‚ Ρ– Π ΡƒΠ±Ρ–Π½", + "type": "patchouli:text", + "anchor": "deep_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±Ρ–Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π₯Ρ€ΠΎΠΌΡƒ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 240$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 32$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Вапняк, ΠœΠ°Ρ€ΠΌΡƒΡ€", + "title": "Π“Π΅Ρ‚ΠΈΡ‚ Ρ– ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "deep_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 270$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -40 β€” 64$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Аргиліт, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π‘Π°Π·Π°Π»ΡŒΡ‚, Вапняк, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π“Ρ€Π°Π½Π°Ρ‚ Ρ– ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски", + "type": "patchouli:text", + "anchor": "normal_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Алмадін, Андрадит, Гросулар, ΠŸΡ–Ρ€ΠΎΠΏ, БпСсартін, Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "АзбСст", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, Π Π°ΠΊ Π»Π΅Π³Π΅Π½Ρ–Π²$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚‚Hβ‚„O₉$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 80$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” -16$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 16$(br)$(thing)Висота$(): 6$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Аргиліт, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π‘Π°Π·Π°Π»ΡŒΡ‚, Вапняк, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚", + "type": "patchouli:text", + "anchor": "normal_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Ρ„Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): $(l:mechanics/fire_clay)Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΠΎΠ²ΠΎΡ— Π³Π»ΠΈΠ½ΠΈ$(), Π“Ρ€Π°Ρ„Π΅Π½Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вугілля", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): КовальськС ΠΏΠ°Π»ΠΈΠ²ΠΎ, Дистиляція$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”Ρ–Π°ΠΌΠ°Π½Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½ΡŽΠ²Π°Ρ‡Ρ–Π², AE2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 260$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 32$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ (Π“Π»ΠΈΠ±ΠΎΠΊΠ΅)", + "type": "patchouli:text", + "anchor": "deep_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 75%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Висота$(): 12$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚ Ρ‚Π° Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚", + "title": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", + "type": "patchouli:text", + "anchor": "normal_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 135$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚", + "title": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)", + "type": "patchouli:text", + "anchor": "surface_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 150$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 100$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 40$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚", + "title": "ΠšΠ²Π°Ρ€Ρ†", + "type": "patchouli:text", + "anchor": "normal_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 54%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): LV ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Поклади Істинного ΠšΠ²Π°Ρ€Ρ†Ρƒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/certus_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): Applied Energistics 2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Π°Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): BaSOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 190$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 36$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "ΠšΡ–Π°Π½Ρ–Ρ‚, Блюда Ρ‚Π° Боксити", + "type": "patchouli:text", + "anchor": "normal_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΡ–Π°Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiOβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Блюда", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Si₃Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π¦Π΅Π·Ρ–ΠΉ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 190$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Вапняк, ΠœΠ°Ρ€ΠΌΡƒΡ€", + "title": "Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "normal_limonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 200$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 50$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ Ρ– Π’Π°Π½Π°Π΄Ρ–ΠΉ", + "type": "patchouli:text", + "anchor": "normal_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 63%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 22%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, Π’Π°Π½Π°Π΄Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 9%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 4%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π₯Ρ€ΠΎΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeCrβ‚‚Oβ‚„$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 195$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Аргиліт, Π‘Π°Π·Π°Π»ΡŒΡ‚, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”Π°Ρ†ΠΈΡ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†ΡŒ Ρ– Π’Π°Π½Ρ‚Π°Π»", + "type": "patchouli:text", + "anchor": "normal_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "Гроссуляр", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 37%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃Alβ‚‚Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "БпСсартін", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 12%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, Π’Π°Π½Ρ‚Π°Π»Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnTaβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 85$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "ΠœΡ–Π΄ΡŒ Ρ‚Π° Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 65%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 48$(br)$(thing)Висота$(): 9$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Ρ€Π°Π½Ρ–Ρ‚", + "title": "ΠœΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½Ρ– піски", + "type": "patchouli:text", + "anchor": "normal_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ЗСмля Π€ΡƒΠ»Π»Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гіпс", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): АлСбастрової (Ρ„Π°Ρ€Π±ΠΎΠ²Π°Π½ΠΎΡ—) Ρ†Π΅Π³Π»ΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaS(Hβ‚‚O)β‚‚Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 185$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 70$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 55$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Нафтові піски", + "type": "patchouli:text", + "anchor": "normal_oilsands" + }, + { + "Type": "patchouli:multiblock", + "name": "Нафтові піски", + "multiblock": { + "mapping": { + "0": "#forge:ores/oilsands" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 100%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Π²ΠΎΠ±ΠΎΠ΄ΠΈ\uD83D\uDEE2\uD83E\uDD85\uD83D\uDDFD", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 62$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 26$(br)$(thing)Висота$(): 6$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Π°Ρ†ΠΈΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚", + "type": "patchouli:text", + "anchor": "deep_garnet_opal" + }, + { + "Type": "patchouli:multiblock", + "name": "Опал", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΡ€Π΅ΠΌΠ½Ρ–ΠΉ, Кисню$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "АмСтист", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Андрадит, Гросулар, Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΡ–Ρ€ΠΎΠΏ, Алмадін, БпСсартін", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 100$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Ρ€Π°Π½Ρ–Ρ‚$(br2)НС ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π½Π°ΠΉΡ‚ΠΈ? Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΡˆΡƒΠΊΠ°Ρ‚ΠΈ Π² ΠΎΠΊΠ΅Π°Π½Π°Ρ…, Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½ΡŒ ΡΠ²Ρ–Ρ‚ΠΈΡ‚ΡŒΡΡ!", + "title": "РСдстоун, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ Ρ– Π ΡƒΠ±Ρ–Π½", + "type": "patchouli:text", + "anchor": "normal_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "РСдстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): РСдстоун$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±Ρ–Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π₯Ρ€ΠΎΠΌΡƒ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΡ–Π½ΠΎΠ²Π°Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π Ρ‚ΡƒΡ‚Ρ–$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 180$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 28$(br)$(thing)Висота$(): 8$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½", + "type": "patchouli:text", + "anchor": "deep_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Алмандін", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 38%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΎΠΏ", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 27%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„Ρ–Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 16%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π—Π΅Π»Π΅Π½ΠΈΠΉ сапфір", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 16%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 210$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π‘Π΅Π»Ρ–Ρ‚Ρ€Π° Ρ‚Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "type": "patchouli:text", + "anchor": "normal_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Нітрат ΠΊΠ°Π»Ρ–ΡŽ", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Азот$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—ΠΎΠ»ΠΎΡ‚a, Π‘Ρ€Ρ–Π±Π»Π°, РСдстоуна$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алуніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Siβ‚‚H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 165$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.2$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 40$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 250$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): Π’Ρ€ΡƒΠ±Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 50$(br)$(thing)Висота$(): 60$(br)$(thing)Радіус$(): 10$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ", + "type": "patchouli:text", + "anchor": "normal_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): MV ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π², Π€Ρ–Π»ΡŒΡ‚Ρ€ Ρ‚Π΅Π³Ρ–Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be₃Alβ‚‚Si₆Oβ‚β‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): ΠŸΠ΅Ρ€Π»ΠΈ Π•Π½Π΄Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΡ€Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -60 β€” 10$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "normal_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π›Π°Π·ΡƒΡ€ΠΈΡ‚Ρƒ, Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚Ρƒ, ΠŸΠΈΡ€ΠΈΡ‚Ρƒ, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚Ρƒ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 190$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -40 β€” 56$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 36$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚", + "title": "Боапостон, Вальк Ρ– Π’Ρ€ΠΎΠ½Π°", + "type": "patchouli:text", + "anchor": "normal_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Боапостон", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вальк", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΎΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 175$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 30 β€” 70$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Висота$(): 4$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π‘ΠΎΠ»Ρ– Ρ‚Π° Π‘ΡƒΡ€Π°", + "type": "patchouli:text", + "anchor": "normal_salt" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Π₯Π»ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Π»ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ, Π₯Π»ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΡƒΡ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/borax" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ, Π‘ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 180$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.375$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 20 β€” 60$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 35$(br)$(thing)Висота$(): 6$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ Ρ‚Π° Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "normal_spodumene" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/spodumene" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): LiAlSiβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Π»ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ, Π₯Π»ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/rock_salt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Π₯Π»ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lepidolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KLi₃Alβ‚„Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚", + "title": "Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", + "type": "patchouli:text", + "anchor": "normal_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Π»Π΅Π½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbS$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π‘Ρ€Ρ–Π±Π»Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Ρ€Ρ–Π±Π»Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π‘Π°Π·Π°Π»ΡŒΡ‚, ГнСйс, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "normal_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 145$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π‘Π°Π·Π°Π»ΡŒΡ‚, ГнСйс, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– Π‘Ρ–Ρ€ΠΊΠ°", + "type": "patchouli:text", + "anchor": "surface_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 55%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -32 β€” 75$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", + "type": "patchouli:text", + "anchor": "normal_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘ΡƒΡ€ΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 140$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 60 β€” 210$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)", + "type": "patchouli:text", + "anchor": "surface_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘ΡƒΡ€ΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 260$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 26$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 28$(br)$(thing)Висота$(): 7$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "deep_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π»Π°ΠΊΠΈΡ‚Π½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFβ‚‚Hβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFHβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” -20$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 24$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π£Ρ€Π°Π½Ρ–Ρ‚ & ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄", + "type": "patchouli:text", + "anchor": "deep_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π£Ρ€Π°Π½Ρƒ, Π’ΠΎΡ€Ρ–ΠΉ, Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (UOβ‚‚)₃ThPb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π£Ρ€Π°Π½Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): UOβ‚‚$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 200$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.25$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 20 β€” 217$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 60$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): АндСзит, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Π°Ρ†ΠΈΡ‚, Π Ρ–ΠΎΠ»Ρ–Ρ‚", + "title": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚ Ρ‚Π° Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", + "type": "patchouli:text", + "anchor": "surface_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 61%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¦Π΅ΠΎΠ»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/zeolite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 16%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Кисню$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaCaβ‚„Si₂₇Al₉(Hβ‚‚O)β‚‚β‚ˆO₇₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/realgar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 16%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Миш'яку$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Asβ‚„Sβ‚„$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 205$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 30$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 34$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аргиліт, Вапняк, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, ΠšΡ€Π΅ΠΉΠ΄Π°, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚ Ρ– ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "deep_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π₯Ρ€ΠΎΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeCrβ‚‚Oβ‚„$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, Π’Π°Π½Π°Π΄Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„Ρ–Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 0$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 20$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚", + "title": "Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ", + "type": "patchouli:text", + "anchor": "deep_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Ρ”Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ, Π›Ρ–Ρ‚Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Liβ‚‚(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Ρ–Ρ‚Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π›Ρ–Ρ‚Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 300$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): -64 β€” 0$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 30$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, ΠœΠ°Ρ€ΠΌΡƒΡ€, Π€Ρ–Π»Ρ–Ρ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ", + "title": "Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "deep_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ, ΠΡ–ΠΊΠ΅Π»ΡŽ, ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ°Π»Π°Π΄Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/palladium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/hazards.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/hazards.json index 6b98cf0c9..930f7c77c 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/hazards.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/hazards.json @@ -1,6 +1,6 @@ { "name": "Π ΠΎΠ±ΠΎΡ‚Π° Π· НСбСзпСками", - "icon": "gtceu:hazmat_headpiece", + "icon": "createdeco:decal_skull", "category": "tfc:tfg_ores", "priority": true, "sortnum": 1, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/index.json deleted file mode 100644 index e99d50665..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/index.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "name": "ІндСкс Ρ€ΡƒΠ΄", - "icon": "minecraft:diamond_pickaxe", - "category": "tfc:tfg_ores", - "priority": true, - "sortnum": 2, - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π¦Π΅ список усіх Ρ€ΡƒΠ΄ Ρƒ світі, відсортованих Π² Π°Π»Ρ„Π°Π²Ρ–Ρ‚Π½ΠΎΠΌΡƒ порядку, Π° ΠΏΠΎΡ‚Ρ–ΠΌ Π·Π° Ρ‚ΠΈΠΏΠΎΠΌ ΠΆΠΈΠ» - Π²Ρ–Π΄ Π½Π°ΠΉΠ±Π°Π³Π°Ρ‚ΡˆΠΈΡ… Π΄ΠΎ Π½Π°ΠΉΠ±Ρ–Π΄Π½Ρ–ΡˆΠΈΡ….$(br2)ΠΠ»ΡŒΠΌΠ°Π½Π΄Ρ–Π½: $(l:tfg_ores/deep_sapphire)35%$()$(br)ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ: $(l:tfg_ores/normal_bauxite)25%$()$(br)Алуніт: $(l:tfg_ores/normal_saltpeter)15%$()$(br)АмСтист: $(l:tfg_ores/deep_garnet_amethyst)65%$(), $(l:tfg_ores/deep_garnet_opal)25%$()$(br)Апатит: $(l:tfg_ores/normal_apatite)50%$()$(br)АзбСст: $(l:tfg_ores/normal_garnet_tin)25%$()$(br)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/normal_quartz)15%$()$(br)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠœΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ ΠŸΡ–ΡΠΎΠΊ: $(l:tfg_ores/normal_basaltic_sands)35%$()$(br)Бастназит: $(l:tfg_ores/normal_monazite)50%$()" - }, - { - "type": "patchouli:text", - "text": "Боксити: $(l:tfg_ores/normal_bauxite)45%$(), $(l:tfg_ores/normal_mica)25%$()$(br)Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/normal_olivine)35%$()$(br)Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ: $(l:tfg_ores/normal_beryllium)35%$()$(br)Бісмут: $(l:tfg_ores/surface_bismuth)90%$(), $(l:tfg_ores/normal_bismuth)80%$()$(br)Π‘ΠΈΠ½Ρ–ΠΉ Ρ‚ΠΎΠΏΠ°Π·: $(l:tfg_ores/deep_topaz)35%$()$(br)Π‘ΡƒΡ€Π°: $(l:tfg_ores/normal_salt)15%$()$(br)Π‘ΠΎΡ€Π½Ρ–Ρ‚: $(l:tfg_ores/deep_sheldonite)35%$(), $(l:tfg_ores/deep_topaz)15%$()$(br)ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚: $(l:tfg_ores/normal_lapis)15%$()$(br)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/surface_cassiterite)60%$(), $(l:tfg_ores/normal_cassiterite)40%$(), $(l:tfg_ores/surface_copper)5%$()$(br)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²ΠΈΠΉ ΠŸΡ–ΡΠΎΠΊ: $(l:tfg_ores/normal_garnet_tin)35%$()$(br)Істинний ΠΊΠ²Π°Ρ€Ρ†: $(l:tfg_ores/normal_quartz)30%$()$(br)Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚: $(l:tfg_ores/deep_topaz)25%$()$(br)Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚: $(l:tfg_ores/surface_copper)55%$(), $(l:tfg_ores/normal_copper)20%$()$(br)Π₯Ρ€ΠΎΠΌΡ–Ρ‚: $(l:tfg_ores/deep_magnetite)60%$()$(br)ΠšΠΈΠ½ΠΎΠ²Π°Ρ€ΡŒ: $(l:tfg_ores/normal_redstone)20%$()$(br)Вугілля: $(l:tfg_ores/normal_coal)100%$(), $(l:tfg_ores/normal_graphite)30%$()$(br)ΠšΠ°Π±Π°Π»ΡŒΡ‚: $(l:tfg_ores/normal_garnierite)15%$()" - }, - { - "type": "patchouli:text", - "text": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/normal_garnierite)20%$()$(br)ΠœΡ–Π΄ΡŒ: $(l:tfg_ores/normal_copper)65%$(), $(l:tfg_ores/normal_tetrahedrite)30%$(), $(l:tfg_ores/surface_tetrahedrite)20%$()$(br)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/normal_graphite)25%$()$(br)Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚: $(l:tfg_ores/normal_saltpeter)25%$(), $(l:tfg_ores/normal_garnet_tin)15%$()$(br)Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/normal_saltpeter)25%$()$(br)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/normal_beryllium)50%$()$(br)ЗСмля Π€ΡƒΠ»Π»Π΅Ρ€Π°: $(l:tfg_ores/normal_basaltic_sands)25%$()$(br)Π“Π°Π»Π΅Π½Π°: $(l:tfg_ores/normal_silver)30%$()$(br)Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²ΠΈΠΉ ΠŸΡ–ΡΠΎΠΊ: $(l:tfg_ores/normal_garnet_tin)25%$()$(br)Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚: $(l:tfg_ores/normal_garnierite)30%$()$(br)Π“Π»Π°ΡƒΠΊΠΎΠ½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ пісок:: $(l:tfg_ores/normal_lubricant)25%$(), $(l:tfg_ores/normal_olivine)15%$()$(br)Π“Π΅Ρ‚ΠΈΡ‚: $(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)Π—ΠΎΠ»ΠΎΡ‚ΠΎ: $(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)Π“Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок: $(l:tfg_ores/normal_basaltic_sands)25%$()$(br)Π“Ρ€Π°Ρ„Ρ–Ρ‚: $(l:tfg_ores/normal_graphite)45%$()$(br)Π—Π΅Π»Π΅Π½ΠΈΠΉ Π‘Π°ΠΏΡ„Ρ–Ρ€: $(l:tfg_ores/deep_sapphire)15%$()" - }, - { - "type": "patchouli:text", - "text": "Гроссулар: $(l:tfg_ores/normal_manganese)30%$()$(br)Гіпс: $(l:tfg_ores/normal_basaltic_sands)15%$()$(br)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚: $(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)Π†Π»ΠΌΠ΅Π½Ρ–Ρ‚: $(l:tfg_ores/normal_bauxite)30%$()$(br)Π—Π°Π»Ρ–Π·ΠΎ: $(l:tfg_ores/normal_copper)5%$()$(br)ΠšΠ°ΠΎΠ»Ρ–Π½Ρ–Ρ‚: $(l:tfg_ores/surface_kaolin)20%$()$(br)ΠšΡ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/normal_mica)35%$()$(br)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/normal_lapis)25%$()$(br)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/normal_lapis)35%$()$(br)Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ: $(l:tfg_ores/normal_silver)55%$(), $(l:tfg_ores/normal_bismuth)11%$(), $(l:tfg_ores/surface_bismuth)7%$()$(br)Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚: $(l:tfg_ores/normal_salt)15%$(), $(l:tfg_ores/normal_spodumene)15%$()$(br)Π›Ρ–Ρ‚Ρ–ΠΉ: $(l:tfg_ores/deep_scheelite)20%$()$(br)ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚: $(l:tfg_ores/normal_olivine)25%$()$(br)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/normal_magnetite)65%$(), $(l:tfg_ores/deep_magnetite)5%$()$(br)ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚: $(l:tfg_ores/deep_limonite)20%$(), $(l:tfg_ores/normal_limonite)15%$()$(br)Блюда: $(l:tfg_ores/normal_mica)25%$()" - }, - { - "type": "patchouli:text", - "text": "ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚: $(l:tfg_ores/deep_molybdenum)30%$()$(br)ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½: $(l:tfg_ores/deep_molybdenum)15%$()$(br)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/normal_monazite)25%$()$(br)Наквадак: $(l:tfg_ores/deep_naquadah)75%$()$(br)НСодим: $(l:tfg_ores/normal_monazite)25%$()$(br)ΠšΠ²Π°Ρ€Ρ† НиТнього Π‘Π²Ρ–Ρ‚Ρƒ: $(l:tfg_ores/normal_quartz)10%$()$(br)ΠΡ–ΠΊΠ΅Π»ΡŒ: $(l:tfg_ores/normal_garnierite)10%$()$(br)Нафтові піски: $(l:tfg_ores/normal_oilsands)100%$()$(br)ΠžΠ»Ρ–Π²Ρ–Π½: $(l:tfg_ores/normal_olivine)25%$()$(br)Опал: $(l:tfg_ores/deep_garnet_opal)55%$(), $(l:tfg_ores/deep_garnet_amethyst)15%$()$(br)ΠŸΠ°Π»Π°Π΄Ρ–ΠΉ: $(l:tfg_ores/deep_sheldonite)15%$()$(br)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/normal_garnierite)25%$(), $(l:tfg_ores/normal_lubricant)15%$()$(br)ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄: $(l:tfg_ores/deep_pitchblende)50%$()$(br)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/deep_sheldonite)25%$()$(br)ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ: $(l:tfg_ores/deep_naquadah)25%$()$(br)ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚: $(l:tfg_ores/normal_mica)15%$()$(br)ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚: $(l:tfg_ores/deep_molybdenum)15%$()" - }, - { - "type": "patchouli:text", - "text": "ΠŸΡ–Ρ€ΠΈΡ‚: $(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)ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/normal_apatite)15%$()$(br)ΠŸΡ–Ρ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚: $(l:tfg_ores/normal_manganese)20%$()$(br)ΠŸΡ–Ρ€ΠΎΠΏ: $(l:tfg_ores/deep_sapphire)25%$()$(br)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/normal_quartz)45%$()$(br)Π Π΅Π°Π»Π³Π°Ρ€: $(l:tfg_ores/surface_copper)15%$()$(br)Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/deep_garnet_amethyst)5%$(), $(l:tfg_ores/deep_garnet_opal)5%$()$(br)РСдстоун: $(l:tfg_ores/normal_redstone)45%$()$(br)Кам'яна Π‘Ρ–Π»ΡŒ: $(l:tfg_ores/normal_salt)40%$(), $(l:tfg_ores/normal_spodumene)20%$()$(br)Π ΡƒΠ±Ρ–Π½: $(l:tfg_ores/normal_redstone)35%$(), $(l:tfg_ores/deep_hematite)20%$()$(br)Π‘Ρ–Π»ΡŒ: $(l:tfg_ores/normal_salt)30%$(), $(l:tfg_ores/normal_spodumene)30%$()$(br)Π‘Π°ΠΏΡ„Ρ–Ρ€: $(l:tfg_ores/normal_saltpeter)35%$()$(br)Sapphire: $(l:tfg_ores/deep_sapphire)15%$(), $(l:tfg_ores/deep_magnetite)5%$()$(br)Π¨Π΅Ρ”Π»Ρ–Ρ‚: $(l:tfg_ores/deep_scheelite)45%$()$(br)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/deep_sheldonite)25%$()$(br)Π‘Ρ€Ρ–Π±Π»ΠΎ: $(l:tfg_ores/normal_silver)15%$()$(br)Боапстоун: $(l:tfg_ores/normal_lubricant)30%$()" - }, - { - "type": "patchouli:text", - "text": "Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚: $(l:tfg_ores/normal_lapis)25%$()$(br)БпСсартін: $(l:tfg_ores/normal_manganese)20%$()$(br)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/normal_sphalerite)40%$(), $(l:tfg_ores/surface_sphalerite)40%$(), $(l:tfg_ores/normal_sulfur)15%$()$(br)Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½: $(l:tfg_ores/normal_spodumene)35%$()$(br)Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚: $(l:tfg_ores/normal_tetrahedrite)20%$(), $(l:tfg_ores/surface_tetrahedrite)20%$()$(br)Π‘Ρ–Ρ€ΠΊΠ°: $(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)Вальк: $(l:tfg_ores/normal_lubricant)20%$()$(br)Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚: $(l:tfg_ores/normal_manganese)10%$()$(br)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€: $(l:tfg_ores/surface_tetrahedrite)60%$(), $(l:tfg_ores/normal_tetrahedrite)50%$()$(br)Π’ΠΎΡ€Ρ–ΠΉ: $(l:tfg_ores/normal_beryllium)15%$()$(br)Олово: $(l:tfg_ores/normal_cassiterite)60%$(), $(l:tfg_ores/surface_cassiterite)40%$()$(br)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/deep_topaz)25%$()$(br)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/normal_apatite)35%$()$(br)Π’Ρ€ΠΎΠ½Π°.: $(l:tfg_ores/normal_lubricant)10%$()$(br)Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ: $(l:tfg_ores/deep_scheelite)35%$()$(br)Π£Ρ€Π°Π½Ρ–Π½Ρ–Ρ‚: $(l:tfg_ores/deep_pitchblende)50%$()$(br)Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/normal_magnetite)25%$(), $(l:tfg_ores/deep_magnetite)15%$()" - }, - { - "type": "patchouli:text", - "text": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚: $(l:tfg_ores/deep_molybdenum)40%$()$(br)Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/deep_garnet_amethyst)5%$(), $(l:tfg_ores/deep_garnet_opal)5%$()$(br)Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»Ρ–ΠΌΠΎΠ½Ρ–Ρ‚: $(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)Π¦Π΅ΠΎΠ»Ρ–Ρ‚: $(l:tfg_ores/surface_copper)15%$()" - } - ] -} - diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_ore_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_ore_index.json new file mode 100644 index 000000000..2798ac2c0 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_ore_index.json @@ -0,0 +1,56 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "__ 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)__$(). 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": "__ Ore Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)АзбСст: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)Алмандін: $(l:tfg_ores/nether_vein_index#nether_sapphire)38%$(/l)$()$(li)Алуніт: $(l:tfg_ores/nether_vein_index#nether_saltpeter)15%$(/l)$()$(li)ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ: $(l:tfg_ores/nether_vein_index#nether_bauxite)25%$(/l)$()$(li)АмСтист: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)Антрацит: $(l:tfg_ores/nether_vein_index#nether_anthracite)100%$(/l)$()$(li)Апатит: $(l:tfg_ores/nether_vein_index#nether_apatite)50%$(/l)$()$(li)Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)35%$(/l)$()$(li)Π‘Π°Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_quartz)20%$(/l)$()$(li)БастнСзит: $(l:tfg_ores/nether_vein_index#nether_monazite)50%$(/l)$()$(li)Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_olivine)35%$(/l)$()$(li)Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ: $(l:tfg_ores/nether_vein_index#nether_beryllium)35%$(/l)$()$(li)Π‘Π»Π°ΠΊΠΈΡ‚Π½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)35%$(/l)$()$(li)Боксит: $(l:tfg_ores/nether_vein_index#nether_bauxite)45%$(/l), $(l:tfg_ores/nether_vein_index#nether_mica)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘ΠΎΡ€Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_sheldonite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_topaz)15%$(/l)$()$(li)Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)15%$(/l)$()$(li)Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ: $(l:tfg_ores/nether_vein_index#nether_scheelite)35%$(/l)$()$(li)Вугілля: $(l:tfg_ores/nether_vein_index#nether_graphite)15%$(/l)$()$(li)Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)40%$(/l)$()$(li)Π“Π°Π»Π΅Π½Π°: $(l:tfg_ores/nether_vein_index#nether_silver)30%$(/l)$()$(li)Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)30%$(/l)$()$(li)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_hematite)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)5%$(/l)$()$(li)Π“Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()$(li)Гіпс: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)15%$(/l)$()$(li)Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок: $(l:tfg_ores/nether_vein_index#nether_lubricant)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_olivine)15%$(/l)$()$(li)Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²ΠΈΠΉ пісок: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)25%$(/l)$()$(li)Π“Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l)$()$(li)Π“Ρ€Π°Ρ„Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_graphite)45%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Гроссуляр: $(l:tfg_ores/nether_vein_index#nether_manganese)37%$(/l)$()$(li)Π”Ρ–Π°ΠΌΠ°Π½Ρ‚: $(l:tfg_ores/nether_vein_index#nether_graphite)40%$(/l)$()$(li)Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚Π½: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_garnet_tin)15%$(/l)$()$(li)Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½: $(l:tfg_ores/nether_vein_index#nether_saltpeter)25%$(/l)$()$(li)Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)14%$(/l)$()$(li)Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)15%$(/l), $(l:tfg_ores/nether_vein_index#nether_gold)5%$(/l)$()$(li)Π—Π΅Π»Π΅Π½ΠΈΠΉ сапфір: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l)$()$(li)ЗСмля Π€ΡƒΠ»Π»Π΅Ρ€Π°: $(l:tfg_ores/nether_vein_index#nether_basaltic_sands)25%$(/l)$()$(li)Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_bauxite)30%$(/l)$()$(li)ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)15%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_cassiterite)40%$(/l)$()$(li)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски: $(l:tfg_ores/nether_vein_index#nether_garnet_tin)35%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ† НиТнього Π‘Π²Ρ–Ρ‚Ρƒ: $(l:tfg_ores/nether_vein_index#nether_quartz)54%$(/l)$()$(li)ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_quartz)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠšΡ–Π°Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_mica)35%$(/l)$()$(li)ΠšΡ–Π½ΠΎΠ²Π°Ρ€: $(l:tfg_ores/nether_vein_index#nether_redstone)20%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)15%$(/l)$()$(li)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)20%$(/l)$()$(li)Π›Π°Π·ΡƒΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)35%$(/l)$()$(li)Π›Ρ–Ρ‚Ρ–ΠΉ: $(l:tfg_ores/nether_vein_index#nether_scheelite)20%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)5%$(/l)$()$(li)ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_goethite)20%$(/l)$()$(li)ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)30%$(/l)$()$(li)ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ: $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()$(li)ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()$(li)Наквадак: $(l:tfg_ores/nether_vein_index#nether_naquadah)75%$(/l)$()$(li)НСодим: $(l:tfg_ores/nether_vein_index#nether_monazite)25%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠΡ–ΠΊΠ΅Π»ΡŒ: $(l:tfg_ores/nether_vein_index#nether_garnierite)10%$(/l)$()$(li)Нітрат ΠΊΠ°Π»Ρ–ΡŽ: $(l:tfg_ores/nether_vein_index#nether_saltpeter)35%$(/l)$()$(li)ΠžΠ»ΠΈΠ²Ρ–Π½: $(l:tfg_ores/nether_vein_index#nether_olivine)25%$(/l)$()$(li)Олово: $(l:tfg_ores/nether_vein_index#nether_cassiterite)60%$(/l)$()$(li)Опал: $(l:tfg_ores/nether_vein_index#nether_garnet)38%$(/l)$()$(li)ΠŸΠ°Π»Π°Π΄Ρ–ΠΉ: $(l:tfg_ores/nether_vein_index#nether_sheldonite)15%$(/l)$()$(li)ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_garnierite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_lubricant)15%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sulfur)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)25%$(/l), $(l:tfg_ores/nether_vein_index#nether_copper)10%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΠΏ: $(l:tfg_ores/nether_vein_index#nether_sapphire)27%$(/l)$()$(li)ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€: $(l:tfg_ores/nether_vein_index#nether_apatite)15%$(/l)$()$(li)ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_sheldonite)25%$(/l)$()$(li)ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ: $(l:tfg_ores/nether_vein_index#nether_naquadah)25%$(/l)$()$(li)ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_molybdenum)15%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_mica)15%$(/l)$()$(li)РСдстоун: $(l:tfg_ores/nether_vein_index#nether_redstone)45%$(/l)$()$(li)Π ΡƒΠ±Ρ–Π½: $(l:tfg_ores/nether_vein_index#nether_redstone)35%$(/l), $(l:tfg_ores/nether_vein_index#nether_hematite)20%$(/l)$()$(li)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ: $(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)$()$(li)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ: $(l:tfg_ores/nether_vein_index#nether_copper)65%$(/l), $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)30%$(/l)$()$(li)Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π‘Ρ€Ρ–Π±Π»Π°: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Π‘Π°ΠΏΡ„Ρ–Ρ€: $(l:tfg_ores/nether_vein_index#nether_sapphire)16%$(/l), $(l:tfg_ores/nether_vein_index#nether_magnetite)5%$(/l)$()$(li)Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ: $(l:tfg_ores/nether_vein_index#nether_silver)35%$(/l)$()$(li)Π‘ΠΈΠ»ΡŒΠ²Ρ–Π½: $(l:tfg_ores/nether_vein_index#nether_sylvite)100%$(/l)$()$(li)Π‘Ρ–Ρ€ΠΊΠ°: $(l:tfg_ores/nether_vein_index#nether_sulfur)50%$(/l), $(l:tfg_ores/nether_vein_index#nether_sphalerite)35%$(/l)$()$(li)Блюда: $(l:tfg_ores/nether_vein_index#nether_mica)25%$(/l)$()$(li)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/nether_vein_index#nether_beryllium)50%$(/l)$()$(li)Π‘ΠΌΠ°Ρ€Π°Π³Π΄: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)Боапостон: $(l:tfg_ores/nether_vein_index#nether_lubricant)30%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_lapis)25%$(/l)$()$(li)БпСсартін: $(l:tfg_ores/nether_vein_index#nether_manganese)25%$(/l)$()$(li)Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)20%$(/l)$()$(li)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_sphalerite)40%$(/l), $(l:tfg_ores/nether_vein_index#nether_sulfur)15%$(/l)$()$(li)Вальк: $(l:tfg_ores/nether_vein_index#nether_lubricant)20%$(/l)$()$(li)Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_manganese)12%$(/l)$()$(li)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_tetrahedrite)50%$(/l)$()$(li)Π’ΠΎΠΏΠ°Π·: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π’ΠΎΡ€Ρ–ΠΉ: $(l:tfg_ores/nether_vein_index#nether_beryllium)15%$(/l)$()$(li)Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_apatite)35%$(/l)$()$(li)Π’Ρ€ΠΎΠ½Π°: $(l:tfg_ores/nether_vein_index#nether_lubricant)10%$(/l)$()$(li)Π£Ρ€Π°Π½ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)Π£Ρ€Π°Π½Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_pitchblende)50%$(/l)$()$(li)Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_copper)20%$(/l)$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚: $(l:tfg_ores/nether_vein_index#nether_topaz)25%$(/l)$()$(li)Π₯Ρ€ΠΎΠΌΡ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_magnetite)60%$(/l)$()$(li)Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚: $(l:tfg_ores/nether_vein_index#nether_garnet)9%$(/l)$()$(li)Π¨Π΅Ρ”Π»Ρ–Ρ‚: $(l:tfg_ores/nether_vein_index#nether_scheelite)45%$(/l)$()$(li)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½: $(l:tfg_ores/nether_vein_index#nether_sheldonite)25%$(/l)$()", + "type": "patchouli:text" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_vein_index.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_vein_index.json new file mode 100644 index 000000000..069b78452 --- /dev/null +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/nether_vein_index.json @@ -0,0 +1,2853 @@ +{ + "__credits__": "This page was automatically generated by OresToFieldGuide.", + "name": "__ Vein Index", + "icon": "gtceu:pyroxenite_nether_quartz_ore", + "category": "tfc:tfg_ores", + "read_by_default": true, + "secret": false, + "pages": [ + { + "Type": "patchouli:text", + "text": "This is the $(thing)Vein Index$() for $(thing)__$(). Each Vein has details regarding its rarity, density, vein type, height found, sizes, what stones it spawns on, and more.", + "title": "__ Vein Index", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_garnet)АмСтист, Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_anthracite)Антрацит$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_apatite)Апатит Ρ– ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_monazite)БастнСзит Ρ– ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_olivine)Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚ Ρ‚Π° ΠžΠ»Ρ–Π²Ρ–Π½$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_bauxite)Боксит Ρ– Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_molybdenum)Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚ Ρ– ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnierite)Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚ Ρ– ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_hematite)Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_goethite)Π“Π΅Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_garnet_tin)Π“Ρ€Π°Π½Π°Ρ‚ Ρ– ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_graphite)Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_gold)Π—ΠΎΠ»ΠΎΡ‚ΠΎ Ρ‚Π° Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_cassiterite)ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_quartz)ΠšΠ²Π°Ρ€Ρ† НиТнього Π‘Π²Ρ–Ρ‚Ρƒ$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_mica)ΠšΡ–Π°Π½Ρ–Ρ‚, Блюда Ρ‚Π° Боксити$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_manganese)ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†ΡŒ Ρ– Π’Π°Π½Ρ‚Π°Π»$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_copper)ΠœΡ–Π΄ΡŒ Ρ‚Π° Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_basaltic_sands)ΠœΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½Ρ– піски$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_naquadah)Наквадак Ρ– ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_redstone)РСдстоун, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ Ρ– Π ΡƒΠ±Ρ–Π½$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sapphire)Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_saltpeter)Π‘Π΅Π»Ρ–Ρ‚Ρ€Π° Ρ‚Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sylvite)Π‘ΠΈΠ»ΡŒΠ²Ρ–Π½$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sulfur)Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_beryllium)Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lapis)Π‘ΠΌΠ°Ρ€Π°Π³Π΄, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_lubricant)Боапостон, Вальк Ρ– Π’Ρ€ΠΎΠ½Π°$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(li)$(l:tfg_ores/nether_vein_index#nether_silver)Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sphalerite)Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_tetrahedrite)Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_topaz)Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_pitchblende)Π£Ρ€Π°Π½Ρ–Ρ‚ & ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_magnetite)Π₯Ρ€ΠΎΠΌΡ–Ρ‚$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_scheelite)Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ$()$()$(li)$(l:tfg_ores/nether_vein_index#nether_sheldonite)Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚$()$()", + "type": "patchouli:text" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 230$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br)$(thing)Висота$(): 8$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "АмСтист, Опал Ρ– Π“Ρ€Π°Π½Π°Ρ‚", + "type": "patchouli:text", + "anchor": "nether_garnet" + }, + { + "Type": "patchouli:multiblock", + "name": "АмСтист", + "multiblock": { + "mapping": { + "0": "#forge:ores/amethyst" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 38%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚„Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Опал", + "multiblock": { + "mapping": { + "0": "#forge:ores/opal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 38%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΡ€Π΅ΠΌΠ½Ρ–ΠΉ, Кисню$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 14%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Андрадит, Гросулар, Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ Π³Ρ€Π°Π½Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/red_garnet" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 9%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΡ–Ρ€ΠΎΠΏ, Алмадін, БпСсартін", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 35$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.8$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 48 β€” 127$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 13$(br)$(thing)Висота$(): 4$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚", + "title": "Антрацит", + "type": "patchouli:text", + "anchor": "nether_anthracite" + }, + { + "Type": "patchouli:multiblock", + "name": "Антрацит", + "multiblock": { + "mapping": { + "0": "beneath:ore/nether_cursecoal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 100%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): КовальськС ΠΏΠ°Π»ΠΈΠ²ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 48 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 39$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс", + "title": "Апатит Ρ– ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", + "type": "patchouli:text", + "anchor": "nether_apatite" + }, + { + "Type": "patchouli:multiblock", + "name": "Апатит", + "multiblock": { + "mapping": { + "0": "#forge:ores/apatite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, Ѐосфору, Лісовий ПВБР$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚…(POβ‚„)₃Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tricalcium_phosphate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, Ѐосфору$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃(POβ‚„)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrochlore" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Ніобій$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Caβ‚‚Nbβ‚‚O₇", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 185$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "БастнСзит Ρ– ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_monazite" + }, + { + "Type": "patchouli:multiblock", + "name": "БастнСзит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bastnasite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π¦Π΅Ρ€Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CeCFO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/monazite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Ѐосфору, Π Ρ–Π΄ΠΊΠΎΠ·Π΅ΠΌΠ΅Π»ΡŒΠ½Ρ–$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ?(POβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "НСодим", + "multiblock": { + "mapping": { + "0": "#forge:ores/neodymium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): НСодим$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Nd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 250$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 31$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚ Ρ‚Π° ΠžΠ»Ρ–Π²Ρ–Π½", + "type": "patchouli:text", + "anchor": "nether_olivine" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bentonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ, ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnesite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠžΠ»ΠΈΠ²Ρ–Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/olivine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mgβ‚‚Fe(SiOβ‚‚)β‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 185$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Боксит Ρ– Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "nether_bauxite" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/ilmenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, Π’ΠΈΡ‚Π°Π½Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeTiO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ", + "multiblock": { + "mapping": { + "0": "#forge:ores/aluminium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 245$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 31$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚ Ρ– ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "nether_molybdenum" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΡƒΠ»ΡŒΡ„Π΅Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/wulfenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ, ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MoSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ", + "multiblock": { + "mapping": { + "0": "#forge:ores/molybdenum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mo", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ²Π΅Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/powellite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠΎΠ»Ρ–Π±Π΄Π΅Π½ΡƒΠΌ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaMoOβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 16 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Π°Π±Ρ€ΠΎ, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚ Ρ– ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_garnierite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnierite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): NiO", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobaltite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚Ρƒ, Миш'яку$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CoAsS$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Arsenicosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cobalt" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠšΠΎΠ±Π°Π»ΡŒΡ‚Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Co", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠΡ–ΠΊΠ΅Π»ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/nickel" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 35$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "nether_hematite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±Ρ–Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π₯Ρ€ΠΎΠΌΡƒ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 240$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 37$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π“Π΅Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_goethite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/malachite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚CHβ‚‚Oβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 270$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π“Ρ€Π°Π½Π°Ρ‚ Ρ– ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски", + "type": "patchouli:text", + "anchor": "nether_garnet_tin" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/garnet_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Алмадін, Андрадит, Гросулар, ΠŸΡ–Ρ€ΠΎΠΏ, БпСсартін, Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "АзбСст", + "multiblock": { + "mapping": { + "0": "#forge:ores/asbestos" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, Π Π°ΠΊ Π»Π΅Π³Π΅Π½Ρ–Π²$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚‚Hβ‚„O₉$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Asbestosis (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 120$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): Π’Ρ€ΡƒΠ±Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Висота$(): 60$(br)$(thing)Радіус$(): 12$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚", + "type": "patchouli:text", + "anchor": "nether_graphite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Ρ„Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/graphite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): $(l:mechanics/fire_clay)Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΠΎΠ²ΠΎΡ— Π³Π»ΠΈΠ½ΠΈ$(), Π“Ρ€Π°Ρ„Π΅Π½Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”Ρ–Π°ΠΌΠ°Π½Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/diamond" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½ΡŽΠ²Π°Ρ‡Ρ–Π², AE2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вугілля", + "multiblock": { + "mapping": { + "0": "#forge:ores/coal" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): КовальськС ΠΏΠ°Π»ΠΈΠ²ΠΎ, Дистиляція$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): C", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 260$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 37$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ Ρ‚Π° Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_gold" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 75%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/goethite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/yellow_limonite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeHOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_cassiterite" + }, + { + "Type": "patchouli:multiblock", + "name": "Олово", + "multiblock": { + "mapping": { + "0": "#forge:ores/tin" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sn", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/cassiterite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Олово$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 150$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Π°Π±Ρ€ΠΎ, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "ΠšΠ²Π°Ρ€Ρ† НиТнього Π‘Π²Ρ–Ρ‚Ρƒ", + "type": "patchouli:text", + "anchor": "nether_quartz" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ²Π°Ρ€Ρ† НиТнього Π‘Π²Ρ–Ρ‚Ρƒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/nether_quartz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 54%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): Applied Energistics 2$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/quartzite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): LV ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π²$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): SiOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/barite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Π°Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): BaSOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 41$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "ΠšΡ–Π°Π½Ρ–Ρ‚, Блюда Ρ‚Π° Боксити", + "type": "patchouli:text", + "anchor": "nether_mica" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΡ–Π°Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/kyanite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiOβ‚…", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Блюда", + "multiblock": { + "mapping": { + "0": "#forge:ores/mica" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Si₃Fβ‚‚O₁₀", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Боксит", + "multiblock": { + "mapping": { + "0": "#forge:ores/bauxite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pollucite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π¦Π΅Π·Ρ–ΠΉ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 195$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†ΡŒ Ρ– Π’Π°Π½Ρ‚Π°Π»", + "type": "patchouli:text", + "anchor": "nether_manganese" + }, + { + "Type": "patchouli:multiblock", + "name": "Гроссуляр", + "multiblock": { + "mapping": { + "0": "#forge:ores/grossular" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 37%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca₃Alβ‚‚Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "БпСсартін", + "multiblock": { + "mapping": { + "0": "#forge:ores/spessartine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mn₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrolusite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnOβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tantalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 12%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, Π’Π°Π½Ρ‚Π°Π»Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MnTaβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "ΠœΡ–Π΄ΡŒ Ρ‚Π° Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_copper" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 65%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcopyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CuFeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/hematite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Feβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 48 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 48$(br)$(thing)Висота$(): 9$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, Π“Ρ€Π°Π½Ρ–Ρ‚", + "title": "ΠœΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½Ρ– піски", + "type": "patchouli:text", + "anchor": "nether_basaltic_sands" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/basaltic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/granitic_mineral_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ЗСмля Π€ΡƒΠ»Π»Π΅Ρ€Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/fullers_earth" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Гіпс", + "multiblock": { + "mapping": { + "0": "#forge:ores/gypsum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): АлСбастрової (Ρ„Π°Ρ€Π±ΠΎΠ²Π°Π½ΠΎΡ—) Ρ†Π΅Π³Π»ΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaS(Hβ‚‚O)β‚‚Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 250$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 38$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 32$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Наквадак Ρ– ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ", + "type": "patchouli:text", + "anchor": "nether_naquadah" + }, + { + "Type": "patchouli:multiblock", + "name": "Наквадак", + "multiblock": { + "mapping": { + "0": "#forge:ores/naquadah" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 75%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Наквадак, Tritanium$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Nq", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/plutonium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΠ»ΡƒΡ‚ΠΎΠ½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pu²³⁹$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π“Ρ€Π°Π½Ρ–Ρ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "РСдстоун, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ Ρ– Π ΡƒΠ±Ρ–Π½", + "type": "patchouli:text", + "anchor": "nether_redstone" + }, + { + "Type": "patchouli:multiblock", + "name": "РСдстоун", + "multiblock": { + "mapping": { + "0": "#forge:ores/redstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): РСдстоун$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π ΡƒΠ±Ρ–Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/ruby" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π₯Ρ€ΠΎΠΌΡƒ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CrAlβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΡ–Π½ΠΎΠ²Π°Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/cinnabar" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π Ρ‚ΡƒΡ‚Ρ–$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): HgS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 180$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 33$(br)$(thing)Висота$(): 8$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π‘Π°ΠΏΡ„Ρ–Ρ€ Ρ– ΠΠ»ΡŒΠΌΠ°Π΄Ρ–Π½", + "type": "patchouli:text", + "anchor": "nether_sapphire" + }, + { + "Type": "patchouli:multiblock", + "name": "Алмандін", + "multiblock": { + "mapping": { + "0": "#forge:ores/almandine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 38%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π—Π°Π»Ρ–Π·ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Fe₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΎΠΏ", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrope" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 27%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚Mg₃Si₃O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„Ρ–Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 16%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π—Π΅Π»Π΅Π½ΠΈΠΉ сапфір", + "multiblock": { + "mapping": { + "0": "#forge:ores/green_sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 16%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 210$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π‘Π΅Π»Ρ–Ρ‚Ρ€Π° Ρ‚Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "type": "patchouli:text", + "anchor": "nether_saltpeter" + }, + { + "Type": "patchouli:multiblock", + "name": "Нітрат ΠΊΠ°Π»Ρ–ΡŽ", + "multiblock": { + "mapping": { + "0": "#forge:ores/saltpeter" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, Азот$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KNO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/diatomite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", + "multiblock": { + "mapping": { + "0": "#forge:ores/electrotine" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—ΠΎΠ»ΠΎΡ‚a, Π‘Ρ€Ρ–Π±Π»Π°, РСдстоуна$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Алуніт", + "multiblock": { + "mapping": { + "0": "#forge:ores/alunite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KAl₃Siβ‚‚H₆O₁₄", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 75$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.6$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 64$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 17$(br)$(thing)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€ Max Depth$(): 20$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π‘ΠΈΠ»ΡŒΠ²Ρ–Π½", + "type": "patchouli:text", + "anchor": "nether_sylvite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΈΠ»ΡŒΠ²Ρ–Π½", + "multiblock": { + "mapping": { + "0": "beneath:ore/blackstone_sylvite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 100%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): Π”ΠΎΠ±Ρ€ΠΈΠ²Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KCl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 165$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.3$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 50$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π‘Π°Π·Π°Π»ΡŒΡ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_sulfur" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 250$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): Π’Ρ€ΡƒΠ±Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Висота$(): 60$(br)$(thing)Радіус$(): 12$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ", + "type": "patchouli:text", + "anchor": "nether_beryllium" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄", + "multiblock": { + "mapping": { + "0": "#forge:ores/emerald" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): MV ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π², Π€Ρ–Π»ΡŒΡ‚Ρ€ Ρ‚Π΅Π³Ρ–Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be₃Alβ‚‚Si₆Oβ‚β‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/beryllium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для$(): ΠŸΠ΅Ρ€Π»ΠΈ Π•Π½Π΄Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Be$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Rubber Gloves)Berylliosis (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΡ€Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/thorium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΡ€Ρ–ΠΉ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Th", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 40$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "nether_lapis" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/lazurite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₆Si₆Caβ‚ˆNaβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sodalite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Al₃Si₃Naβ‚„Cl", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄", + "multiblock": { + "mapping": { + "0": "#forge:ores/lapis" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π›Π°Π·ΡƒΡ€ΠΈΡ‚Ρƒ, Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚Ρƒ, ΠŸΠΈΡ€ΠΈΡ‚Ρƒ, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚Ρƒ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/calcite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): CaCO₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 250$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.35$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 41$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Боапостон, Вальк Ρ– Π’Ρ€ΠΎΠ½Π°", + "type": "patchouli:text", + "anchor": "nether_lubricant" + }, + { + "Type": "patchouli:multiblock", + "name": "Боапостон", + "multiblock": { + "mapping": { + "0": "#forge:ores/soapstone" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок", + "multiblock": { + "mapping": { + "0": "#forge:ores/glauconite_sand" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): KMgβ‚‚Alβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Вальк", + "multiblock": { + "mapping": { + "0": "#forge:ores/talc" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΠ°Π³Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Mg₃Siβ‚„Hβ‚‚O₁₂", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pentlandite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ni₉Sβ‚ˆ", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Ρ€ΠΎΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/trona" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 10%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 160$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 24 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", + "type": "patchouli:text", + "anchor": "nether_silver" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π‘Ρ€Ρ–Π±Π»Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/silver" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Ρ€Ρ–Π±Π»Π°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ag", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lead" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π“Π°Π»Π΅Π½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/galena" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): PbS$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Face Mask)Weakly Poisonous (Inhalation)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_sphalerite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/sphalerite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 40%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π¦ΠΈΠ½ΠΊ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): ZnS", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ–Ρ€ΠΊΠ°", + "multiblock": { + "mapping": { + "0": "#forge:ores/sulfur" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π‘Ρ–Ρ€ΠΊΠ°$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΡ–Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pyrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeSβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 170$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.5$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 32 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 45$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_tetrahedrite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/tetrahedrite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu₃SbS₃Fe", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ", + "multiblock": { + "mapping": { + "0": "#forge:ores/copper" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 30%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cu", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/stibnite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π‘ΡƒΡ€ΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Sbβ‚‚S₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 180$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): Дискова Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 33$(br)$(thing)Висота$(): 7$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π’ΠΎΠΏΠ°Π· Ρ– Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚", + "type": "patchouli:text", + "anchor": "nether_topaz" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π»Π°ΠΊΠΈΡ‚Π½ΠΈΠΉ Ρ‚ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/blue_topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFβ‚‚Hβ‚‚O₆", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠΏΠ°Π·", + "multiblock": { + "mapping": { + "0": "#forge:ores/topaz" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚SiFHβ‚‚", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Π°Π»ΡŒΠΊΠΎΡ†ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chalcocite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚‚S", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 220$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.55$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 29$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π£Ρ€Π°Π½Ρ–Ρ‚ & ΠŸΡ–Ρ‚Ρ‡Π±Π»Π΅Π½Π΄", + "type": "patchouli:text", + "anchor": "nether_pitchblende" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/pitchblende" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π£Ρ€Π°Π½Ρƒ, Π’ΠΎΡ€Ρ–ΠΉ, Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (UOβ‚‚)₃ThPb$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π£Ρ€Π°Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/uraninite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 50%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π£Ρ€Π°Π½Ρƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): UOβ‚‚$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Full Protection)Carcinogenic (Any Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 205$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 39$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚", + "type": "patchouli:text", + "anchor": "nether_magnetite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π₯Ρ€ΠΎΠΌΡ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/chromite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 60%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π₯Ρ€ΠΎΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): FeCrβ‚‚Oβ‚„$(br)$(thing)НСбСзпСчний$(): $(c)$(t:Requires Rubber Gloves)Irritant (Skin Contact)$(/t)$()", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/vanadium_magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π—Π°Π»Ρ–Π·ΠΎ, Π’Π°Π½Π°Π΄Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): (Fe₃Oβ‚„)V", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° Π—ΠΎΠ»ΠΎΡ‚ΠΎ", + "multiblock": { + "mapping": { + "0": "#forge:ores/gold" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Au", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/magnetite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): Π§Π°Π²ΡƒΠ½$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Fe₃Oβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘Π°ΠΏΡ„Ρ–Ρ€", + "multiblock": { + "mapping": { + "0": "#forge:ores/sapphire" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 5%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Alβ‚‚O₃", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 180$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.45$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 25$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π“Π°Π±Ρ€ΠΎ, ГнСйс, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ", + "title": "Π¨Π΅Ρ”Π»Ρ–Ρ‚ Ρ‚Π° Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ", + "type": "patchouli:text", + "anchor": "nether_scheelite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Ρ”Π»Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/scheelite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 45%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Ca(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌ", + "multiblock": { + "mapping": { + "0": "#forge:ores/tungstate" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π’ΠΎΠ»ΡŒΡ„Ρ€Π°ΠΌΡƒ, Π›Ρ–Ρ‚Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Liβ‚‚(WO₃)O", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π›Ρ–Ρ‚Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/lithium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 20%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): Π›Ρ–Ρ‚Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Li", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:text", + "text": "$(thing)Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ$(): 250$(br)$(thing)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ$(): 0.4$(br)$(thing)Π’ΠΈΠΏ$(): ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)$(thing)Y$(): 0 β€” 128$(br)$(thing)Π ΠΎΠ·ΠΌΡ–Ρ€$(): 35$(br2)$(thing)Π’ΠΈΠΏΠΈ камСню$(): Π‘Π°Π·Π°Π»ΡŒΡ‚, ΠœΡ–Π³ΠΌΠ°Ρ‚ΠΈΡ‚, ΠŸΡ–Ρ€ΠΎΠΊΡΠ΅Π½Ρ–Ρ‚ΠΈ, Π’Ρ€Π°Π²Π΅Ρ€Ρ‚ΠΈΠ½", + "title": "Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚ Ρ– Π‘ΠΎΡ€Π½Ρ–Ρ‚", + "type": "patchouli:text", + "anchor": "nether_sheldonite" + }, + { + "Type": "patchouli:multiblock", + "name": "Π‘ΠΎΡ€Π½Ρ–Ρ‚", + "multiblock": { + "mapping": { + "0": "#forge:ores/bornite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 35%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠœΡ–Π΄ΡŒ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Cuβ‚…FeSβ‚„", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "Π¨Π΅Π»Π΄ΠΎΠ½Ρ–Ρ‚Π½", + "multiblock": { + "mapping": { + "0": "#forge:ores/cooperite" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ, ΠΡ–ΠΊΠ΅Π»ΡŽ, ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt₃NiSPd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ»Π°Ρ‚ΠΈΠ½Π°", + "multiblock": { + "mapping": { + "0": "#forge:ores/platinum" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 25%$(br)$(thing)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²$(): ΠŸΠ»Π°Ρ‚ΠΈΠ½ΠΈ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pt", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:multiblock", + "name": "ΠŸΠ°Π»Π°Π΄Ρ–ΠΉ", + "multiblock": { + "mapping": { + "0": "#forge:ores/palladium" + }, + "pattern": [ + [ + "0" + ], + [ + " " + ] + ] + }, + "enable_visualize": false, + "text": "$(thing)Відсоток$(): 15%$(br)$(thing)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ$(): ΠŸΠ°Π»Π°Π΄Ρ–ΡŽ$(br)$(thing)Π€ΠΎΡ€ΠΌΡƒΠ»Π°$(): Pd", + "type": "patchouli:multiblock" + }, + { + "Type": "patchouli:empty", + "draw_filler": true, + "type": "patchouli:empty" + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_apatite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_apatite.json deleted file mode 100644 index 3568a3d5a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_apatite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Апатит Ρ– ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", - "icon": "gtceu:raw_apatite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 220$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 34$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Апатит, Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚, ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€" - }, - { - "type": "patchouli:multiblock", - "name": "Апатит", - "multiblock": { - "mapping": { - "0": "#forge:ores/apatite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»ΡŒΡ†Ρ–ΠΉ, Ѐосфор, Лісовий ПВБР$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Caβ‚…(POβ‚„)₃Cl" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Ρ€ΠΈΠΊΠ°Π»ΡŒΡ†Ρ–ΠΉΡ„ΠΎΡΡ„Π°Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/tricalcium_phosphate" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, Ѐосфору$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ca₃(POβ‚„)β‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ€ΠΎΡ…Π»ΠΎΡ€", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrochlore" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Ніобій$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Caβ‚‚Nbβ‚‚O₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_basaltic_sands.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_basaltic_sands.json deleted file mode 100644 index 18ba4783a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_basaltic_sands.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "ΠœΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½Ρ– піски", - "icon": "gtceu:raw_basaltic_mineral_sand", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 160$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: Дискова Π²Π΅Π½Π°$(br)Y: -32 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 48$(br)Висота: 9$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ Ρ‚Π° Π³Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок, ЗСмля Π€ΡƒΠ»Π»Π΅Ρ€Π°, Гіпс" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°Π·Π°Π»ΡŒΡ‚ΠΎΠ²ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок", - "multiblock": { - "mapping": { - "0": "#forge:ores/basaltic_mineral_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§ΡƒΠ³ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)((Mgβ‚‚Fe(SiOβ‚‚)β‚‚)(CaCo₃)₃(SiOβ‚‚)β‚ˆCβ‚„)" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ€Π°Π½Ρ–Ρ‚Π½ΠΈΠΉ ΠΌΡ–Π½Π΅Ρ€Π°Π»ΡŒΠ½ΠΈΠΉ пісок", - "multiblock": { - "mapping": { - "0": "#forge:ores/granitic_mineral_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§ΡƒΠ³ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)((SiOβ‚‚)β‚„(KMg₃Al₃Fβ‚‚Si₃O₁₀))" - }, - { - "type": "patchouli:multiblock", - "name": "ЗСмля Π€ΡƒΠ»Π»Π΅Ρ€Π°", - "multiblock": { - "mapping": { - "0": "#forge:ores/fullers_earth" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MgSiβ‚„H(Hβ‚‚O)β‚„O₁₁" - }, - { - "type": "patchouli:multiblock", - "name": "Гіпс", - "multiblock": { - "mapping": { - "0": "#forge:ores/gypsum" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: АлСбастрової (Ρ„Π°Ρ€Π±ΠΎΠ²Π°Π½ΠΎΡ—) Ρ†Π΅Π³Π»ΠΈ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CaS(Hβ‚‚O)β‚‚Oβ‚„" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_bauxite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_bauxite.json deleted file mode 100644 index 183a5935b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_bauxite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Боксит Ρ– Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚", - "icon": "gtceu:raw_bauxite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 185$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Боксит, Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Боксит", - "multiblock": { - "mapping": { - "0": "#forge:ores/bauxite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 45%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΠΉ", - "multiblock": { - "mapping": { - "0": "#forge:ores/aluminium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ $(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Al" - }, - { - "type": "patchouli:multiblock", - "name": "Π†Π»ΡŒΠΌΠ΅Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/ilmenite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π’ΠΈΡ‚Π°Π½Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeTiO₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_beryllium.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_beryllium.json deleted file mode 100644 index 6b3eaab90..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_beryllium.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄ Ρ– Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ", - "icon": "minecraft:emerald", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 180$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠΏ: Π’Ρ€ΡƒΠ±Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 50$(br)Висота: 60$(br)Радіус: 10$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ, Π‘ΠΌΠ°Ρ€Π°Π³Π΄, Π’ΠΎΡ€Ρ–ΠΉ" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Ρ€ΠΈΠ»Ρ–ΠΉ", - "multiblock": { - "mapping": { - "0": "#forge:ores/beryllium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: ΠŸΠ΅Ρ€Π»ΠΈ Π•Π½Π΄Π°$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Be$(br)НСбСзпСчний: Π’Π°ΠΊ" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄", - "multiblock": { - "mapping": { - "0": "#forge:ores/emerald" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: MV ΠΊΠΎΠΌΠΏΠΎΠ½Π΅Π½Ρ‚Ρ–Π², Π€Ρ–Π»ΡŒΡ‚Ρ€ Ρ‚Π΅Π³Ρ–Π² ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚Ρ–Π²$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Be₃Alβ‚‚Si₆Oβ‚β‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "Π’ΠΎΡ€Ρ–ΠΉ", - "multiblock": { - "mapping": { - "0": "#forge:ores/thorium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: Нічого!$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Th" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_bismuth.json deleted file mode 100644 index c8021bb77..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_bismuth.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Бісмут (Π—Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", - "icon": "gtceu:raw_bismuth", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 170$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Вісмутиніт$(br2)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Ρ‚Ρ–Π»ΡŒΠΊΠΈ для вісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ." - }, - { - "type": "patchouli:multiblock", - "name": "Бісмут", - "multiblock": { - "mapping": { - "0": "#forge:ores/bismuth" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 80%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Бісмут$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Bi" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ–Ρ€ΠΊΠ°", - "multiblock": { - "mapping": { - "0": "#forge:ores/sulfur" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 9%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/lead" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 11%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pb$(br)НСбСзпСчний: Π’Π°ΠΊ" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_cassiterite.json deleted file mode 100644 index d20a19d08..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_cassiterite.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", - "icon": "gtceu:raw_cassiterite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 170$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/cassiterite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 40%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Олово", - "multiblock": { - "mapping": { - "0": "#forge:ores/tin" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 60%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sn" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_coal.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_coal.json deleted file mode 100644 index f916ebcc0..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_coal.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "Вугілля", - "icon": "minecraft:coal", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 215$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.55$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 0 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 60$(br2)Π’ΠΈΠΏΠΈ камСню: Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Вугілля" - }, - { - "type": "patchouli:multiblock", - "name": "Вугілля", - "multiblock": { - "mapping": { - "0": "#forge:ores/coal" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 100%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: КовальськС ΠΏΠ°Π»ΠΈΠ²ΠΎ, Дистиляція$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_copper.json deleted file mode 100644 index 0a21e2831..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_copper.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "ΠœΡ–Π΄ΡŒ Ρ‚Π° Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚", - "icon": "minecraft:raw_copper", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 170$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚ $(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΡ–Π΄ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/copper" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 65%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/chalcopyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CuFeSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π—Π°Π»Ρ–Π·ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/iron" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Fe" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 10%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_garnet_tin.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_garnet_tin.json deleted file mode 100644 index 9c0410159..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_garnet_tin.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π“Ρ€Π°Π½Π°Ρ‚ Ρ– ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски", - "icon": "gtceu:raw_garnet_sand", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 360$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -40 - 64$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Всі$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ΠΎΠ²Ρ– піски", - "multiblock": { - "mapping": { - "0": "#forge:ores/cassiterite_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ€Π°Π½Π°Ρ‚ΠΎΠ²ΠΈΠΉ пісок", - "multiblock": { - "mapping": { - "0": "#forge:ores/garnet_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Алмадін, Андрадит, Гросулар, ΠŸΡ–Ρ€ΠΎΠΏ, БпСсартін, Π£Π²Π°Ρ€ΠΎΠ²Ρ–Ρ‚" - }, - { - "type": "patchouli:multiblock", - "name": "АзбСст", - "multiblock": { - "mapping": { - "0": "#forge:ores/asbestos" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Ρ–ΡŽ, Π Π°ΠΊ Π»Π΅Π³Π΅Π½Ρ–Π²$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mg₃Siβ‚‚Hβ‚„O₉$(br)НСбСзпСчний: Π’Π°ΠΊ" - }, - { - "type": "patchouli:multiblock", - "name": "Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚Π½", - "multiblock": { - "mapping": { - "0": "#forge:ores/diatomite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π—Π°Π»Ρ–Π·Π°, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_garnierite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_garnierite.json deleted file mode 100644 index b05ed2fde..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_garnierite.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "name": "Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚ Ρ– ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", - "icon": "gtceu:raw_garnierite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 140$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π°Ρ€Π½Ρ–Ρ”Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/garnierite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NiO" - }, - { - "type": "patchouli:multiblock", - "name": "ΠΡ–ΠΊΠ΅Π»ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/nickel" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 10%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ni" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/cobaltite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠΎΠ±Π°Π»ΡŒΡ‚Ρƒ, Миш'яку$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CoAsS$(br)НСбСзпСчний: Π’Π°ΠΊ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pentlandite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ni₉Sβ‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠΎΠ±Π°Π»ΡŒΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/cobalt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠšΠΎΠ±Π°Π»ΡŒΡ‚$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Co" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_gold.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_gold.json deleted file mode 100644 index 9358e8b8c..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_gold.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ, Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚ Ρ‚Π° Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "icon": "minecraft:raw_gold", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 170$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: Дискова Π²Π΅Π½Π°$(br)Y: -32 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br)Висота: 12$(br2)Π’ΠΈΠΏΠΈ камСню: Rhyolite, Basalt, Andesite, Dacite, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 55%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_graphite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_graphite.json deleted file mode 100644 index 48364f224..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_graphite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π“Ρ€Π°Ρ„Ρ–Ρ‚ Ρ– Π”Ρ–Π°ΠΌΠ°Π½Ρ‚", - "icon": "minecraft:diamond", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 175$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.35$(br)Π’ΠΈΠΏ: Π’Ρ€ΡƒΠ±Π½Π° Π²Π΅Π½Π°$(br)Y: -64 - 100$(br)Висота: 60$(br)Радіус: 12$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π”Ρ–Π°ΠΌΠ°Π½Ρ‚, Π“Ρ€Π°Ρ„Ρ–Ρ‚, Вугілля$(br2)НС моТСш Π·Π½Π°ΠΉΡ‚ΠΈ? Π“Π°Π±Ρ€ΠΎ Π·Π°Π²ΠΆΠ΄ΠΈ залягає Π½ΠΈΠΆΡ‡Π΅ $(thing)Π‘Π°Π·Π°Π»ΡŒΡ‚Ρƒ$(), Ρ– Π΄Π°ΠΌΠ±ΠΈ Π· Π“Π°Π±Ρ€ΠΎ Π² ΠΎΠΊΠ΅Π°Π½Π°Ρ… Ρ‚Π΅ΠΆ ΠΌΠΎΠΆΡƒΡ‚ΡŒ Π±ΡƒΡ‚ΠΈ корисними!" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Ρ€Π°Ρ„Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/graphite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 45%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: $(l:mechanics/fire_clay)Π’ΠΎΠ³Π½Π΅Ρ‚Ρ€ΠΈΠ²ΠΊΠΎΠ²ΠΎΡ— Π³Π»ΠΈΠ½ΠΈ$(), Π“Ρ€Π°Ρ„Π΅Π½Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - }, - { - "type": "patchouli:multiblock", - "name": "Π”Ρ–Π°ΠΌΠ°Π½Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/diamond" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: ΠŸΠΎΠ΄Ρ€Ρ–Π±Π½ΡŽΠ²Π°Ρ‡Ρ–Π², AE2$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - }, - { - "type": "patchouli:multiblock", - "name": "Вугілля", - "multiblock": { - "mapping": { - "0": "#forge:ores/coal" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: КовальськС ΠΏΠ°Π»ΠΈΠ²ΠΎ, Дистиляція$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: C" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_hematite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_hematite.json deleted file mode 100644 index 68bb740c0..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_hematite.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚ Ρ‚Π° Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚", - "icon": "gtceu:raw_hematite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 210$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, Π›ΠΈΠΌΠΎΠ½Ρ–Ρ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_lapis.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_lapis.json deleted file mode 100644 index ce4c58eb4..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_lapis.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄, Π›Π°Π·ΡƒΡ€ΠΈΡ‚ Ρ‚Π° Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", - "icon": "minecraft:lapis_lazuli", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 170$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -60 - 10$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 50$(br2)Π’ΠΈΠΏΠΈ камСню: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π›Π°Π·ΡƒΡ€ΠΈΡ‚, Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚, Π‘ΠΌΠ°Ρ€Π°Π³Π΄, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚$(br2)Π’ основному Π²ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для Ρ€Ρ–Π΄ΠΈΠ½Π½ΠΈΡ… Ρ„Ρ–Π»ΡŒΡ‚Ρ€Ρ–Π²." - }, - { - "type": "patchouli:multiblock", - "name": "Π›Π°Π·ΡƒΡ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/lazurite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Al₆Si₆Caβ‚ˆNaβ‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/sodalite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, ΠΠ°Ρ‚Ρ€Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Al₃Si₃Naβ‚„Cl" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/calcite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CaCO₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΌΠ°Ρ€Π°Π³Π΄", - "multiblock": { - "mapping": { - "0": "#forge:ores/lapis" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π›Π°Π·ΡƒΡ€ΠΈΡ‚Ρƒ, Π‘ΠΎΠ΄Π°Π»Ρ–Ρ‚Ρƒ, ΠŸΡ–Ρ€ΠΈΡ‚Ρƒ, ΠšΠ°Π»ΡŒΡ†ΠΈΡ‚Ρƒ" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_limonite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_limonite.json deleted file mode 100644 index d64979e70..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_limonite.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π›Ρ–ΠΌΠΎΠ½Ρ–Ρ‚", - "icon": "gtceu:raw_yellow_limonite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 190$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: ΠœΠ°Ρ€ΠΌΡƒΡ€, Вапняк$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π›ΠΈΠΌΠΎΠ½Ρ–Ρ‚, Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚, ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π–ΠΎΠ²Ρ‚ΠΈΠΉ Π»ΠΈΠΌΠΎΠ½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/yellow_limonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/goethite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½ $(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeHOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π΅ΠΌΠ°Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/hematite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Feβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π»Π°Ρ…Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/malachite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cuβ‚‚CHβ‚‚Oβ‚…" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_lubricant.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_lubricant.json deleted file mode 100644 index 1f6d6c063..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_lubricant.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "name": "Боапостон, Вальк Ρ– Π’Ρ€ΠΎΠ½Π°", - "icon": "gtceu:raw_soapstone", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 190$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -40 - 56$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 36$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Боапостон, Вальк, Π“Π»Π°ΡƒΠΊΠΎΠ½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ пісок, ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚, Π’Ρ€ΠΎΠ½Π°" - }, - { - "type": "patchouli:multiblock", - "name": "Боапостон", - "multiblock": { - "mapping": { - "0": "#forge:ores/soapstone" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mg₃Siβ‚„Hβ‚‚O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "Вальк", - "multiblock": { - "mapping": { - "0": "#forge:ores/talc" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mg₃Siβ‚„Hβ‚‚O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π»Π°Π²ΠΊΠΎΠ½Ρ–Ρ‚Π½ΠΈΠΉ пісок", - "multiblock": { - "mapping": { - "0": "#forge:ores/glauconite_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KMgβ‚‚Alβ‚„Hβ‚‚O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠ΅Π½Ρ‚Π»Π°Π½Π΄ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pentlandite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠΡ–ΠΊΠ΅Π»ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ni₉Sβ‚ˆ" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Ρ€ΠΎΠ½Π°", - "multiblock": { - "mapping": { - "0": "#forge:ores/trona" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 10%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Na₃Cβ‚‚H(Hβ‚‚O)β‚‚O₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_magnetite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_magnetite.json deleted file mode 100644 index f7da59596..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_magnetite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚ Ρ– Π’Π°Π½Π°Π΄Ρ–ΠΉ", - "icon": "gtceu:raw_magnetite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 200$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π΅ Π·ΠΎΠ»ΠΎΡ‚ΠΎ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/magnetite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 65%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Fe₃Oβ‚„" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π°Π½Π°Π΄Ρ–Ρ”Π²ΠΈΠΉ ΠΌΠ°Π³Π½Π΅Ρ‚ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/vanadium_magnetite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π—Π°Π»Ρ–Π·Π°, Π’Π°Π½Π°Π΄Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Fe₃Oβ‚„)V" - }, - { - "type": "patchouli:multiblock", - "name": "Π—ΠΎΠ»ΠΎΡ‚ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/gold" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 10%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π—ΠΎΠ»ΠΎΡ‚ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Au" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_manganese.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_manganese.json deleted file mode 100644 index e61e1ada2..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_manganese.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "ΠœΠ°Ρ€Π³Π°Π½Π΅Ρ†ΡŒ Ρ– Π’Π°Π½Ρ‚Π°Π»", - "icon": "gtceu:raw_grossular", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 195$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Гроссуляр, БпСсартин, ΠŸΡ–Ρ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚, Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Гроссуляр", - "multiblock": { - "mapping": { - "0": "#forge:ores/grossular" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»ΡŒΡ†Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ca₃Alβ‚‚Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "БпСсартин", - "multiblock": { - "mapping": { - "0": "#forge:ores/spessartine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚Mn₃Si₃O₁₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ€ΠΎΠ»ΡŽΠ·ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrolusite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Π€ΠΎΡ€ΠΌΡƒΠ»Π°: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π°Π½Ρ‚Π°Π»Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/tantalite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 10%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, Π’Π°Π½Ρ‚Π°Π»Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MnTaβ‚‚O₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_mica.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_mica.json deleted file mode 100644 index bf4317b58..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_mica.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "ΠšΡ–Π°Π½Ρ–Ρ‚, Блюда Ρ‚Π° Боксити", - "icon": "gtceu:raw_mica", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 190$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: Cluster Vein$(br)Y: 0 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 36$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠšΡ–Π°Π½Ρ–Ρ‚, Блюда, Боксити, ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΡ–Π°Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/kyanite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚SiOβ‚…" - }, - { - "type": "patchouli:multiblock", - "name": "Блюда", - "multiblock": { - "mapping": { - "0": "#forge:ores/mica" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KAl₃Si₃Fβ‚‚O₁₀" - }, - { - "type": "patchouli:multiblock", - "name": "Боксит", - "multiblock": { - "mapping": { - "0": "#forge:ores/bauxite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Alβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΠΎΠ»ΡŽΡ†ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pollucite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Csβ‚‚Alβ‚‚Siβ‚„(Hβ‚‚O)β‚‚O₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_monazite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_monazite.json deleted file mode 100644 index c47e280f7..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_monazite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "БастнСзит Ρ– ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", - "icon": "gtceu:monazite_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 185$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: Cluster Vein$(br)Y: -32 - 50$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: БастнСзит ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚, НСодим" - }, - { - "type": "patchouli:multiblock", - "name": "БастнСзит", - "multiblock": { - "mapping": { - "0": "#forge:ores/bastnasite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π¦Π΅Ρ€Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CeCFO₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠΎΠ½Π°Ρ†ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/monazite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Ѐосфор, Π Ρ–Π΄ΠΊΠΎΠ·Π΅ΠΌΠ΅Π»ΡŒΠ½Ρ–$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ?(POβ‚„)" - }, - { - "type": "patchouli:multiblock", - "name": "НСодим", - "multiblock": { - "mapping": { - "0": "#forge:ores/neodymium" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Nd" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_oilsands.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_oilsands.json deleted file mode 100644 index b9804fa40..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_oilsands.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "Нафтові піски", - "icon": "gtceu:raw_oilsands", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 185$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.20$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 0 - 70$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 55$(br2)Π’ΠΈΠΏΠΈ камСню: Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Нафтові піски$(br2)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ як ΠΏΠ°Π»ΠΈΠ²ΠΎ Ρ€Π°Π½Π½ΡŒΠΎΠ³ΠΎ згоряння." - }, - { - "type": "patchouli:multiblock", - "name": "Нафтові піски", - "multiblock": { - "mapping": { - "0": "#forge:ores/oilsands" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 100%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π‘Π²ΠΎΠ±ΠΎΠ΄ΠΈπŸ›’πŸ¦…πŸ—½" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_olivine.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_olivine.json deleted file mode 100644 index 944d0277b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_olivine.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚ Ρ‚Π° ΠžΠ»Ρ–Π²Ρ–Π½", - "icon": "gtceu:olivine_gem", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 180$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -40 - 30$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 26$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚, ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚, ΠžΠ»Ρ–Π²Ρ–Π½, Π“Π»Π°ΡƒΠΊΠΎΠ½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ пісок" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Π½Ρ‚ΠΎΠ½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/bentonite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaMg₆Si₁₂Hβ‚„(Hβ‚‚O)β‚…O₃₆" - }, - { - "type": "patchouli:multiblock", - "name": "ΠœΠ°Π³Π½Π΅Π·ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/magnesite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: MgCO₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠžΠ»ΠΈΠ²Ρ–Π½", - "multiblock": { - "mapping": { - "0": "#forge:ores/olivine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Mgβ‚‚Fe(SiOβ‚‚)β‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π»Π°ΡƒΠΊΠΎΠ½Ρ–Ρ‚ΠΎΠ²ΠΈΠΉ пісок", - "multiblock": { - "mapping": { - "0": "#forge:ores/glauconite_sand" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠœΠ°Π³Π½Π΅Π·Ρ–Ρ—, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KMgβ‚‚Alβ‚„Hβ‚‚O₁₂" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_quartz.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_quartz.json deleted file mode 100644 index 1fe29ddaf..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_quartz.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "ΠšΠ²Π°Ρ€Ρ†", - "icon": "minecraft:quartz", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 150$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 100$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘ΡƒΡ‚ΠΎΠ½ Істинного ΠšΠ²Π°Ρ€Ρ†Ρƒ" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/quartzite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 45%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SiOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Поклади Істинного ΠšΠ²Π°Ρ€Ρ†Ρƒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/certus_quartz" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: Applied Energistics 2$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SiOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ²Π°Ρ€Ρ† НиТнього Π‘Π²Ρ–Ρ‚Ρƒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/nether_quartz" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 10%$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ для: Applied Energistics 2$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SiOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/barite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π‘Π°Ρ€Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: BaSOβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_redstone.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_redstone.json deleted file mode 100644 index a832ba179..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_redstone.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "РСдстоун, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ Ρ– Π ΡƒΠ±Ρ–Π½", - "icon": "minecraft:redstone", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 160$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 100$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: РСдстоун, Π ΡƒΠ±Ρ–Π½, ΠšΡ–Π½ΠΎΠ²Π°Ρ€ $(br2)НС ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π½Π°ΠΉΡ‚ΠΈ? Π‘ΠΏΡ€ΠΎΠ±ΡƒΠΉΡ‚Π΅ ΠΏΠΎΡˆΡƒΠΊΠ°Ρ‚ΠΈ Π² ΠΎΠΊΠ΅Π°Π½Π°Ρ…, Π§Π΅Ρ€Π²ΠΎΠ½ΠΈΠΉ ΠΊΠ°ΠΌΡ–Π½ΡŒ ΡΠ²Ρ–Ρ‚ΠΈΡ‚ΡŒΡΡ!" - }, - { - "type": "patchouli:multiblock", - "name": "РСдстоун", - "multiblock": { - "mapping": { - "0": "#forge:ores/redstone" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 45%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: РСдстоун$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π ΡƒΠ±Ρ–Π½", - "multiblock": { - "mapping": { - "0": "#forge:ores/ruby" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π₯Ρ€ΠΎΠΌΡƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CrAlβ‚‚O₃" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΡ–Π½ΠΎΠ²Π°Ρ€", - "multiblock": { - "mapping": { - "0": "#forge:ores/cinnabar" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π Ρ‚ΡƒΡ‚Ρ–$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: HgS$(br)НСбСзпСчний: Yes" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_salt.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_salt.json deleted file mode 100644 index eb191fb74..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_salt.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π‘ΠΎΠ»Ρ– Ρ‚Π° Π‘ΡƒΡ€Π°", - "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: Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк$(br2)Indicator: Salt lick, Rock salt, Lepidolite, Borax" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/rock_salt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 40%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»Ρ–ΡŽ, Π₯Π»ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KCl" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ–Π»ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/salt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Високого ΠšΡ€ΠΎΠ²'яного Виску$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaCl" - }, - { - "type": "patchouli:multiblock", - "name": "Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/lepidolite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»Ρ–ΡŽ, Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KLi₃Alβ‚„Fβ‚‚O₁₀" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΡƒΡ€Π°", - "multiblock": { - "mapping": { - "0": "#forge:ores/borax" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π‘ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Naβ‚‚Bβ‚„(Hβ‚‚O)₁₀O₇" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_saltpeter.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_saltpeter.json deleted file mode 100644 index fd15502a0..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_saltpeter.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π‘Π΅Π»Ρ–Ρ‚Ρ€Π° Ρ‚Π° Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", - "icon": "gtceu:raw_saltpeter", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 210$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.3$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 50$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π΅Π»Ρ–Ρ‚Ρ€Π°, Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚, Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½, Алуніт" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π΅Π»Ρ–Ρ‚Ρ€Π°", - "multiblock": { - "mapping": { - "0": "#forge:ores/saltpeter" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KNO₃" - }, - { - "type": "patchouli:multiblock", - "name": "Π”Ρ–Π°Ρ‚ΠΎΠΌΡ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/diatomite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π—Π°Π»Ρ–Π·Π°, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (SiOβ‚‚)β‚ˆ(Feβ‚‚O₃)(Alβ‚‚O₃)" - }, - { - "type": "patchouli:multiblock", - "name": "Π•Π»Π΅ΠΊΡ‚Ρ€ΠΎΡ‚ΠΈΠ½", - "multiblock": { - "mapping": { - "0": "#forge:ores/electrotine" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π—ΠΎΠ»ΠΎΡ‚Π°, Π‘Ρ€Ρ–Π±Π»Π°, РСдстоуна$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: (Si(FeSβ‚‚)β‚…(CrAlβ‚‚O₃)Hg₃)(AgAu)" - }, - { - "type": "patchouli:multiblock", - "name": "Алуніт", - "multiblock": { - "mapping": { - "0": "#forge:ores/alunite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KAl₃Siβ‚‚H₆O₁₄" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_silver.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_silver.json deleted file mode 100644 index 27293d868..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_silver.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π‘Ρ€Ρ–Π±Π»ΠΎ, Π“Π°Π»Π΅Π½ Ρ– Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", - "icon": "gtceu:raw_silver", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 160$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, ГнСйс$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π΅ срібло" - }, - { - "type": "patchouli:multiblock", - "name": "Π“Π°Π»Π΅Π½Π°", - "multiblock": { - "mapping": { - "0": "#forge:ores/galena" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: PbS$(br)НСбСзпСчний: Yes" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ€Ρ–Π±Π»ΠΎ", - "multiblock": { - "mapping": { - "0": "#forge:ores/silver" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π‘Ρ€Ρ–Π±Π»ΠΎ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Ag" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/lead" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 55%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pb$(br)НСбСзпСчний: Yes" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_sphalerite.json deleted file mode 100644 index 11a4637dc..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_sphalerite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– ΠŸΡ–Ρ€ΠΈΡ‚", - "icon": "gtceu:raw_sphalerite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 170$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.4$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: -32 - 75$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 40$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, Marble$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/sphalerite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 40%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π¦ΠΈΠ½ΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ZnS" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ–Ρ€ΠΊΠ°", - "multiblock": { - "mapping": { - "0": "#forge:ores/sulfur" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 25%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_spodumene.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_spodumene.json deleted file mode 100644 index 8d267678a..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_spodumene.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½ Ρ‚Π° Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚", - "icon": "gtceu:raw_spodumene", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 180$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.375$(br)Π’ΠΈΠΏ: Disc Vein$(br)Y: 20 - 60$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 35$(br)Висота: 6$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Боляний Π»ΠΈΠ·ΡƒΠ½, Кам'яна ΡΡ–Π»ΡŒ, Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚, Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΠΌβ€™ΡΠ½Π° ΡΡ–Π»ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/rock_salt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»Ρ–ΡŽ, Π₯Π»ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KCl" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ–Π»ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/salt" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Високого ΠšΡ€ΠΎΠ²'яного Виску$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaCl" - }, - { - "type": "patchouli:multiblock", - "name": "Π›Π΅ΠΏΡ–Π΄ΠΎΠ»Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/lepidolite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠšΠ°Π»Ρ–ΡŽ, Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Π€Ρ‚ΠΎΡ€Ρƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: KLi₃Alβ‚„Fβ‚‚O₁₀" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘ΠΏΠΎΠ΄ΡƒΠΌΠ΅Π½", - "multiblock": { - "mapping": { - "0": "#forge:ores/spodumene" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Π›Ρ–Ρ‚Ρ–ΡŽ, ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: LiAlSiβ‚‚O₆" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_sulfur.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_sulfur.json deleted file mode 100644 index 92bb73db2..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_sulfur.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π‘Ρ–Ρ€ΠΊΠ° Ρ‚Π° ΠŸΡ–Ρ€ΠΈΡ‚", - "icon": "gtceu:raw_sulfur", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 165$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.2$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 0 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 45$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Ρ–Ρ€ΠΊΠ°, ΠŸΡ–Ρ€ΠΈΡ‚, Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ–Ρ€ΠΊΠ°", - "multiblock": { - "mapping": { - "0": "#forge:ores/sulfur" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 35%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/sphalerite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π¦ΠΈΠ½ΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ZnS" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_tetrahedrite.json deleted file mode 100644 index d8f32268b..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/normal_tetrahedrite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (Π·Π²ΠΈΡ‡Π°ΠΉΠ½ΠΈΠΉ)", - "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: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Indicator: Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠΌΡ–Π΄ΡŒ" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/tetrahedrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 50%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu₃SbS₃Fe" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/copper" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 30%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/stibnite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π‘ΡƒΡ€ΠΌΡƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sbβ‚‚S₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/ore_basics.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/ore_basics.json index dcc4d9cda..5a8d8f4ab 100644 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/ore_basics.json +++ b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/ore_basics.json @@ -1,6 +1,6 @@ { "name": "Π’ΠΈΠ΄ΠΎΠ±ΡƒΡ‚ΠΎΠΊ Ρƒ TFG", - "icon": "gtceu:pyrite_dust", + "icon": "minecraft:diamond_pickaxe", "category": "tfc:tfg_ores", "priority": true, "sortnum": 0, diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_bismuth.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_bismuth.json deleted file mode 100644 index aabb50a15..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_bismuth.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Бісмут (повСрхня)", - "icon": "gtceu:poor_raw_bismuth", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 140$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 60 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 50$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ, Глинистий ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Аргіліт, Вапняк, ΠšΠΎΠ½Π³Π»ΠΎΠΌΠ΅Ρ€Π°Ρ‚, Π”ΠΎΠ»ΠΎΠΌΡ–Ρ‚, ΠšΡ€Π΅ΠΌΠ΅Π½ΠΈΡΡ‚ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ΠšΡ€Π΅ΠΉΠ΄Π°$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Бісмутиніт$(br)Π’ΠΈΠΊΠΎΡ€ΠΈΡΡ‚ΠΎΠ²ΡƒΡ”Ρ‚ΡŒΡΡ Ρ‚Ρ–Π»ΡŒΠΊΠΈ для Бісмутової Π±Ρ€ΠΎΠ½Π·ΠΈ." - }, - { - "type": "patchouli:multiblock", - "name": "Бісмут", - "multiblock": { - "mapping": { - "0": "#forge:ores/bismuth" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 90%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Бісмут$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Bi" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ–Ρ€ΠΊΠ°", - "multiblock": { - "mapping": { - "0": "#forge:ores/sulfur" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 3%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π²ΠΈΠ½Π΅Ρ†ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/lead" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 7%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π‘Π²ΠΈΠ½Ρ†ΡŽ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Pb$(br)НСбСзпСчний: Yes" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_cassiterite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_cassiterite.json deleted file mode 100644 index 799deff1f..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_cassiterite.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)", - "icon": "gtceu:poor_raw_cassiterite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 135$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 60 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 50$(br2)Π’ΠΈΠΏΠΈ камСню: Π“Ρ€Π°Π½Ρ–Ρ‚, Π”Ρ–ΠΎΡ€ΠΈΡ‚, Π“Π°Π±Ρ€ΠΎ$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/cassiterite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 60%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Олово", - "multiblock": { - "mapping": { - "0": "#forge:ores/tin" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 40%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sn" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_copper.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_copper.json deleted file mode 100644 index 1045247ae..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_copper.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΡ–Ρ€ΠΈΡ‚ Ρ‚Π° Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", - "icon": "gtceu:raw_chalcopyrite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 140$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 30 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 50$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠΌΡ–Π΄ΡŒ, ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚, Π Π΅Π°Π»ΡŒΠ³Π°Ρ€" - }, - { - "type": "patchouli:multiblock", - "name": "Π₯Π°Π»ΡŒΠΊΠΎΠΏΠΈΡ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/chalcopyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 55%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: CuFeSβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π¦Π΅ΠΎΠ»Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/zeolite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: ΠΠ»ΡŽΠΌΡ–Π½Ρ–ΡŽ, Кисню$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: NaCaβ‚„Si₂₇Al₉(Hβ‚‚O)β‚‚β‚ˆO₇₂" - }, - { - "type": "patchouli:multiblock", - "name": "ΠšΠ°ΡΠΈΡ‚Π΅Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/cassiterite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Олово$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: SnOβ‚‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π Π΅Π°Π»ΡŒΠ³Π°Ρ€", - "multiblock": { - "mapping": { - "0": "#forge:ores/realgar" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 15%$(br)Π”ΠΆΠ΅Ρ€Π΅Π»ΠΎ: Миш'яку$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Asβ‚„Sβ‚„$(br)НСбСзпСчний: Yes" - }, - { - "type": "patchouli:text", - "text": "Π―ΠΊΡ‰ΠΎ Ρƒ вас Π²ΠΈΠ½ΠΈΠΊΠ»ΠΈ ΠΏΡ€ΠΎΠ±Π»Π΅ΠΌΠΈ Π· ΠΏΠΎΡˆΡƒΠΊΠΎΠΌ Π Π΅Π°Π»ΡŒΠ³Π°Ρ€Ρƒ, Ρ–Π½ΡˆΠΈΠΌ Π΄ΠΆΠ΅Ρ€Π΅Π»ΠΎΠΌ миш'яку Ρ” $(l:tfg_ores/normal_garnierite)ΠšΠΎΠ±Π°Π»ΡŒΡ‚ΠΈΡ‚Ρƒ$(), Ρ…ΠΎΡ‡Π° для Ρ†ΡŒΠΎΠ³ΠΎ Π·Π½Π°Π΄ΠΎΠ±ΠΈΡ‚ΡŒΡΡ $(thing)Π•Π»Π΅ΠΊΡ‚Ρ€ΠΈΡ‡Π½Π° Π΄ΠΎΠΌΠ΅Π½Π½Π° ΠΏΡ–Ρ‡$() для ΠΎΠ±Ρ€ΠΎΠ±ΠΊΠΈ." - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_sphalerite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_sphalerite.json deleted file mode 100644 index db3c3bdcf..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_sphalerite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚ Ρ– Π‘Ρ–Ρ€ΠΊΠ°", - "icon": "gtceu:poor_raw_sphalerite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 145$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 60 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 50$(br2)Π’ΠΈΠΏΠΈ камСню: Π Ρ–ΠΎΠ»Ρ–Ρ‚, Π‘Π°Π·Π°Π»ΡŒΡ‚, АндСзит, Π”Π°Ρ†ΠΈΡ‚, ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ„Π°Π»Π΅Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/sphalerite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 40%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π¦ΠΈΠ½ΠΊ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: ZnS" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ–Ρ€ΠΊΠ°", - "multiblock": { - "mapping": { - "0": "#forge:ores/sulfur" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 55%$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: S" - }, - { - "type": "patchouli:multiblock", - "name": "ΠŸΡ–Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/pyrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 5%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π§Π°Π²ΡƒΠ½$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: FeSβ‚‚" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_tetrahedrite.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_tetrahedrite.json deleted file mode 100644 index 4292f3e88..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/tfg_ores/surface_tetrahedrite.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "name": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚ (ΠŸΠΎΠ²Π΅Ρ€Ρ…Π½Ρ)", - "icon": "gtceu:poor_raw_tetrahedrite", - "category": "tfc:tfg_ores", - "read_by_default": true, - "pages": [ - { - "type": "patchouli:text", - "text": "Π Ρ–Π΄ΠΊΡ–ΡΡ‚ΡŒ: 140$(br)Π©Ρ–Π»ΡŒΠ½Ρ–ΡΡ‚ΡŒ: 0.25$(br)Π’ΠΈΠΏ: ΠšΠ»Π°ΡΡ‚Π΅Ρ€Π½Π° Π²Π΅Π½Π°$(br)Y: 60 - 210$(br)Π ΠΎΠ·ΠΌΡ–Ρ€: 50$(br2)Π’ΠΈΠΏΠΈ камСню: ΠšΠ²Π°Ρ€Ρ†ΠΈΡ‚, Π¨ΠΈΡ„Π΅Ρ€Π½ΠΈΠΉ ΡΠ»Π°Π½Π΅Ρ†ΡŒ, Π€Ρ–Π»Ρ–Ρ‚, Аспідний ΡΠ»Π°Π½Π΅Ρ†ΡŒ, ГнСйс, ΠœΠ°Ρ€ΠΌΡƒΡ€$(br2)Π†Π½Π΄ΠΈΠΊΠ°Ρ‚ΠΎΡ€: Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚, Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠΌΡ–Π΄ΡŒ" - }, - { - "type": "patchouli:multiblock", - "name": "Π’Π΅Ρ‚Ρ€Π°Π΅Π΄Ρ€ΠΈΡ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/tetrahedrite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 60%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu₃SbS₃Fe" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Π°ΠΌΠΎΡ€ΠΎΠ΄Π½Π° ΠœΡ–Π΄ΡŒ", - "multiblock": { - "mapping": { - "0": "#forge:ores/copper" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: ΠœΡ–Π΄ΡŒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Cu" - }, - { - "type": "patchouli:multiblock", - "name": "Π‘Ρ‚ΠΈΠ±Π½Ρ–Ρ‚", - "multiblock": { - "mapping": { - "0": "#forge:ores/stibnite" - }, - "pattern": [ - [ - "0" - ], - [ - " " - ] - ] - }, - "enable_visualize": false, - "text": "Відсоток: 20%$(br)Π ΠΎΠ·ΠΏΠ»Π°Π²Π»ΡΡ”Ρ‚ΡŒΡΡ Π²: Π‘ΡƒΡ€ΠΌΡƒ$(br)Π€ΠΎΡ€ΠΌΡƒΠ»Π°: Sbβ‚‚S₃" - } - ] -} \ No newline at end of file diff --git a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/the_world/ores_and_minerals.json b/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/the_world/ores_and_minerals.json deleted file mode 100644 index 3d8191f9d..000000000 --- a/kubejs/assets/tfc/patchouli_books/field_guide/uk_ua/entries/the_world/ores_and_minerals.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "Π ΡƒΠ΄ΠΈ Ρ‚Π° ΠœΡ–Π½Π΅Ρ€Π°Π»ΠΈ", - "category": "tfc:the_world", - "icon": "tfc:ore/normal_hematite", - "pages": [ - { - "type": "patchouli:text", - "text": "Ця сторінка ΠΏΡ€ΠΈΠ·Π½Π°Ρ‡Π΅Π½Π° для Π·Π°ΠΌΡ–Π½ΠΈ сторінки Ρ€ΡƒΠ΄ Ρ– ΠΌΡ–Π½Π΅Ρ€Π°Π»Ρ–Π² TFC Π·Π° замовчуванням.$(br2)Π†Π½Ρ„ΠΎΡ€ΠΌΠ°Ρ†Ρ–ΡŽ ΠΏΡ€ΠΎ Ρ€ΡƒΠ΄ΠΈ ΠΌΠΎΠΆΠ½Π° Π·Π½Π°ΠΉΡ‚ΠΈ Π² Ρ€ΠΎΠ·Π΄Ρ–Π»Ρ– $(l:tfg_ores)Π ΡƒΠ΄ΠΈ TFG$()." - } - ], - "read_by_default": true, - "sortnum": 1 -} \ No newline at end of file diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/almandine_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/almandine_tfc.png new file mode 100644 index 000000000..a94a9a23a Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/almandine_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/amethyst_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/amethyst_tfc.png new file mode 100644 index 000000000..8d290c10b Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/amethyst_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/andradite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/andradite_tfc.png new file mode 100644 index 000000000..6f931c78f Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/andradite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/apatite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/apatite_tfc.png new file mode 100644 index 000000000..196d1d7da Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/apatite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/bismuth_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/bismuth_tfc.png new file mode 100644 index 000000000..741589acf Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/bismuth_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/blue_topaz_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/blue_topaz_tfc.png new file mode 100644 index 000000000..d8a26c83b Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/blue_topaz_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/certus_quartz_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/certus_quartz_tfc.png new file mode 100644 index 000000000..58d9b4053 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/certus_quartz_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/cinnabar_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/cinnabar_tfc.png new file mode 100644 index 000000000..76d939f57 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/cinnabar_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/coal_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/coal_tfc.png new file mode 100644 index 000000000..27d4d7e20 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/coal_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/coke_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/coke_tfc.png new file mode 100644 index 000000000..e3b9f38c8 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/coke_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/diamond_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/diamond_tfc.png new file mode 100644 index 000000000..b07a2a490 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/diamond_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/echo_shard_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/echo_shard_tfc.png new file mode 100644 index 000000000..e4ca8408e Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/echo_shard_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/emerald_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/emerald_tfc.png new file mode 100644 index 000000000..c9503ddfe Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/emerald_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/fluix_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/fluix_tfc.png new file mode 100644 index 000000000..4cd92c85c Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/fluix_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/glass_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/glass_tfc.png new file mode 100644 index 000000000..96d3832e7 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/glass_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/gold_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/gold_tfc.png new file mode 100644 index 000000000..636592dec Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/gold_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/green_sapphire_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/green_sapphire_tfc.png new file mode 100644 index 000000000..5acf722df Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/green_sapphire_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/grossular_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/grossular_tfc.png new file mode 100644 index 000000000..17f0b534a Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/grossular_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/lapis_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/lapis_tfc.png new file mode 100644 index 000000000..e93eb393f Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/lapis_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/lazurite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/lazurite_tfc.png new file mode 100644 index 000000000..9b7dd1820 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/lazurite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/malachite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/malachite_tfc.png new file mode 100644 index 000000000..d5d5fc10c Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/malachite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/monazite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/monazite_tfc.png new file mode 100644 index 000000000..735d4bb31 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/monazite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/nether_quartz_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/nether_quartz_tfc.png new file mode 100644 index 000000000..5cbfaa440 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/nether_quartz_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/neutronium_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/neutronium_tfc.png new file mode 100644 index 000000000..bd3d1856d Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/neutronium_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/nickel_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/nickel_tfc.png new file mode 100644 index 000000000..80aa398f7 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/nickel_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/olivine_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/olivine_tfc.png new file mode 100644 index 000000000..36c2245ef Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/olivine_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/opal_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/opal_tfc.png new file mode 100644 index 000000000..1ef99e445 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/opal_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/platinum_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/platinum_tfc.png new file mode 100644 index 000000000..23da1f684 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/platinum_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/pyrite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/pyrite_tfc.png new file mode 100644 index 000000000..a8e2fc233 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/pyrite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/pyrope_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/pyrope_tfc.png new file mode 100644 index 000000000..8e7f0f1db Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/pyrope_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/quartzite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/quartzite_tfc.png new file mode 100644 index 000000000..dc30480fb Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/quartzite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/realgar_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/realgar_tfc.png new file mode 100644 index 000000000..369786ae3 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/realgar_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/red_garnet_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/red_garnet_tfc.png new file mode 100644 index 000000000..4e1ad6431 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/red_garnet_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/redx_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/redx_tfc.png new file mode 100644 index 000000000..9e0165167 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/redx_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/rock_salt_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/rock_salt_tfc.png new file mode 100644 index 000000000..557e17dbc Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/rock_salt_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/rose_gold_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/rose_gold_tfc.png new file mode 100644 index 000000000..7c5cc49a1 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/rose_gold_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/rose_quartz_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/rose_quartz_tfc.png new file mode 100644 index 000000000..ce2ea8fab Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/rose_quartz_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/ruby_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/ruby_tfc.png new file mode 100644 index 000000000..bd8bf6645 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/ruby_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/rutile_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/rutile_tfc.png new file mode 100644 index 000000000..8afd21a23 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/rutile_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/salt_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/salt_tfc.png new file mode 100644 index 000000000..cc9ef3239 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/salt_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/sapphire_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/sapphire_tfc.png new file mode 100644 index 000000000..bdeab8974 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/sapphire_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/silver_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/silver_tfc.png new file mode 100644 index 000000000..1379b60dc Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/silver_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/sodalite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/sodalite_tfc.png new file mode 100644 index 000000000..dc41b84c6 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/sodalite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/spessartine_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/spessartine_tfc.png new file mode 100644 index 000000000..5faf0a5fa Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/spessartine_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/sterling_silver_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/sterling_silver_tfc.png new file mode 100644 index 000000000..f2e2e0bf8 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/sterling_silver_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/titanium_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/titanium_tfc.png new file mode 100644 index 000000000..51c7fbdd3 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/titanium_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/topaz_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/topaz_tfc.png new file mode 100644 index 000000000..8266f8d41 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/topaz_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/uvarovite_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/uvarovite_tfc.png new file mode 100644 index 000000000..ac79ec661 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/uvarovite_tfc.png differ diff --git a/kubejs/assets/tfc/textures/color_palettes/trims/yellow_garnet_tfc.png b/kubejs/assets/tfc/textures/color_palettes/trims/yellow_garnet_tfc.png new file mode 100644 index 000000000..711a1ff76 Binary files /dev/null and b/kubejs/assets/tfc/textures/color_palettes/trims/yellow_garnet_tfc.png differ diff --git a/kubejs/assets/tfg/lang/en_us.json b/kubejs/assets/tfg/lang/en_us.json index f07cb814a..8574bf2a6 100644 --- a/kubejs/assets/tfg/lang/en_us.json +++ b/kubejs/assets/tfg/lang/en_us.json @@ -11,6 +11,10 @@ "biome.tfg.nether/gneiss_caves": "Deep Caves", "biome.tfg.nether/granite_caves": "Deep Caves", "biome.tfg.nether/schist_caves": "Deep Caves", + "biome.tfg.moon/lunar_basalt_maria": "Lunar Maria", + "biome.tfg.moon/lunar_diorite_delta": "Lunar Delta", + "biome.tfg.moon/lunar_gabbro_uplift": "Lunar Uplift", + "biome.tfg.moon/lunar_plains": "Lunar Plains", "block.tfg.decorative_vase.black": "Black Decorative Vase", "block.tfg.decorative_vase.gray": "Gray Decorative Vase", "block.tfg.decorative_vase.light_gray": "Light Gray Decorative Vase", @@ -126,6 +130,13 @@ "block.tfg.spike.dripstone_spike": "Travertine Spike", "block.tfg.loose.deepslate": "Loose Migmatite Rock", "block.tfg.loose.dripstone": "Loose Travertine Rock", + "block.tfg.rock.hardened_anorthosite": "Hardened Anorthosite", + "block.tfg.rock.raw_anorthosite": "Raw Anorthosite", + "block.tfg.loose.anorthosite": "Loose Anorthosite Rock", + "block.tfg.rock.raw_basanite": "Raw Basanite", + "block.tfg.rock.raw_syenite": "Raw Syenite", + "block.tfg.rock.hardened_syenite": "Hardened Syenite", + "block.tfg.loose.syenite": "Loose Syenite Rock", "item.tfg.antipoison_pill": "Antipoison Pill", "item.tfg.haste_pill": "Haste Pill", "item.tfg.night_vision_pill": "Night Vision Pill", @@ -153,6 +164,18 @@ "item.tfg.paraffin_wax": "Paraffin Wax", "item.tfg.flint_arrow_head": "Flint Arrow Head", "item.tfg.fletching": "Fletching", + "item.tfg.phantom_silk": "Phantom Silk", + "item.tfg.phantom_thread": "Phantom Thread", + "item.tfg.polycaprolactam_fabric": "Polycaprolactam Fabric", + "item.tfg.polycaprolactam_string": "Polycaprolactam String", + "item.tfg.fishing_net.wood": "Wood Fishing Net", + "item.tfg.fishing_net.brass": "Brass Fishing Net", + "item.tfg.fishing_net.rose_gold": "Rose Gold Fishing Net", + "item.tfg.fishing_net.sterling_silver": "Sterling Silver Fishing Net", + "item.tfg.fishing_net.invar": "Invar Fishing Net", + "item.tfg.fishing_net.cupronickel": "Cupronickel Fishing Net", + "item.tfg.fishing_net.tin_alloy": "Tin Alloy Fishing Net", + "item.tfg.fishing_net.magnalium": "Magnalium Fishing Net", "item.tfg.conifer_rosin": "Conifer Rosin", "item.tfg.hardwood_strip": "Hardwood Strip", "item.tfg.soaked_hardwood_strip": "Soaked Hardwood Strip", @@ -161,6 +184,12 @@ "item.tfg.spade_head_extruder_mold": "Extruder Mold (Spade Head)", "item.tfg.unfired_chalk": "Unfired Chalk Stick", "item.tfg.brick.deepslate": "Migmatite Brick", + "item.tfg.loose.anorthosite": "Loose Anorthosite", + "item.tfg.brick.anorthosite": "Anorthosite Brick", + "item.tfg.dust.anorthosite": "Anorthosite Dust", + "item.tfg.loose.syenite": "Loose Syenite", + "item.tfg.brick.syenite": "Syenite Brick", + "item.tfg.dust.syenite": "Syenite Dust", "item.tfg.terra_firma_greg": "TerraFirmaGreg", "item.tfg.scaffolding_frame": "Scaffolding Frame", "item.tfg.airship_hull": "Airship Hull", @@ -180,6 +209,16 @@ "item.tfg.aluminium_hull_reinforcement": "Aluminium Hull Reinforcement", "item.tfg.stainless_steel_hull_reinforcement": "Stainless Steel Hull Reinforcement", "item.tfg.titanium_hull_reinforcement": "Titanium Hull Reinforcement", + "item.tfg.ulv_universal_circuit": "ULV Universal Circuit", + "item.tfg.lv_universal_circuit": "LV Universal Circuit", + "item.tfg.mv_universal_circuit": "MV Universal Circuit", + "item.tfg.hv_universal_circuit": "HV Universal Circuit", + "item.tfg.ev_universal_circuit": "EV Universal Circuit", + "item.tfg.iv_universal_circuit": "IV Universal Circuit", + "item.tfg.luv_universal_circuit": "LuV Universal Circuit", + "item.tfg.zpm_universal_circuit": "ZPM Universal Circuit", + "item.tfg.uv_universal_circuit": "UV Universal Circuit", + "item.tfg.uhv_universal_circuit": "UHV Universal Circuit", "material.tfg.latex": "Latex", "material.tfg.vulcanized_latex": "Vulcanized Latex", "material.tfg.fluix": "Fluix", @@ -277,100 +316,54 @@ "gtceu:rich_raw_sphalerite": "Deprecated Item, Craft to Upgrade", "gtceu:raw_sphalerite": "Deprecated Item, Craft to Upgrade", "gtceu:poor_raw_sphalerite": "Deprecated Item, Craft to Upgrade", - "quests.naming-1": "t - Title", - "quests.naming-2": "st - Subtitle", - "quests.naming-3": "d* - Description, where * description number, for example: d1, d2, d3, d4...", - "quests.naming-4": "t* - Task, where * task number, for example: t1, t2, t3, t4...", - "quests.76EF4D00586A8B74.t": "&aTerraFirmaGreg Modpack!", - "quests.76EF4D00586A8B74.st": "Thank you for choosing our modpack!", - "quests.76EF4D00586A8B74.d1": "The fun starts right now! May this world be blessed with your existence!", - "quests.387DEEADF4922AB3.t": "Ore generation in the TFG world", - "quests.387DEEADF4922AB3.st": "Much more fun than vanilla", - "quests.387DEEADF4922AB3.d1": "In TerraFirmaGreg ore is generated more interestingly than anywhere else. \n1. Each ore appears in its own rock. TFC adds many different rocks to the world, that is, you won’t find a regular vanilla stone anywhere, so ores, like in real life, are generated only in certain rocks. \n2. There are several types of ore veins, such as: cluster, sphere, pipe and a few rare others that we will not talk about. \n3. To make life easier for players, ore indicators appear on the surface, under which in most cases the ore vein itself is located. \nTFG contains a small Wiki for this in an Excel spreadsheet. In order to follow the link, complete the task, then pick up the reward and a button will appear in the chat when you click on it, which will transfer you to an Excel table with ore generation.", - "quests.63E6C5684E12828C.st": "You need to drink water in order not to die, try to find a river or lake with ordinary water!", - "quests.63E6C5684E12828C.d1": "Use the right mouse button to drink some water. \nCareful! If you drink salt water you will experience increased thirst and will most likely die.", - "quests.63E6C5684E12828C.t1": "Look at regular water (not salty or hot).", - "quests.6D43C29AC049341D.t": "How to create a team?", - "quests.6D43C29AC049341D.st": "Do you play with friends? Surprising...", - "quests.6D43C29AC049341D.d1": "You can create a team to complete quests together. To do this, open your inventory, then in the upper left corner select the button where 3 colorful people are drawn, then an interface will open in which you can create a team, use the Β§aCreate a teamΒ§r button, then give it a name and possibly some other parameters, after successful creating a team, you can invite other players to it using the plus button in the green circle in the upper right corner, in the future your quests will be synchronized and any team member will be able to complete them. Good luck!", - "quests.6D43C29AC049341D.t1": "Click here to complete the quest", - "quests.0B42D4AE2AC67F93.t": "How to capture territory?", - "quests.0B42D4AE2AC67F93.st": "Or how to load chunks in your territory", - "quests.0B42D4AE2AC67F93.d1": "You can private the chunks you want if you play on a server, for example. How to do it? Use the button to open the mini-map, then select the chunks that you want to capture, then by clicking on the right mouse button, select Β§aCapture territoryΒ§r from the list, it seems to be the third item from the bottom, voila, you have captured the territory. Attention: your teammates will be able to break blocks in your region, which is logical.", - "quests.0B42D4AE2AC67F93.t1": "Click here to complete the quest", - "quests.2672C65095539E23.t": "How to get crushed ore without a crusher?", - "quests.2672C65095539E23.st": "It's actually very simple.", - "quests.2672C65095539E23.d1": "Simply break a block of ore with a hammer (sledgehammer) and you will immediately receive crushed ore, which can be crushed by hand into powders such as graphite or sulfur.", - "quests.2672C65095539E23.t1": "Click here to complete the quest", - "quests.3D7B0F3134C30364.t": "Important information about quests!", - "quests.3D7B0F3134C30364.d1": "The quests are still in development, more descriptions and more will be added in the future. You can partially use the TFC book to find the information you need. &cFull quests in each branch with translation will appear in update 1.0.0, since now the developers have very little time.", - "quests.3D7B0F3134C30364.t1": "Click here to complete the quest", - "quests.7196BB6BDBAE7B51.st": "Food is very important in this world!", - "quests.7196BB6BDBAE7B51.d1": "Try to kill some animal and get some meat from it. Eating raw meat is a bad idea, so try roasting it over a fire.", - "quests.7196BB6BDBAE7B51.t1": "Get any raw meat", - "quests.557D3A67A36DF9D8.st": "Cook the meat over the fire!", - "quests.557D3A67A36DF9D8.d1": "Congratulations, you have cooked the meat and are now safe to eat.", - "quests.557D3A67A36DF9D8.t1": "Get any fried meat", - "quests.682B58EC2D39F1A1.st": "A fire, but not an ordinary one", - "quests.682B58EC2D39F1A1.d1": "Throw 3 sticks and 1 log onto the block, then move the mouse cursor over this block and use a primitive lighter (Just hold down the right mouse button as if you were aiming with a bow), it may not work the first time. After success, a fire will appear in place of the discarded 3 sticks and 1 log, into which you need to throw logs so that the fire continues to burn. To increase the chance of creating a fire, you can add to the existing sticks and logs: paper, straw and other flammable items, +10% for each item.", - "quests.682B58EC2D39F1A1.t1": "Make a fire", - "quests.6D940527BFF1D4C0.t": "Primitive lighting", - "quests.6D940527BFF1D4C0.st": "Are they going out? Yes! They may go out, I'm shocked myself!", - "quests.6D940527BFF1D4C0.d1": "You will be surprised, but the torches are not endless in TFC. They will burn for about 2 game days, after which they will go out. But don’t worry, they don’t go out in your hands or inventory, so you can carry 1 torch with you and when others in your house go out, just use the right mouse button on them with a torch from your inventory, it will set fire to already extinguished torches.", - "quests.3B3BA51C8CAEFC7F.t": "Primitive lighter", - "quests.3B3BA51C8CAEFC7F.st": "People in ancient times lit fires using such a thing, or maybe not, how should I know?", - "quests.3B3BA51C8CAEFC7F.d1": "This thing will allow you to start a fire, or set fire to anything, just move the mouse cursor over any block, then press and hold the right mouse button, after maximum tension, release, with a 50% chance the block you were looking at will be set on fire. How to make a fire using a primitive lighter in the next quest.", - "quests.365F6F48E0BB2EFC.t": "ROCK AND STONE!", - "quests.365F6F48E0BB2EFC.st": "Collect some stones and sticks for future development", - "quests.365F6F48E0BB2EFC.d1": "When entering the world, the first thing you encounter is a completely changed world. The main items at the start are sticks and pebbles, which lie on the ground and appear in any biome, they are also updated every season, that is, after winter, sticks and pebbles are regenerated on the ground. Collect several using RMB and proceed to the next one. step. \n\nTake 2 or more stones into your hand, then click the right mouse button, then a menu will open in which you can make headbands for stone tools, all recipes can be viewed in EMI or simply by clicking on the icon of the stone headband item in the quest. Then connect the headband with a stick and get a real aboriginal tool. \n\nNow you are a smart monkey!", - "quests.365F6F48E0BB2EFC.t1": "Find any sticks", - "quests.365F6F48E0BB2EFC.t2": "Find any pebbles", - "quests.508DA76FA2766B7B.st": "This is not a rocket launcher!", - "quests.508DA76FA2766B7B.d1": "Spears work on a similar principle to the trident from vanilla Minecraft, just hold down the right mouse button and aim, then release and your trident will fly where you were looking.", - "quests.508DA76FA2766B7B.t1": "Craft any stone spear", - "quests.318BF1F671BC4620.st": "Thank you for not being diamond...", - "quests.318BF1F671BC4620.d1": "Hoes are used for digging up beds and planting plants. Interesting fact: in TFC you can dig up beds even far from water, the main thing is that when you hover, look at the tooltip (the panel at the top), it will display the amount of water saturation of the bed. Next, select seeds collected in a world with suitable climatic conditions (including the humidity of the bed), plant them and wait.", - "quests.36A9E5CD45A79288.st": "Realistic", - "quests.36A9E5CD45A79288.d1": "Using the right mouse button with a hoe in your hand, plow the ground, seriously, it's very easy, try it.", - "quests.36A9E5CD45A79288.t1": "Plow the ground", - "quests.5C396041880D32FF.st": "Looks promising", - "quests.5C396041880D32FF.d1": "While exploring the world you can find wild plants, collect them with a knife or hand, this way you will get seeds and the plant itself.", - "quests.5C396041880D32FF.t1": "Find any seeds", - "quests.4CF472C9778068D6.t": "Harvest your first harvest", - "quests.4CF472C9778068D6.st": "Is it edible?", - "quests.4CF472C9778068D6.d1": "Not sure. \n\nAttention! Plants grow for a very long time and they are also very picky about their growth conditions; be sure to check the conditions in which a particular plant grows before planting it, otherwise it will turn into a dead bush.", - "quests.4CF472C9778068D6.t1": "Click here to complete the quest", - "quests.2BFC2744E4DE4B5A.st": "Don't cut down a tree with your hand, it's wrong!", - "quests.2BFC2744E4DE4B5A.d1": "Axes are used to chop wood, and indeed anything wooden, because in TFC you cannot break a tree with your hand.", - "quests.716B407EEED8BE95.st": "Thanks for digging", - "quests.716B407EEED8BE95.d1": "Shovels are used to create paths and dig up dirt, sand and possibly something else!", - "quests.06C7B7138EDE4B38.st": "Your best friend", - "quests.06C7B7138EDE4B38.d1": "Knives are a very important tool in TFC, they allow you to cut grass and get straw, you can use it to make a fire pit and fry metals and clay molds, but more on that later in the quests.", - "quests.45D907EF7902A200.st": "Needed to create a shelter or roasting pit", - "quests.45D907EF7902A200.d1": "An important item in the initial stages of development, you will need a lot of it, I suggest collecting about 3 stacks.", - "quests.27DA5AAB102611A2.st": "A cute hat that will save you from the heat and scorching sun", - "quests.30AE1FF285B64716.st": "This is a sheaf of straw, you can build a cute house out of it", - "quests.0ED8BE436A0ECDDB.st": "This is a sheaf of hay, you can make beautiful decorations from it", - "quests.0ED8BE436A0ECDDB.d1": "Indeed, this block is just decorative, do not try to feed it to the horse.", - "quests.69D20168E26BBF59.st": "Realism", - "quests.69D20168E26BBF59.d1": "First, dig 1 block in the ground, or any other surface, then use the V key to place the things you want to fry in the hole. If we are talking about forms, there are 4 of them. Next, take Hay in your hand and right-click into the hole, the hay will begin to fill the hole, you need to use 8 hay, then add 8 logs in the same way, then you can safely set fire to this thing using a primitive flint or torch (just throw a torch on top of your hole and it will start to flare up). Then you must wait for the firing to finish and then take out your finished objects. Metal melting in containers occurs in the same way. That is, you put pieces of copper in a vessel and in this very pit, after the process described above you will get molten copper, which you can cast into ingots, headbands, and so on.", - "quests.69D20168E26BBF59.t1": "Create a roasting pit", - "quests.373FD04AD6CA9F92.t": "New or old tree", - "quests.373FD04AD6CA9F92.st": "Use an ax to collect some wood, I would like to remind you that logs cannot be obtained by hand", - "quests.373FD04AD6CA9F92.t1": "Get any tree", - "quests.5DB0CA9F9724D301.t": "Coal pits", - "quests.5DB0CA9F9724D301.st": "Get your first coal! Wait, why is it needed?", - "quests.5DB0CA9F9724D301.d1": "To create a charcoal pit you will need lots and lots of wood. First, dig a hole 1 block deep (you can go deeper if the amount of wood allows).", - "quests.5DB0CA9F9724D301.d2": "Afterwards, using Shift + RMB, click on any block in the hole, you will have an armful of logs, you can fill it by right-clicking with a log in your hand on the armful, or simply open the interface and fill it manually. The amount of coal subsequently obtained depends on the number of trees in the armful.", - "quests.5DB0CA9F9724D301.d3": "Next, cover it all with a non-flammable block, stone or earth, leave one block open and set it on fire using a discarded torch or a primitive igniter.", - "quests.5DB0CA9F9724D301.d4": "Now your pile of earth has started to smoke, cover the last block that you set on fire again with a non-combustible block and wait, as soon as the pile stops smoking, dig it up and get coal.", - "quests.478D0DF94D7495EF.st": "Is it really simple or not?", - "quests.478D0DF94D7495EF.d1": "The glass casting process is shown in the TFC guide book, which you can find in the inventory on the right side, but for glass blocks, or rather for their casting, brass blocks are used, in TerraFirmaGreg for this you can use brass blocks from GTCEu or kaolinite clay blocks, Good luck! :)", - "quests.478D0DF94D7495EF.t1": "Cast any block of glass", - "quests..t": "", - "quests..st": "", - "quests..d1": "", - "quests..t1": "", + "trim_material.tfc.almandine_tfc": "Almandine", + "trim_material.tfc.andradite_tfc": "Andradite", + "trim_material.tfc.blue_topaz_tfc": "Blue Topaz", + "trim_material.tfc.cinnabar_tfc": "Cinnabar", + "trim_material.tfc.coal_tfc": "Coal", + "trim_material.tfc.diamond_tfc": "Diamond", + "trim_material.tfc.emerald_tfc": "Emerald", + "trim_material.tfc.green_sapphire_tfc": "Green Sapphire", + "trim_material.tfc.grossular_tfc": "Grossular", + "trim_material.tfc.rutile_tfc": "Rutile", + "trim_material.tfc.lazurite_tfc": "Lazurite", + "trim_material.tfc.pyrope_tfc": "Pyrope", + "trim_material.tfc.rock_salt_tfc": "Rock Salt", + "trim_material.tfc.ruby_tfc": "Ruby", + "trim_material.tfc.salt_tfc": "salt", + "trim_material.tfc.sapphire_tfc": "Sapphire", + "trim_material.tfc.sodalite_tfc": "Sodalite", + "trim_material.tfc.coke_tfc": "Coke", + "trim_material.tfc.spessartine_tfc": "Spessartine", + "trim_material.tfc.topaz_tfc": "Topaz", + "trim_material.tfc.uvarovite_tfc": "Uvarovite", + "trim_material.tfc.nether_quartz_tfc": "Nether Quartz", + "trim_material.tfc.certus_quartz_tfc": "Certus Quartz", + "trim_material.tfc.quartzite_tfc": "Quartzite", + "trim_material.tfc.realgar_tfc": "Realgar", + "trim_material.tfc.malachite_tfc": "Malachite", + "trim_material.tfc.glass_tfc": "Glass", + "trim_material.tfc.olivine_tfc": "Olivine", + "trim_material.tfc.opal_tfc": "Opal", + "trim_material.tfc.amethyst_tfc": "Amethyst", + "trim_material.tfc.lapis_tfc": "Lapis", + "trim_material.tfc.apatite_tfc": "Apatite", + "trim_material.tfc.red_garnet_tfc": "Red Garnet", + "trim_material.tfc.yellow_garnet_tfc": "Yellow Garnet", + "trim_material.tfc.monazite_tfc": "Monazite", + "trim_material.tfc.rose_quartz_tfc": "Rose Quartz", + "trim_material.tfc.fluix_tfc": "Fluix", + "trim_material.tfc.silver_tfc": "Silver", + "trim_material.tfc.sterling_silver_tfc": "Sterling Silver", + "trim_material.tfc.gold_tfc": "Gold", + "trim_material.tfc.rose_gold_tfc": "Rose Gold", + "trim_material.tfc.nickel_tfc": "Nickel", + "trim_material.tfc.platinum_tfc": "Platinum", + "trim_material.tfc.titanium_tfc": "Titanium", + "trim_material.tfc.bismuth_tfc": "Bismuth", + "trim_material.tfc.neutronium_tfc": "Neutronium", + "trim_material.tfc.pyrite_tfc": "Pyrite", + "trim_material.tfc.redx_tfc": "RedX", "tfc.jei.flint_knapping": "Flint Knapping", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.black": "Dyeing", "tfc.recipe.barrel.tfg.barrel.dyeing.decorative_vase.gray": "Dyeing", @@ -421,7 +414,7 @@ "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_red_block": "Dyeing", "tfc.recipe.barrel.simplylight.barrel.dyeing.illuminant_brown_block": "Dyeing", "tfc.recipe.barrel.tfg.barrel.soak_hardwood_strip": "Soaking Hardwood Strips", - "tfc.recipe.barrel.tfc.barrel.treated_wood_planks": "Treating Wood Planks", + "tfc.recipe.barrel.tfg.barrel.treated_wood_planks": "Treating Wood Planks", "tfc.recipe.barrel.tfg.barrel.packed_ice": "Freezing Ice", "tfc.recipe.barrel.tfg.barrel.cooling_water_1": "Cooling Water", "tfc.recipe.barrel.tfg.barrel.cooling_water_2": "Cooling Water", @@ -476,6 +469,8 @@ "tfg.grapplemod.downgrades.vertical_throwing_angle": "Decreases the Β§lVertical Throwing AngleΒ§r of the hook by 5Β°, down to 0Β°.", "tfg.grapplemod.upgrades.angle": "Increases the Β§lHorizontal AngleΒ§r for throwing your Β§lDouble HooksΒ§r by 5Β°, up to 90Β°.\nOnly accessible with a Β§lDouble HookΒ§r installed.", "tfg.grapplemod.downgrades.angle": "Decreases the Β§lHorizontal AngleΒ§r for throwing your Β§lDouble HooksΒ§r by 5Β°, down to 5°°.\nOnly accessible with a Β§lDouble HookΒ§r installed.", + "quests.ae2": "Applied Energistics 2", + "quests.ae2.subtitle": "The strongest tool to help you with Gregtech, unlocked after your first trip to the moon", "quests.tasktype.checkmark": "Click here to complete this quest/task", "quests.tasktype.item.any": "Any Item of type:", "quests.tasktype.lookat": "Look at a:", @@ -484,7 +479,88 @@ "quests.groups.voltaic_age": "Voltaic Age", "quests.groups.space_age": "Space Age", "quests.groups.interstellar": "Interstellar Age", + "quests.groups.technological_help": "Technological Help", "quests.groups.tips": "Tips", + "quests.computer": "Computer", + "quests.computer.subtitle": "ComputerCraft or CC: Tweaked here, is if you know LUA one of the strongest mod for managing your base", + "quests.development": "Progression Table", + "quests.development.subtitle": "An easy way to understand your progression on Gregtech", + "quests.development.explanation.title": "Let's do some explaining", + "quests.development.explanation.subtitle": "It is actually quite easy", + "quests.development.explanation.desc.1": "The &lCircuit Progression&r of GregTech can seem intimidating at first, but it's not that bad.\n\nFirst, you need to understand that circuits of the same tier are interchangeable. For example, to craft an &6HV&r &6Mixer&r, you can use any &6HV-tier&r circuit.", + "quests.development.explanation.desc.2": "Now, let's talk about &lprogression&r. As you may notice, each circuit shares a color code on its icon and a name. For example, all &aQuantum Processors&r are &agreen&r and crafted inside &1IV-tier&r Circuit Assemblers. To craft one, you first need the previous circuit β€” that's why, to craft your first &dLuV&r &dCircuit&r, the Nanoprocessor Mainframe, you must start by crafting a Nanoprocessor and progress through each &7step&r. In this case, it would take three steps.\n\nThis is why the rightmost &6circuits&r in each line are always cheaper to &a craft&r: they require fewer &7steps&r.", + "quests.development.explanation.desc.3": "Additionally, we have added &lUniversal Circuits&r. They can be &a crafted&r from any &6circuit&r β€” whether &1IV&r, &dLuV&r, &3UV&r, or any other tier β€” and are extremely useful for &9automation&r with AE2. Try to encode all your &fpatterns&r with &lUniversal Circuits&r, so whenever you upgrade to a better circuit, you won't have to redo all your &fpatterns&r β€” only the ones used to craft the Universal Circuit.", + "quests.development.explanation.task": "Okay I read the whole three prages", + "quests.development.ulv.title": "&8ULV&r Circuits", + "quests.development.ulv.subtitle": "", + "quests.development.ulv.desc": "On this line you can see the Steam, or &8&8ULV&r, equivalents.", + "quests.development.lv.title": "&7LV&r Circuits", + "quests.development.lv.subtitle": "", + "quests.development.lv.desc": "Circuits along this line are &7LV&r, and are interchangeable in recipes.\n\n&cElectronic Circuits&r are the &oworst&r in terms of cost and effort required to produce, but you have to start somewhere.\n\n&eBasic Integrated Processors&r act as a middle layer between &cElectronic Circuits&r and &2Microchip Processors.&r\n\nFinally, &2Microchip Processors&r will be the best option for the rest of the playthrough.", + "quests.development.mv.title": "&bMV&r Circuits", + "quests.development.mv.subtitle": "", + "quests.development.mv.desc": "Circuits along this line are &bMV&r, and are interchangeable in recipes.\n\nThe pattern stays other same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.hv.title": "&6HV&r Circuits", + "quests.development.hv.subtitle": "", + "quests.development.hv.desc": "Circuits along this line are &6HV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.ev.title": "&5EV&r Circuits", + "quests.development.ev.subtitle": "", + "quests.development.ev.desc": "Circuits along this line are &5EV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.iv.title": "&1IV&r Circuits", + "quests.development.iv.subtitle": "", + "quests.development.iv.desc": "Circuits along this line are &1IV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.", + "quests.development.luv.title": "&dLuV&r Circuits", + "quests.development.luv.subtitle": "", + "quests.development.luv.desc": "Circuits along this line are &dLuV&r, and are interchangeable in recipes.\n\nThe pattern stays the same: the rightmost circuit comes in &dlarger quantities&r and is overall &aeasier&r to produce.\n\nMake sure to set up &3wetware board production&r as soon as possible! These take a &6very long time&r to make.\n\nIt's &dLuV&r, not &4LUV&r.", + "quests.development.zpm.title": "&cZPM&r Circuits", + "quests.development.zpm.subtitle": "", + "quests.development.zpm.desc": "Circuits along this line are &cZPM&r, and are interchangeable in recipes.", + "quests.development.uv.title": "&3UV&r Circuits", + "quests.development.uv.subtitle": "", + "quests.development.uv.desc": "Circuits along this line are &3UV&r, and are interchangeable for each other.", + "quests.development.uhv.title": "&4UHV&r Circuits", + "quests.development.uhv.subtitle": "", + "quests.development.uhv.desc": "Congratulations! You've reached the end of the circuit progression.\n\nThe only &4UHV&r circuit is the &6Wetware Mainframe&r, which is used for crafting some endgame stuff.", + "quests.development.hull_lv.title": "Craftable in &6Steam Age&r and &7LV&r", + "quests.development.hull_lv.subtitle": "Hand crafted and artisanal", + "quests.development.hull_lv.desc": "&7Early game&r Circuits are made using hand crafting and Create.\n\nHave a good &3Create&r setup to make them easier to produce then pick up the &3Circuit Assembler&r to make them a lot more efficient.", + "quests.development.hull_mv.title": "Craftable in &bMV&r", + "quests.development.hull_mv.subtitle": "Integrated Dynamics", + "quests.development.hull_mv.desc.1": "The &9Integrated&r Circuit line may not be a strict upgrade in terms of cost, but will tide you over as a stepping stone towards the next tier.\n\nThey will require a MV &3Laser Engraver&r and a MV &3Cutting Machine&r.", + "quests.development.hull_mv.desc.2": "&l&3Lore:&r&o In Omnifactory, and in previous Gregicality, this circuit line was called &9Refined&r and was standardized like further tiers.", + "quests.development.hull_hv.title": "Craftable in &bMV&r and &6HV&r", + "quests.development.hull_hv.subtitle": "They tend to be small", + "quests.development.hull_hv.desc": "&eMicro&r Circuits are where the &3Cleanroom&r becomes a requirement to progress.\n\nDon't get caught out by the &aMainframe&r - it requires a &3HV Circuit Assembler&r.", + "quests.development.hull_ev.title": "Craftable in &5EV&r", + "quests.development.hull_ev.subtitle": "Nano Age", + "quests.development.hull_ev.desc": "This is the &9Nano&r Circuit line.\n\nYou may need to go out in &bspace&r to craft them.\n\nStarting from here, circuit progression will follow a pattern:\n\n&9-&r Processor\n&9-&r Assembly\n&9-&r Cupercomputer\n&9-&r Mainframe", + "quests.development.hull_iv.title": "Craftable in &1IV&r", + "quests.development.hull_iv.subtitle": "GregTech gets Quantum", + "quests.development.hull_iv.desc": "Welcome to the &9Quantum&r Circuit line.\n\nYou may want to invest in &aPBI&r at this point, as &dAdvanced SMDs&r will skyrocket your circuit production.", + "quests.development.hull_luv.title": "Craftable in &dLuV&r", + "quests.development.hull_luv.subtitle": "Crystallisation", + "quests.development.hull_luv.desc": "This is the &9Crystal&r Circuit line.\n\nIt's locked behind &3Fusion&r.", + "quests.development.hull_zpm.title": "Craftable in &cZPM&r", + "quests.development.hull_zpm.subtitle": "Soft and Wetware", + "quests.development.hull_zpm.desc": "This is the &9Wetware&r Circuit line.\n\nIt will be the biggest automation challenge to face in this modpack. Best of luck.", + "quests.gregtech_energy": "Gregtech Energy", + "quests.gregtech_energy.subtitle": "So how does all of that work?", + "quests.gregtech_energy.TEST.title": "", + "quests.gregtech_energy.TEST.subtitle": "", + "quests.gregtech_energy.TEST.desc.1": "", + "quests.gregtech_energy.TEST.desc.2": "", + "quests.gregtech_energy.TEST.desc.3": "", + "quests.gregtech_energy.TEST.desc.4": "", + "quests.gregtech_energy.TEST.task": "", + "quests.gregtech_energy.TEST.desc": "", + "quests.high_voltage": "&6HV&r - High Voltage", + "quests.high_voltage.subtitle": "Upgrade your power, learn about Cleanroom, make more chemicals and get ready for Space", + "quests.high_voltage.TEST.title": "", + "quests.high_voltage.TEST.subtitle": "", + "quests.high_voltage.TEST.desc.1": "", + "quests.high_voltage.TEST.desc.2": "", + "quests.high_voltage.TEST.desc.3": "", + "quests.high_voltage.TEST.desc.4": "", "quests.low_voltage": "&7LV&r - Low Voltage", "quests.low_voltage.subtitle": "Tame electricity and make your first machines", "quests.low_voltage.lv_machine_hull.title": "Your second machine hull", @@ -507,7 +583,7 @@ "quests.low_voltage.lv_steam_turbine.desc.2": "If you're using a single &3Steam Turbine&r, you only need &a1x Tin Cables&r. On the other hand, if you upgrade to &32 Steam Turbines&r, you should use &a2x Tin Cables&r - else they may end up &cburning&r.\n\nThis is because of the &9Amperage&r mechanic... but that will be explained later so you can enjoy playing. Don't worry!", "quests.low_voltage.lbb.title": "Large Bronze Boiler", "quests.low_voltage.lbb.subtitle": "Boom, boom, boom, boom", - "quests.low_voltage.lbb.desc.1": "Be wary this one explodes if running when you load your world, waiting for a fix from GTm devs/n&oThe &3Large Boiler&r is an &6optional&r big-boy variant of the Small Boilers. It runs off solid or liquid fuel.\n\nIf you want Steam-based power production, this will be your first port-of-call. Other power options are listed in the &bMV&r chapter.\n\n&cImportant:&r This Boiler &lCAN&r also &cexplode&r similarly to the regular Boilers! Usually, the explosion can be rather devastating...", + "quests.low_voltage.lbb.desc.1": "&cBe wary this one explodes if running when you load your world, waiting for a fix from GTm devs&r\n\n&oThe &3Large Boiler&r is an &6optional&r big-boy variant of the Small Boilers. It runs off solid or liquid fuel.\n\nIf you want Steam-based power production, this will be your first port-of-call. Other power options are listed in the &bMV&r chapter.\n\n&cImportant:&r This Boiler &lCAN&r also &cexplode&r similarly to the regular Boilers! Usually, the explosion can be rather devastating...", "quests.low_voltage.lbb.desc.2": "&cWater supply is &lcrucial&r&r. Dedicate a system only for it.\n\nOnce fully heated up, the &3LBB&r produces 800 Steam per tick, which is &d400EU/t&r after conversion, or 12.5 Basic Steam Turbines. Such (relatively!) immense power comes at the cost of &la lot&r of burnable fuel. In TerraFirmaGreg we advise &8Creosote&r or &cLava&r. You can use Create to bring that if needed...", "quests.low_voltage.lbb.desc.3": "&5With this in consideration&r, the GUI lets you &9throttle&r the Boiler down to 25% power for 200 Steam per tick. That's &d100EU/t&r, or slightly above 3 Basic Steam Turbines.\n\n&9Note:&r An in-depth tutorial about Multiblocks is given after you get the &3Electric Blast Furnace&r. We recommend you aim for that first.", "quests.low_voltage.lv_polariser.title": "Basic Polariser", @@ -641,6 +717,11 @@ "quests.low_voltage.lv_circuit_assembler.subtitle": "Hopefully, your first MV Circuit expense", "quests.low_voltage.lv_circuit_assembler.desc.1": "From now on, all Circuits should be made in a &3Circuit Assembler&r. Use it now to enjoy &6far cheaper LV and MV circuits&r.\n\nEach time you upgrade to a new tier of &3Circuit Assembler&r, you will be able to craft more &dadvanced themes&r of circuit. These will use &ccomplex&r and &msometimes&r unfamiliar ingredients, but will be more efficient to craft overall.", "quests.low_voltage.lv_circuit_assembler.desc.2": "&l&3Lore:&r&o The Circuit Assembler has made appearances in and out of GregTech versions. GT5 did not have it, and it was reimplemented in GT5 Unofficial. GTCE decided not to port it, and the tug-of-war continues with its inclusion in GTCEu.", + "quests.low_voltage.lv_greenhouse.title": "Greenhouse", + "quests.low_voltage.lv_greenhouse.subtitle": "The power of KubeJS", + "quests.low_voltage.lv_greenhouse.desc.1": "GregTech doesn't provide ways to farm plants or trees, so we made a custom multiblock for the modpack!\n\nThe multiblock &3Greenhouse&r will be your source of &aWood&r and other plants if you wish.\n\nIts &aWood&r production should be enough to run &32 Pyrolyse Ovens&r at their lowest Power.\n\nYou can also use this for automated &aResin&r. The yields are kept low to incentivize other rubber sources later in the game.", + "quests.low_voltage.lv_greenhouse.desc.2": "&9Note: &rWith &d72 EU/t&r recipes, it needs either 1 &bMV&r energy hatch or 2 &7LV&r energy hatches. Multiblocks will &cnot&r use 2A of one tier to reach the next one for recipe voltage minimums.\n\nIn other words, the controller needs to say at least &bMV&r in the GUI to run recipes which say &bMV&r in EMI, even if they can draw enough EU/t with a lower tier hatch configuration.\n\n&9Note:&r The structure requires a lot of &7Steel&r. Make sure you have an &3EBF&r for that.", + "quests.low_voltage.lv_greenhouse.desc.3": "&l&3Lore from Community Pack:&r&o We originally implemented a Chemical Reactor recipe for wood in the modpack to solve the tree problem. Our implementation turned out to be completely busted, so we decided that a rebalance was due. Hopefully, the Greenhouse is a happy middle ground.", "quests.low_voltage.lv_centrifuge.title": "Basic Centrifuge", "quests.low_voltage.lv_centrifuge.subtitle": "It does the opposite of the Mixer", "quests.low_voltage.lv_centrifuge.desc.1": "&lOutside of Ore Processing:&r\n\nOh boy, what can't this machine do? Decomposition recipes to separate dust types, separating air, do your taxes, and many others...\n\nThe list is too long! Let's just say &cyou need the Centrifuge&r.", @@ -649,7 +730,7 @@ "quests.low_voltage.lv_centrifuge.task": "", "quests.low_voltage.lv_glue.title": "Glued", "quests.low_voltage.lv_glue.subtitle": "Oh so I can use my sticky resin better", - "quests.low_voltage.lv_glue.desc": "You can now &3centrifuge&r &aSticky Resin&r, which will still give Raw Rubber - but this time alongside &aGlue&r (and the less useful Plantball, &6for now&r).\n\nGive yourself a headstart and get on producing Glue. You can use it to make &6cheaper Resistors&r, as well as &6cheaper Circuit Boards&r in the &3Assembling Machine&r (and it is especially useful &oin the near future&r).\n\n&eNote:&r You could also use &aGlue&r from TFC if you feel it would be easier for you", + "quests.low_voltage.lv_glue.desc": "You can now &3centrifuge&r &aSticky Resin&r, which will give you &aGlue&r in fluid form (and the less useful Plantball, &6for now&r).\n\nGive yourself a headstart and get on producing Glue. You can use it to make &6cheaper Resistors&r, as well as &6cheaper Circuit Boards&r in the &3Assembling Machine&r (and it is especially useful &oin the near future&r).\n\n&eNote:&r You could also use &aGlue&r from TFC or &aConifer Rosin&r if you feel it would be easier for you", "quests.low_voltage.lv_cutter.title": "Basic Cutter", "quests.low_voltage.lv_cutter.subtitle": "The Cutter... cuts...", "quests.low_voltage.lv_cutter.desc": "For now, you should use &9Water&r for its recipes instead of trying to acquire Lubricant.\n\nThe &3Cutting Machine&r additionally unlocks converting &6Rods into four Bolts&r.\n\nThis machine is the only way to obtain &dGem Plates&r, which are needed to craft Filters, and by extension, the &3Gas Collector&r.", @@ -713,6 +794,239 @@ "quests.low_voltage.mv_hull.subtitle": "This is going quite well, only 7 to go!", "quests.low_voltage.mv_hull.desc1": "Good job, you now have your &bMV Machine Hull&r, your first &bMV Circuit&r and your first &6Circuit Assembler&r.\n\nThis is the gist of &6Gregtech&r, every tier you are going to need to do new &6machines&r using new &6materials&r and &6chemicals&r. You are going to have so &5much fun&r, we are kinda jealous.", "quests.low_voltage.mv_hull.desc2": "Before going further into &bMV&r remember that in &6TFG&r you can use &6Create&r to reinforce your infrastruce if you don't want to use too much of Gregtech.", + "quests.medium_voltage": "&bMV&r - Medium Voltage", + "quests.medium_voltage.subtitle": "Venture into petrochemistry and refine electronics", + "quests.medium_voltage.mv_machine_hull.title": "Welcome to MV!", + "quests.medium_voltage.mv_machine_hull.subtitle": "More technology, more problems", + "quests.medium_voltage.mv_machine_hull.desc.1": "Every time you enter a new tier, things can get a bit overwhelming. You’ll be faced with lots of &enew machines&r to build and &echemicals&r to produce.\\n\\nAs you’ve probably seen in the quests, you have &2three main objectives&r to complete before progressing into &6HV&r. Let's break them down one by one.", + "quests.medium_voltage.mv_machine_hull.desc.2": "First, you’ll need to upgrade your &dEBF&r with two new &bMV Energy Hatches&r. This will allow it to overclock and run &6HV recipes&r. That upgrade is key for producing &estainless steel&r, the main material for &6HV&r, and also &eKanthal&r, which you’ll need to upgrade your &dEBF coils&r.", + "quests.medium_voltage.mv_machine_hull.desc.3": "Your second objectiveβ€”although you can tackle it first if you preferβ€”involves diving into chemistry. Your first plastic, &ePolyethylene&r, is essential for future progress. There are two possible paths you can follow, and the quests will help guide you:\\n\\n- &ePetrochem route&r: extract oil from the ground or oilsands. This path also unlocks &eDiesel&r production for fuel combustion.\\n\\n- &eBiochem route&r: use a &6Pyrolyse Oven&r and wood (a Create-powered tree farm works great). This method gives you more &eBenzene&r and opens the door to using a &eGas Generator&r.\\n\\nEach path has its pros and cons, but eventually, you’ll need both anyway.", + "quests.medium_voltage.mv_machine_hull.desc.4": "The final step here is unlocking the &6second HV Circuit&r. It only requires &atwo steps&r, making it faster than crafting the &6first HV Circuit&r, which needs &cthree steps&r.\n\nTo achieve this, you'll need to get your hands on a &dLaser Engraver&r, which allows you to produce your first &dWafers&r. With those, you can craft an &6HV Circuit&r that you'll use to build the &bMV Circuit Assembler&r.\n\nIt's not strictly necessary to do this nowβ€”you can continue using the first HV Circuit for progressionβ€”but &ait will make your life much easier&r if you take care of it now. Trust us.", + "quests.medium_voltage.mv_miner.title": "Automatic Mining", + "quests.medium_voltage.mv_miner.subtitle": "So are you bored of mining yourself?", + "quests.medium_voltage.mv_miner.desc.1": "This kind soul&r will mine ores for you when placed above a vein.\n\nVertical range is unlimited below the miner. Horizontal range is displayed in the tooltip.\n\nThe &bMV&r variant may not have the range to mine a full vein, but the &6HV&r variant does, so you may wish hold off for now. Get &eeither&r to complete this Quest.", + "quests.medium_voltage.mv_miner.desc.2": "You will need &9Power&r. &aCharged Batteries&r may work, but they tend to run out of power, which is a bit inconvenient.\n\nOur top suggestion is to use a filled &3Drum&r of some kind of fuel &7(if you're using Steam, no dice!)&r and a &3Generator&r.\n\nPlace the Drum above your Generator and right-click it with a &5Screwdriver&r to auto-output into the Generator.", + "quests.medium_voltage.mv_miner.desc.3": "&cNote:&r Do not forget to &dchunkload&r all 9 chunks of the ore vein &7(open the map, claim the chunks with ctrl left-click, and enable force loading after claiming them)&r.\n\n&9Tip:&r You can either use an &3ME Chest&r or a &3GT Create&r as the output inventory to make transporting the ores back home a simple task. The &3ME Chest&r can be powered with EU directly but that won't be before some time.", + "quests.medium_voltage.mv_miner.task": "Any miner", + "quests.medium_voltage.mv_component.title": "The MV Components", + "quests.medium_voltage.mv_component_.subtitle": "Hated crafting these in previous tier?", + "quests.medium_voltage.mv_component.desc": "Here's a list of the components you will need in &bMV&r. To alleviate the pain, be sure to autocraft or &dbulk-craft&r these parts, especially &aMotors&r.\n\nFamiliar with the &aEmitter&r? This tier's Emitter requires a &dFlawless Emerald&r in its recipe, which'll be only attainable with the &3Sifting Machine&r for now.\n\nConveyors, Pumps and Robot Arms are objective upgrades to &7LV&r versions if you use them as covers.", + "quests.medium_voltage.electrolyzer.title": "MV Electrolyzer", + "quests.medium_voltage.electrolyzer.subtitle": "We made it to MV, and, well...", + "quests.medium_voltage.electrolyzer.desc": "This one should look familiarβ€”you’ve already seen it before. We’re not forcing you to craft it, but know that it’s &aactually really useful&r. And if you skipped the &7LV&r version, then let’s be honest: &cyou’ll need this one&r.\n\nIt’s great for processing &cdusts&r that can’t be smelted, and it’s a solid way to get &dAluminum&r, &dbattery materials&r, and &dSilicon&rβ€”especially if you can gather enough &dClay&r.\n\nAnd don’t forget: you can find <ons of clay&r in &8The Beneath&r, if you’re brave enough to go digging there.", + "quests.medium_voltage.mv_extruder.title": "Advanced Extruder", + "quests.medium_voltage.mv_extruder.subtitle": "The biggest upgrade you'll make", + "quests.medium_voltage.mv_extruder.desc": "We &lSINCERELY&r hope at &cno&r point you made the &7LV&r Extruder, because only the &bMV&r Extruder is actually useful. If you did, immediately &arecycle it&r through the Arc Furnace.\n\nThe Extruder shapes solid materials into (almost!) any form using &aIngots&r. This is a great way to reduce the amount of microcrafting, as well as keeping a high conversion ratio.\n\nThe Extruder can make &6Bolts&r, &6&6Small Gears&r, &6Gears&r, and &6&6Rings&r at the highest efficiency in a single step!\n\nYou may also like to use it for &dPipes&r, &dLong Rods&r, and &dRotors&r.", + "quests.medium_voltage.mv_chemical_reactor.title": "Advanced Chemical Reactor", + "quests.medium_voltage.mv_chemical_reactor.subtitle": "Stronger, better, faster", + "quests.medium_voltage.mv_chemical_reactor.desc": "You already know about the &dChemical Reactor&r from the &7LV Chapter&rβ€”but here’s a refresher.\n\nAt &bMV&r, you unlock &anew recipes&r and also gain the ability to &aoverclock your LV recipes&r. That means they can run &atwice as fast&r, but will consume &e4x the energy&r. It’s up to you to decide whether the trade-off is worth it.\n\nBut that’s not the only reason to build the &bMV Chemical Reactor&r. If you’re taking the &dorganic chemistry path&r, you’ll need it to run the &dEthylene&r recipe, which uses &dSulfuric Acid&r and &dEthanol&rβ€”this one requires &bMV power&r.\n\nIn any case, it’s a solid machine, and not too expensive. Go ahead and build it when you have a bit of spare time.", + "quests.medium_voltage.mv_mixer.title": "Advanced Mixer", + "quests.medium_voltage.mv_mixer.subtitle": "Mixing more complex alloys", + "quests.medium_voltage.mv_mixer.desc": "If you're wanting to dive into &bMV&r, start here.\n\nThe dusts created in an &3MV Mixer&r have great utility.", + "quests.medium_voltage.mv_energy.title": "Electricity Generation in MV", + "quests.medium_voltage.mv_energy.subtitle": "Things are 'boutta get rough", + "quests.medium_voltage.mv_energy.desc.1": "Hello there, and welcome to &bMV Energy Production&r.\n\nIn this quest, we’ll go over the different options available to keep your &bMV machines&r powered and running smoothly.\n\nWe won’t cover this in every chapter, so we highly recommend that you &aread the dedicated chapter on GregTech Energy&r for a deeper understanding of how everything works.\n\nFor now, here are your &athree main options&r:\n\n&8- &bUse an MV Generator&r to directly produce &bMV-level energy&r.\n\n&8- &bStep up your &7LV&r power by using transformers&r, with a &e4:1 ratio&r between &7LV&r and &bMV&r.\n\n&8- &bConvert RF&r using your &dAlternator&r to get &bMV energy&r directly.\n\n", + "quests.medium_voltage.mv_energy.desc.2": "Higher-tier Generators will increase their fuel consumption proportionally to their Generation rate, keeping the duration of fuels and the specific amount of energy from fuels the same. The &3Advanced Steam Turbine&r will use &d5,120 mB Steam&r per second, equivalent to &d256 mB/t&r.\n\nGet &eany&r of the generators to complete this quest, but you may prefer starting off with the &3Advanced Steam Turbine&r.", + "quests.medium_voltage.mv_energy.desc.3": "There are a few new power options available for &bMV&r. Selecting the Generators and pressing &4U&r will let you see which fuels count as &aCombustion&r or &aGas&r.\n\nQuests in the top left corner of this Chapter are for the valuable Power options.\n\nIf you stick to &9Steam&r for your Power generation, you'll probably need a &3Large Boiler&r.", + "quests.medium_voltage.mv_energy.desc.4": "&3Transformers&r allow you to step up and down safely between Voltage tiers. They convert the power they receive into an equivalent amount of power 1 voltage tier above or below the input voltage.\n\nApart from running machines on different voltage tiers, Transformers come in handy for transporting power across longer distances, as cable loss has less of an effect at higher voltages. Just like real life!", + "quests.medium_voltage.mv_energy.desc.5": "Transformers have 5 low voltage sides, and 1 high voltage side.\n\nThe &9normal&r Transformer can only do 1A <-> 4A conversion, but &9Adjustable&r Transformers can be changed between 1A <-> 4A, 2A <-> 8A, 4A <-> 16A, and 16A <-> 64A conversions.\n\nUse a &aSoft Hammer&r to change between transforming up and down, and a &aScrewdriver&r on Adjustable Transformers to change the amperage.\n\nHigher tier Transformers will require &9Coils&r.", + "quests.medium_voltage.mv_energy.desc.6": "Lastly, as you already know from the &7LV Chapter&r, you can use a &dConverter&r to, well... convert your &cRF&r directly into &bMV energy&r.", + "quests.medium_voltage.mv_battery.title": "MV Battery Buffer", + "quests.medium_voltage.mv_battery.subtitle": "Energy management", + "quests.medium_voltage.mv_battery.desc": "As always we highly encourage you to use &bBattery Buffer&r so even if you use more &6energy&r than what you produce, you won't run of it right away and you will be able to get the energy back while your machines aren't running.", + "quests.medium_voltage.mv_battery.task": "", + "quests.medium_voltage.mv_batteries.title": "Better Batteries", + "quests.medium_voltage.mv_batteries.subtitle": "Baby Got Battery", + "quests.medium_voltage.mv_batteries.desc": "&bMV&r Batteries will appeal to you if you want to buffer Energy, just like &7LV&r.\n\nThe cost in &aSodium&r, &aLithium&r or &aCadmium&r jumps up to 8 dusts, so you should use whatever you have the most of. The difference in capacity isn't &7THAT&r huge, after all!\n\nGet &eeither&r Battery to complete the Quest.", + "quests.medium_voltage.mv_steel_alloy.title": "Steel Alloys", + "quests.medium_voltage.mv_steel_alloy.subtitle": "Steel Your Heart", + "quests.medium_voltage.mv_steel_alloy.desc": "Vanadiumsteel is required in small quantities in progression. It's &6nearly four times as durable&r as Steel if used in GregTech tools. The Vanadium comes from &aVanadium Magnetite&r, which you may have encountered in Magnetite veins.\n\nOther Steel alloys include Blue Steel, Red Steel, and Black Steel!\n\nTake some Blue Steel free of charge - it's twice as durable as Steel.", + "quests.medium_voltage.pyrolyse.title": "Pyrolyse Oven", + "quests.medium_voltage.pyrolyse.subtitle": "Thermal Decomposition", + "quests.medium_voltage.pyrolyse.desc.1": "The &3Pyrolyse Oven&r is an electric equivalent to the &3Coke Oven&r. It can produce &9Coal Coke&r and &9Charcoal&r with a &9Creosote&r byproduct just as before, but also has additional &6Organic Byproducts&r, the most beneficial of these being &aWood Tar&r.\n\nAnother product is &aBiomass&r, which is more pertinent for your progression as of this moment.", + "quests.medium_voltage.pyrolyse.desc.2": "The byproducts can be Distilled for an array of organic resources, with &odifferent&r byproducts giving &odifferent&r ratios of &odifferent&r chemicals.\n\nYou will need to take a peek at the &9Distillation&r Quest to get to grips with the power of distillation...", + "quests.medium_voltage.pyrolyse.desc.3": "There are recipes that can accept &bNitrogen&r to double the speed. This isn't quite worth pursuing right now, but Nitrogen will eventually be free and infinite.\n\nYou should be more than fine with a single &3LV Energy Hatch&r, and Superconductors to supply a steady &d64 EU/t&r. Additionally, &3Cupronickel Coils&r are perfect when you're getting used to the Pyrolyse Oven, but you may want to upgrade to &bKanthal&r eventually.", + "quests.medium_voltage.pyrolyse.desc.4": "&9&lNote:&r&l The Plant path is one path you can take towards &9&lEthylene&r&l, which is a necessary chemical in progressing to &6HV&r&l. The other path involves Oil.&r\n\nThe Pyrolyse Oven remains &doptional&r. However, it is very rewarding to construct one either for Power, or for the various Byproducts, and we highly recommend you give it a look.\n\n&l&3Lore:&r&o In GT5u, the structure for the Pyrolyse Oven was infamously a giant box with only 9 coils inside. Players usually spent several minutes debugging what is wrong due to a lack of a EMI preview.", + "quests.medium_voltage.mv_fluid_rig.title": "Fluid Drilling Rigs", + "quests.medium_voltage.mv_fluid_rig.subtitle": "Fluid Drilling Rigs in CEu!", + "quests.medium_voltage.mv_fluid_rig.desc.1": "It's quite the investment to own a &3Fluid Drilling Rig&r, but it is &oby far&r the most prominent &6source of Oil&r.\n\nIt pumps fluids from underneath Bedrock itself. Note that the fluids aren't actually there, instead being simulated.\n\nFluid veins are stored within &cchunk-sized regions&r. Each vein has a different fluid, but they are mostly types of Oil.\n\nYou can't carry out prospecting for fluid veins &oyet&r - this will come at &6HV&r.", + "quests.medium_voltage.mv_fluid_rig.desc.2": "Each vein generates with a different base yield. This is typically between &d150L&r to &d300L per second&r.\n\nWhen drained, fluid veins will slowly deplete. This will cause the fluid yield to decrease over time until it reaches its depletion yield. At that point, you should move the Rig to a different vein.\n\nA &3Basic Fluid Drilling Rig&r will last for 100,000 operations (with 1 second per operation) until depletion. This is enough for &6well over 10,000&r buckets of Oil. Higher tier Rigs will massively increase the yield, while also decreasing the depletion rate.", + "quests.medium_voltage.mv_fluid_rig.desc.3": "&lWhat you can find in the &2Overworld&r&l:&r\n\n&9Oil:&r richer in &aLight Fuel&r, the most appreciated variant.\n&9Light Oil:&r richer in &aRefinery Gas&r, usable for power.\n&9Heavy Oil:&r richer in &aHeavy Fuel&r, which has uses that are more niche.\n&9Raw Oil:&r richer in &aNaphtha&r, the best source of the early-game oil products.\n&9Natural Gas:&r grants &aRefinery Gas&r with no distillation required.\n&9Sea Water:&r grants &aSodium&r and &aChlorine&r, useful later.", + "quests.medium_voltage.mv_fluid_rig.desc.4": "&lWhat you can find in the &cNether&r&l:&r\n\n&9Natural Gas:&r grants &aRefinery Gas&r but with higher yield than the Overworld vein.\n&9Lava:&r hopefully, you know what this is.\n\nWhen starting out, you may have to tap randomly until you find something you like. Remember that whatever you pump could also be used to refuel your Fluid Rig.", + "quests.medium_voltage.mv_oilsands.title": "America Simulator", + "quests.medium_voltage.mv_oilsands.subtitle": "This quest was sponsored by the US Military", + "quests.medium_voltage.mv_oilsands.desc": "Underground, you may come across pure Oilsands ore veins. You can &3centrifuge&r the Dust to get &aOil&r.\n\n&9&lNote:&r&l The Oil path is one path towards &9&lEthylene&r&l. The other paths involve getting natural with some Ethanol.&r\n\nFor now, Oil is &doptional&r. It becomes mandatory much later when you get to &5EV&r.\n\nOil can also be refined in the form of &aLight Fuel&r, &aDiesel&r or even &aGasoline&r, which are excellent power options.\n\nIf you chose this path, you should use it for both Power and Ethylene.\n\nOilsands are a &6great starting point&r - they'll tide you over until you unlock Fluid Drilling Rigs.", + "quests.medium_voltage.mv_lpg.title": "The Church of Natural Farts", + "quests.medium_voltage.mv_lpg.subtitle": "Whoever smelt it...", + "quests.medium_voltage.mv_lpg.desc.1": "&aRefinery Gas&r, &aLPG&r and &aMethane&r are &9Gas Fuels&r. LPG (Liquid Petroleum Gas) is a mix of hydrocarbons typically used in heating appliances.\n\nRefinery Gas is obtained either through &dNatural Gas&r or &dLight Oil&r, the latter yielding more, yet requiring an extra step of distillation.\n\nUse of a &3Centrifuge&r to separate into &aLPG&r and &aMethane&r should always be done, as it's practically free.", + "quests.medium_voltage.mv_lpg.desc.2": "&a&aLPG&r and &aMethane&r are burned in a &3Gas Turbine&r. Among the other fuel options, they are the easier to set up which makes them excellent to get started. Their drawback is that they cannot be refined further, so upgrading the &3Fluid Drilling Rig&r may be a top priority if you stick to this fuel source.\n\n&aMethane&r can also be obtained from a few &anatural sources&r. &eBetween us&r, they're memes, but you can explore them if you wish. Ultimately, your power source is your choice.", + "quests.medium_voltage.mv_brewery.title": "Local Brewery selling Booze", + "quests.medium_voltage.mv_brewery.subtitle": "*hic*... *hic*", + "quests.medium_voltage.mv_brewery.desc.1": "The Brewery can be used to make &aLubricant&r from &aRedstone&r and &aCreosote&r/&aOil&r. Lubricant has some niche uses, namely being used in the &3Cutter&r to significantly reduce the duration of its recipes.\n\nThe Brewery is a very, very slow machine, but it requires almost no power to run its recipes. Building &2many Breweries&r will help you obtain enough Biomass on your quest for plastic. Oh, and you can use it to brew &dPotions&r too!\n\n&9Note:&r The Brewery unlocks the Biomass path towards &9Ethylene&r. The same can be done in the &3Pyrolyse Oven&r. The other path involves Oil.&r", + "quests.medium_voltage.mv_brewery.desc.2": "&l&3Lore:&r&o You could make your own Brewery if you want to build up a company and start selling Booze... in GregTech 6.&r", + "quests.medium_voltage.mv_biomass.title": "Biomass", + "quests.medium_voltage.mv_biomass.subtitle": "Plants aren't industrial enough!", + "quests.medium_voltage.mv_biomass.desc.1": "Welcome to the organic &dEthylene&r path! The goal here is to produce &dEthanol&r and mix it with &dSulfuric Acid&r to make &dEthylene&r.\n\nTo get &dEthanol&r, you'll need to distill it from &aBiomass&rβ€”so let's look at the different ways to produce that biomass.\n\nThe first method is simple: put &asaplings&r into a &dBrewery&r with water. The downside? &eIt's slow&r.", + "quests.medium_voltage.mv_biomass.desc.2": "The second method is more complex, but yields much better results. You’ll need to get &aBio Chaff&r, which comes from &amacerating Plant Balls&r. Note that you won't get any &aextra chance&r until you unlock &6HV Crushing&r.\n\n&bPlant Balls&r can be obtained by:\n-Centrifuging &9Sugarcane&r or &9Beets&r\n-Centrifuging every &awood&r that you can tap &9#afc:tappable_logs&r\n-Compressing &asaplings&r directly\n\nFinally, process your &aBio Chaff&r with water in a &dBrewery&r or go for a &dPyrolyse Oven&r for a &e66% boost&r in output.", + "quests.medium_voltage.mv_biomass.desc.3": "&l&3Lore:&r&o You may recognise Plantballs from IndustrialCraft2! In IC2 Experimental, there was this rather... obscure way to turn Biomass into Biogas for power, which sadly required too much investment to be really worth it.", + "quests.medium_voltage.mv_distillery.title": "Distillery", + "quests.medium_voltage.mv_distillery.subtitle": "The Illusion of Free Choice", + "quests.medium_voltage.mv_distillery.desc.1": "Before we start, here's some important information if you're aiming to make Ethylene:\n\nTaking the &aOil&r route will require &oat least&r a &3LV Distillery&r.\n\nWith the &aBiomass&r route, you will &lneed&r a &3MV Distillery&r.\n\nGet &eeither&r to complete this quest.", + "quests.medium_voltage.mv_distillery.desc.2": "Got all that? &6Alright&r! Let's discuss a complex topic: &9Distillation&r. We'll try to help you understand how and why the &aEMI&r recipes are the way they are, so stick with us.\n\nNearly all the &3Distillery&r recipes are duplicates from the &3Distillation Tower&r, except that they only have one Fluid output, and void everything else.\n\nIn other words, you could argue the &3Distillery&r is an &dinferior&r &3Distillation Tower&r.", + "quests.medium_voltage.mv_distillery.desc.3": "This doesn't mean that the &3Distillery&r is the worse of the two. It is unlocked earlier, and it is &dsmaller&r, &dcheaper&r, and &dmore energy efficient&r per recipe.\n\nHell, in many cases, you won't even mind losing the other Fluids.\n\n&3Distilleries&r are an essential component for power generation, whether you pick &aDiesel&r or &aBenzene&r.\n\nYou'll probably want many of them at as low-tier as possible to avoid the energy losses from Overclocking.", + "quests.medium_voltage.mv_distillery.task": "Either an LV or MV Distillery", + "quests.medium_voltage.mv_benzene.title": "The Church of Benzene", + "quests.medium_voltage.mv_benzene.subtitle": "In the end, it's always Benzene", + "quests.medium_voltage.mv_benzene.desc.1": "&aBenzene&r is a &9Gas Fuel&r. To skip some frustration, let's check out the two best ways to obtain it.\n\nThe first option is typically &dWood based&r. Put Logs in the &3Pyrolyse Oven&r for &9Wood Tar&r. The Charcoal you obtain can then be processed in &3Extractors&r for even more &9Wood Tar&r, which you &3distill&r for &aBenzene&r.\n\nYour second option is &dHeavy Oil based&r. Put Heavy Oil in a &3Distillery&r for &9Heavy Fuel&r, which you &aseverely steam-crack&r and &3distill&r again for &aBenzene&r.", + "quests.medium_voltage.mv_benzene.desc.2": "For information on how to process Oil, check the Light Fuel and Naphtha Quests.\n\nIn general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources.\n\n&aBenzene&r is burned in a &3Gas Turbine&r. This power source starts weaker than its &eDiesel&r cousin, but gets a big boost when refined to &6Nitrobenzene&r in &6HV&r. Ultimately, your power source is your choice.", + "quests.medium_voltage.mv_light_fuel.title": "Light Fuel", + "quests.medium_voltage.mv_light_fuel.subtitle": "Turn up the Lights in here, baby", + "quests.medium_voltage.mv_light_fuel.desc": "Distillating &aOil&r will give you Fuel that you will need to desulfurize.\n\n&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r.\n\nTo automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r.\n\n&aLight Fuel&r is a good &9Power&r option, but there's something even greater... check the Quest to the left.", + "quests.medium_voltage.mv_diesel.title": "The Church of Diesel", + "quests.medium_voltage.mv_diesel.subtitle": "Mother, how is diesel made?", + "quests.medium_voltage.mv_diesel.desc.1": "&aDiesel&r is a &dOil-based &9Combustion Fuel&r.\n\nTo mix &aLight Fuel&r and &aHeavy Fuel&r, the right ratio for &3Distilleries&r is &63:2&r from &dOil&r or &dRaw Oil&r.\n\nThis would necessitate 3 Distilleries for Light Fuel, or 2 Distilleries for Heavy Fuel.", + "quests.medium_voltage.mv_diesel.desc.2": "You can cut the amount of &dOil&r required &6drastically&r by using &dHeavy Oil&r for &aHeavy Fuel&r specifically. &dOilsands&r is a great option if you wish to go down this route!\n\n&o(For the math nerds, you go from 8.33 Oil -> 6 Diesel, to 5 Oil + 0.4 Heavy Oil -> 6 Diesel)&r\n\n&eNote:&r Do &cnot attempt&r to put Oil in the &3Distillation Tower&r You might think it's a good idea because it gives both Light Fuel and Heavy Fuel. However, this process requires a lot of overclocking to be worth your time, and you will lose more energy than what the byproducts are worth.", + "quests.medium_voltage.mv_diesel.desc.3": "In general, it is better to prioritize placing down more machines (&dparallelisation&r) over overclocking the recipes. That way, you end up losing less energy processing the resources.\n\n&aDiesel&r is burned in a &3Combustion Generator&r. It can be further refined to &6Cetane-Boosted Diesel&r in &6HV&r. Compared to the other power sources, it is generally more efficient, but a more demanding processing line. If you take the &eOil&r route for &aPolyethylene&r, this can work great with existing infrastructure. Ultimately, the power source you want to use is your choice.", + "quests.medium_voltage.mv_jetpack.title": "I Believe I Can Fly", + "quests.medium_voltage.mv_jetpack.subtitle": "...well, almost Fly", + "quests.medium_voltage.mv_jetpack.desc": "This Jetpack takes most &aCombustion Fuels&r (excluding oils) to enable a primitive form of flight.\n\nFill it like you would fill a Drum, or with a &3Canning Machine&r.\n\nPress &4H&r (default) to enable Hover Mode.", + "quests.medium_voltage.mv_ethanol.title": "Ethanol", + "quests.medium_voltage.mv_ethanol.subtitle": "Yo, wait - that's alcohol!", + "quests.medium_voltage.mv_ethanol.desc": "Put your previously made &aBiomass&r into a &3MV Distillery&r to make &aEthanol&r.\n\nYou will need this for &dEthylene&r by reacting it with &aSulfuric Acid&r in a &3MV Chemical Reactor&r... unless you chose to go down the Oil path.\n\nOnce you have a hefty starting stock of Ethanol, consider making and distilling &9Fermented Biomass&r in a &3Distillation Tower&r (when you get there!) for extra chemicals.\n\n&cDo not try&r to use Ethanol as a Power source... it's quite possibly its worst use. If it's organic &9Power&r that you want, we suggest taking a look at &dBenzene&r instead!", + "quests.medium_voltage.mv_mutli_channel.title": "Multiple Channel Pipes", + "quests.medium_voltage.mv_mutli_channel.subtitle": "Is it already AE2?", + "quests.medium_voltage.mv_mutli_channel.desc": "Regular &o&dGregTech&r Fluid Pipes can only transport one fluid type at a time.\n\n&3Quadruple Fluid Pipes&r can transfer four different types of fluids. &3Nonuple Fluid Pipes&r can transfer nine different types! Useful for compact setups.\n\n&3Nonuple Fluid Pipes&r will be useful in &5EV&r for handling the many outputs of the &3Distillation Tower&r.\n\nGet &eeither&r to finish this quest.", + "quests.medium_voltage.mv_naphtha.title": "Naphtha", + "quests.medium_voltage.mv_naphtha.subtitle": "We're still confused on how this is pronounced", + "quests.medium_voltage.mv_naphtha.desc": "Distillating &aOil&r will give you Fuel that you will need to desulfurize.\n\n&aHydrogen Sulfide&r is perfectly &drecycled&r in an &3Electrolyzer&r.\n\nTo automate this process, simply place your &3Chemical Reactor&r and your &3Electrolyzer&r next to each other. Be sure to use your &5Screwdriver&r to &4enable input from the output side&r.\n\n&aNaphtha&r is a good &9Product&r source. Keep following the quests to the right for more details.", + "quests.medium_voltage.mv_fuel_cracking.title": "Fuel Cracking", + "quests.medium_voltage.mv_fuel_cracking.subtitle": "Fuel and oil cracking can get complicated...", + "quests.medium_voltage.mv_fuel_cracking.desc.1": "Don't panic! We'll mostly be doing this to get hydrocarbons.\n\nThere are many ways to acquire &dEthylene&r from Oil processing. It's easy to get lost in all the options and recipes!\n\nThe best way is to steam-crack &aNaphtha&r in a &3Chemical Reactor&r. Be sure to make the &aSeverely Steam-Cracked&r version for a higher yield of Ethylene.", + "quests.medium_voltage.mv_fuel_cracking.desc.2": "Once in &6HV&r, you'll have the option to do this recipe in the &3Cracking Unit&r at 100% efficiency. Unfortunately, the recipes you are doing with the Chemical Reactor have a loss of &450%&r.\n\n&9Note:&r All of this looks and feels terribly inefficient - we hope that's strong motivation to tier up! The &3Distillation Tower&r will be a huge upgrade for petrochem, but you're not quite there... yet. Right now, you'll have to use a &3Distillery&r to get &dEthylene&r.", + "quests.medium_voltage.mv_ethylene.title": "Ethylene", + "quests.medium_voltage.mv_ethylene.subtitle": "One of many hydrocarbons", + "quests.medium_voltage.mv_ethylene.desc": "Our warmest congratulations on making it here.\n\nThe way you should obtain &aEthylene&r was described in the previous Quest, depending on the route you chose.\n\n&aEthylene&r will shortly be used in polymer production. It's also useful in a few other reactions.", + "quests.medium_voltage.mv_sulfuric_acid.title": "Sulfuric Acid", + "quests.medium_voltage.mv_sulfuric_acid.subtitle": "...what he thought was H2O was H2SO4!", + "quests.medium_voltage.mv_sulfuric_acid.desc.1": "EMI might look a little overwhelming here, so we'll go through the best path for Sulfuric Acid here.\n\nMaking &eSulfuric Acid&r is a three step process. It is used in many important reactions, so you should automate its production ASAP.", + "quests.medium_voltage.mv_sulfuric_acid.desc.2": "To automate it, you will need &3three LV Chemical Reactors&r. We would recommend building a dedicated setup somewhere with &3a single LV Generator&r to power all three machines. You can then spaghetti your pipes to handle input and output.\n\n&9-&r Step 1: React &aSulfur&r with &bOxygen&r to form &aSulfur Dioxide&r.\n&9-&r Step 2: React &aSulfur Dioxide&r with more &bOxygen&r to form &aSulfur Trioxide&r.\n&9-&r Step 3: React &aSulfur Trioxide&r with &bWater&r to form &eSulfuric Acid&r.", + "quests.medium_voltage.mv_sulfuric_acid.desc.3": "&l&3Lore:&r&o GregTech 5's Chemical Reactor only had one Fluid slot. To circumvent that, they would do &dcell chemistry&f. The way you would automate Sulfuric Acid was by having one cell travel from machine to machine and then loop back to its starting position. A somewhat fun and interesting automation challenge, but also a chore!", + "quests.medium_voltage.mv_aciditic.title": "It will Melt Your Flesh", + "quests.medium_voltage.mv_aciditic.subtitle": "...if you don't read this quest.", + "quests.medium_voltage.mv_aciditic.desc.1": "You may notice that some fluids say they are &aAcidic&r, with &9Sulfuric Acid&r being one of them.\n\nThis means that many fluid pipes will not be able to transport them safely!\n\nAt &bMV&r, the cheapest pipes for acid transportation are probably &aGold&r, with the more expensive &aVanadium Steel&r or &aChrome&r pipes taking second and third place.\n\n&aStainless Steel&r or &aPolytetrafluoroethylene&r (try saying that fast) will be valid options once you are in &6HV&r.", + "quests.medium_voltage.mv_aciditic.desc.2": "You have three options for acid storage at around this point: &dGlass Vials&r, &dGold Drums&r, or &dSuper Tanks&r. Glass Vials are like &9Fluid Cells&r, and are made to store acids. Gold Drums are self-explanatory. Super Tanks will be unlocked after &9Polyethylene&r, and can store any fluid without restriction.\n\n&cWARNING:&r Acids in the wrong pipes will cause &cvoiding&r, &cpipe burning&r, and high chance of &cdeath&r! Be careful!\n\n&l&3Lore:&r&o The acid transportation and storage mechanics originate from GregTech 6.", + "quests.medium_voltage.mv_aciditic.task": "I'm an acid professional, don't worry", + "quests.medium_voltage.mv_hydrochloric.title": "Hydrochloric Acid", + "quests.medium_voltage.mv_hydrochloric.subtitle": "You'll need a lot of this!", + "quests.medium_voltage.mv_hydrochloric.desc": "Obtain &9Hydrochloric Acid&r by mixing &aHydrogen&r and &aChlorine&r.\n\nThis acid is also obtained as waste from a lot of reactions involving &aChlorine&r. Depending on your setups, you may never need to produce it directly.", + "quests.medium_voltage.mv_hydrogen.title": "Hydrogen Gas", + "quests.medium_voltage.mv_hydrogen.subtitle": "You know about Hydrogen right?", + "quests.medium_voltage.mv_hydrogen.desc": "There are &amany ways&r to get your hands on &dHydrogen&rβ€”and it will often be a &abyproduct&r of other chemical reactions.\n\nIn &dPetrochem&r, you’ll produce a lot of &dMethane&r, which can be &aelectrolyzed&r into &dHydrogen&r. You could also electrolyze &9Water&r, but we recommend going for &9Seawater&r instead, as it gives more useful byproducts.\n\nLater on, the &ebest method&r will be reacting &9Water&r with &dMethane&r directlyβ€”but that’s &6HV-gated&r and will start off &erather slow&r.", + "quests.medium_voltage.mv_chlorine.title": "Chlorine Gas", + "quests.medium_voltage.mv_chlorine.subtitle": "Salty Gas", + "quests.medium_voltage.mv_chlorine.desc": "&dChlorine&r is a core component of your chemical toolkit. You’ll need &da lot of it&r for various reactions and crafting stepsβ€”the first one being &dHydrochloric Acid&r.\n\nThere are many ways to obtain &dChlorine&r, but the main source is &dsalt&r. It’s basically everywhere, so you won’t struggle to find it.\n\nWe recommend &aelectrolyzing seawater&r as an early method, but keep in mindβ€”it’s &eslow&r.", + "quests.medium_voltage.mv_seawater.title": "Ocean Water", + "quests.medium_voltage.mv_seawater.subtitle": "You can have a lot of it", + "quests.medium_voltage.mv_seawater.desc": "This quest is here to emphasize the presence of &9Sea Water&r in &aTerrafirmaCraft&r.\n\nThe great thing about it is that, when used with a &aHose Pulley&r, it becomes an &ainfinite water source&r right away. From there, you can &aelectrolyze it&r to get both &dChlorine&r and &dHydrogen&r.\n\nYou’ll just need a passive way to transport it to your baseβ€”and we offer you &atwo options&r:\n\n&8- &eCreate Trains&r: Requires both stations to be chunkloaded. The good news? Trains are &aalready available&r to you at this stage.\n\n&8- &eLong-Distance Pipeline&r: This one needs &dStainless Steel&r, which you'll be able to produce &aby the end of this chapter&r.", + "quests.medium_voltage.mv_long_pipe.title": "Long-Distance Pipeline", + "quests.medium_voltage.mv_long_pipe.subtitle": "Wondering how to move these liquids around?", + "quests.medium_voltage.mv_long_pipe.desc.1": "&3Long-Distance Fluid Pipes&r can be used to send fluids across great distances. Place one endpoint at each end, and connect them with pipeline blocks.\n\nThese pipes instantly transfer from the input side to the output side.\n\nThey also have a minimum distance between pipe endpoints, so you can't use these for short-range operations.", + "quests.medium_voltage.mv_long_pipe.desc.2": "These pipes have a reputation of being &4buggy&r to set up. If they don't seem to work at first, try rotating the endpoints with a &eWrench&r.", + "quests.medium_voltage.mv_polyethylene.title": "Polyethylene", + "quests.medium_voltage.mv_polyethylene.subtitle": "Baby's first polymer!", + "quests.medium_voltage.mv_polyethylene.desc": "If you want to be less fancy, just call it plastic.\n\nFor the polymerization process, add &aOxygen&r, which gives better returns than Air, then solidify like you would with Rubber.\n\n&aPolyethylene (PE)&r is the key to unlocking &6many new things&r. It's commonly used as &dSheets&r, or in &dFluid&r form.\n\n&l&3Lore:&r&o The OreDict and fluid name for Polyethylene in 1.12.2 GTCEu was &bplastic&f, for cross-mod compatibility.", + "quests.medium_voltage.mv_tank.title": "Super Tank", + "quests.medium_voltage.mv_tank.subtitle": "Super Tanks are OP!", + "quests.medium_voltage.mv_tank.desc": "No, but seriously.\n\nThis is the &cu&6l&et&ai&bm&9a&5t&4e&r portable Fluid storage solution. &64,000 buckets of storage&r - in one single block without any regards to temperature or acidity!\n\nLike Drums, Super Tanks &6keep their fluids when broken&r, and can be cleared in the crafting grid.\n\nIf you hunger for &9even more&r storage, take a look at higher tier Super Tanks or AE2 Fluid Storage Cells.", + "quests.medium_voltage.mv_pvc.title": "Polyvinyl Chloride", + "quests.medium_voltage.mv_pvc.subtitle": "You've already made one polymer, what's two?", + "quests.medium_voltage.mv_pvc.desc": "&aPolyvinyl Chloride (PVC)&r is the 3rd-most produced plastic in real life. Here in CEu, it can be substituted for Polyethylene in the production of &aPlastic Circuit Boards&r and other items to increase the yield. It is required from &5EV&r onwards to wrap Cables.\n\nPVC item pipes also have the &6highest throughput&r available for a while, but most of your setups right now won't need such speed. Still, it's good to keep this knowledge in your pocket.\n\n&9Pro tip:&r The fluid form of PVC is never used in base GTCEu, so feel free to solidify all of it into sheets.", + "quests.medium_voltage.mv_boards.title": "Plastic Boards", + "quests.medium_voltage.mv_boards.subtitle": "It's a Casio on a Plastic Board", + "quests.medium_voltage.mv_boards.desc": "At this point, you have all the tools available to start making Plastic Boards. Higher-tier polymers in future will increase your PCB yields substantially.\n\nThe recipe chains are starting to get pretty long, so we recommend processing large batches in two dedicated &3Chemical Reactors&r.", + "quests.medium_voltage.mv_sodium_iron.title": "Sodium Persulfate / Iron III Chloride", + "quests.medium_voltage.mv_sodium_iron.subtitle": "Let's etch some Copper off Circuit Boards!", + "quests.medium_voltage.mv_sodium_iron.desc.1": "&aSodium Persulfate&r can be used in &9Ore Processing&r in the &3Chemical Bath&r to get various bonus outputs you would not normally obtain. It's completely optional, but pretty rewarding.\n\n&lWait, stop! That's only a distraction&r - the real topic of this Quest is...\n\n&aSodium Persulfate&r and &aIron III Chloride&r are used to make cheaper &9Good Circuit Boards&r, as their inclusion cuts Silver usage by a factor of four.\n\nThey're also &drequired&r to make &9Plastic Circuit Boards&r.", + "quests.medium_voltage.mv_sodium_iron.desc.2": "Making &aSodium Persulfate&r will yield &aHydrochloric Acid&r as a coproduct, which you may re-use to make &aIron III Chloride&r. This should the best approach right now, but the decision is entirely yours.\n\nThough if you are able to bring back Sea Water passively, Iron III Chloride will be the cheaper and more straight forward path.", + "quests.medium_voltage.mv_inductor.title": "Inductors", + "quests.medium_voltage.mv_inductor.subtitle": "Z = jwL", + "quests.medium_voltage.mv_inductor.desc": "A Circuit Component that you can now make thanks to the &3MV Assembler&r and &3Polyethylene&r.\n\nIf you want the cheapest recipe, &aNickel-Zinc Ferrite&r is the way to go.", + "quests.medium_voltage.mv_electronic_components.title": "Electronic Components", + "quests.medium_voltage.mv_electronic_components.subtitle": "A core piece of GT progression system", + "quests.medium_voltage.mv_electronic_components.desc": "Let's talk about the &dElectronic Components&r from &dGregtech&r. They are a &ccore part&r of the mod's progression and are used to make &aall circuits&r in the game.\n\nMost components have &amultiple recipes&r. Depending on the &9materials&r you choose, you can achieve &ebetter yields&r. We encourage you to browse through &aEMI&r and decide which ones fit your situation best.\n\nThese components can be crafted in &clarge stacks&rβ€”you'll need &ea lot&r of them for your future circuits!\n\nFor the &dTransistor&r, you’ll specifically need &5Silicon Ingots&r... but by now, you should be &cvery familiar&r with &chandling hot stuff&r, right?", + "quests.medium_voltage.mv_best_lv.title": "Best LV Circuits", + "quests.medium_voltage.mv_best_lv.subtitle": "It Feels Good to be the Best", + "quests.medium_voltage.mv_best_lv.desc": "&6The best LV Circuits&r! You can start to churn these guys out, as you'll be making them for the rest of the game.\n\nTry to keep a stockpile of these crafted at all times - making these on-demand can take a while.\n\nReaching &5EV&r will unlock methods to make them even cheaper.", + "quests.medium_voltage.mv_best_mv.title": "Best MV Circuits", + "quests.medium_voltage.mv_best_mv.subtitle": "MV has peaked", + "quests.medium_voltage.mv_best_mv.desc": "&6The best MV Circuits&r! You will be making these for the remainder of the game.\n\nEventually (in &9IV&r), they will become even cheaper.", + "quests.medium_voltage.mv_second_hv.title": "More HV Circuits", + "quests.medium_voltage.mv_second_hv.subtitle": "On that HV grind", + "quests.medium_voltage.mv_second_hv.desc": "Congrats finishing a major milestone of the &bMV Chapter&r.\n\nBetter &6HV&r Circuits - much &dcheaper&r and easier to make than before.\n\nYou should now be &aready to move on&r to the HV Chapter, unless you're yet to scale up your Power Production.", + "quests.medium_voltage.mv_circuit_assembler.title": "Your Second Circuit Assembler", + "quests.medium_voltage.mv_circuit_assembler.subtitle": "Yippee, yahoo", + "quests.medium_voltage.mv_circuit_assembler.desc": "As is common for every tier, the &3Circuit Assembler&r is an essential part of progression, always opening up a new Tier of circuits.\n\nAt this point you should be placing an &3Extractor&r next to your Circuit Assembler. Send off dozens of stacks of &aSoldering Alloy&r Ingots, and you won't have to worry about refilling again.", + "quests.medium_voltage.mv_more_lv.title": "More LV Circuits", + "quests.medium_voltage.mv_more_lv.subtitle": "You have unlocked a new tier of Circuits!", + "quests.medium_voltage.mv_more_lv.desc.1": "The Integrated Logic Circuit is an alternate &7LV &aCircuit&r, which is easier to mass-produce, and can be upgraded to &bMV&r (and then &6HV&r).\n\n&9Note:&r This is not a strict upgrade to the cost of Circuits - you would need to get to the next Tier for that. It is still an important upgrade, and is required to get to &6HV circuits&r.", + "quests.medium_voltage.mv_more_lv.desc.2": "&l&3Lore:&r&o The circuit progression in GTCEu is mostly based on GT5u's progression. It has been rebalanced to not be as painful. &lSpecifically&r&o this circuit tier, which was a trap!", + "quests.medium_voltage.mv_more_mv.title": "More MV Circuits", + "quests.medium_voltage.mv_more_mv.subtitle": "More... I demand more!", + "quests.medium_voltage.mv_more_mv.desc": "The &bMV&r Circuit for the Integrated Tier, this is one is kinda bad. Use it only to make your first HV Circuit", + "quests.medium_voltage.mv_first_hv.title": "First HV Circuits!", + "quests.medium_voltage.mv_first_hv.subtitle": "...but hold on before getting too giddy", + "quests.medium_voltage.mv_first_hv.desc": "Alright... technically, obtaining &6HV&r Circuits and Stainless Steel lets you progress to &6HV&r - but let's not rush things.\n\nThe first thing you should make with these is a &3MV Circuit Assembler&r to unlock the new tier of Circuits right away; cheaper recipes is the &dreal payoff&r here.", + "quests.medium_voltage.mv_multi_smelter.title": "Ultimate Smelter", + "quests.medium_voltage.mv_multi_smelter.subtitle": "Possibly the most powerful furnace you've seen", + "quests.medium_voltage.mv_multi_smelter.desc": "At its lowest power (Cupronickel coils and &7LV&r Voltage), the &dMulti Smelter&r smelts 32 items in just 12 seconds - equivalent to &926.7 Furnaces&r, or 3.3 Steam Ovens!\n\nIf that wasn't already enough to convince you, standard &aoverclocks&r can be applied with sufficient voltage.\n\nAnd even better - higher tier &3Coils&r increase the amount of items it can smelt in &dparallel&r!", + "quests.medium_voltage.hv_machine_hull.title": "The HV Machine Hull", + "quests.medium_voltage.hv_machine_hull.subtitle": "That's your fourth machine hull! This is progression", + "quests.medium_voltage.hv_machine_hull.desc": "This is itβ€”the &6HV Machine Hull&r! Congratulations on reaching this major milestone.\n\nYou had to manage &dchemicals&r, upgrade your &dEBF&r, mix a &cnew alloy&r, and learn about &aWafers&r and the &aLaser Engraver&r. We hope your &aunderstanding of Gregtech&r is growing stronger every day.\n\nFrom now on, &ecomplexity will increase&r at each tier, but you’ll also gain access to &anew machines&r that will ease earlier processes and introduce &9interesting new mechanics&r.\n\nEven though you’ve just unlocked the &6HV Chapter&r, remember that this marks only &atwo&r of the &bMV Chapter&r’s main milestones.\n\nIf you haven’t unlocked the &6Second HV Circuit&r yet, we highly encourage you to do so before moving forward.\n\nOtherwise, &aWelcome to HV!&r", + "quests.medium_voltage.mv_stainless.title": "Stainless Steel", + "quests.medium_voltage.mv_stainless.subtitle": "HV is in your grasp", + "quests.medium_voltage.mv_stainless.desc.1": "Any Steel you encounter in day-to-day life is most likely &7Stainless Steel&r. It is extremely resilient against corrosion.&r\n\nStainless Steel is the material for &6HV&r components, like Aluminium for &bMV&r and Steel for &7LV&r. It is also used in high quantities for the &3Distillation Tower&r.\n\nIt requires &cChromium&r, obtained mainly from &cRuby&r or &cChromite&r, and &2Manganese&r, obtained from &2Pyrolusite&r and others in its vein.", + "quests.medium_voltage.mv_stainless.desc.2": "Smelting Stainless Steel requires &dHV Power&r, which you likely do not have at this point. Scaling Power Production is crucial.\n\nIf you &9haven't already&r, it would be a good idea to get a second EBF going. They can share blocks, so that means your second EBF only requires &a10 Cupronickel Coils&r instead of 16.\n\nHave one EBF run off &bMV&r for Aluminium and any other recipes requiring &bMV&r Power, and one running off &6HV&r with &32 MV Energy Hatches&r.", + "quests.medium_voltage.mv_energy_hatch.title": "Upgrade your EBF!", + "quests.medium_voltage.mv_energy_hatch.subtitle": "LV is so old-school!", + "quests.medium_voltage.mv_energy_hatch.desc": "A &7LV&r Battery Buffer and two &7LV&r Energy Hatches likely won't cut it anymore. Let's remedy that!\n\nUpgrade your Electric Blast Furnace with a &3MV Energy Hatch&r. Now, you can run it with &bMV&r Generators without having to mess around with &3Transformers&r.", + "quests.medium_voltage.mv_kanthal_coil.title": "Kanthal Coils", + "quests.medium_voltage.mv_kanthal_coil.subtitle": "Is it getting hot in here?", + "quests.medium_voltage.mv_kanthal_coil.desc": "&3Kanthal Heating Coils&r are the next major step in progression. They increase the temperature of your &3Blast Furnace&r to &d2,700K&r, allowing you to process new materials. They may also &eaccelerate&r less hot recipes - check the &aEnergy&r chapter to the top-left for details.\n\nRemember that you &ccannot&r mix coils in an EBF.", + "quests.medium_voltage.mv_kanthal_ingot.title": "Kanthal", + "quests.medium_voltage.mv_kanthal_ingot.subtitle": "This one is hot", + "quests.medium_voltage.mv_kanthal_ingot.desc.1": "Oh good lord, that’s a lot of &cKanthal&r needed here... And what the heck is this &chot ingot&r thing again? &cYes, again!&r\n\nHere we are with a mechanic you should remember from &aTerrafirmaCraft&rβ€”it hasn't been that long, right?\n\n&cHot ingots&r will &cburn you&r if you carry them around and you don't have &cany way&r to counter it using Tongs...\n\nAlso unlike &aTFC&r, &cthey don’t cool down naturally&r! You’ll need to actively &acool them&r down.", + "quests.medium_voltage.mv_kanthal_ingot.desc.2": "To do that, place them into a &dChemical Bath&r with &9Water&rβ€”or even better, &9Distilled Water&r for a &e50% faster&r cooling time.\n\nWe highly recommend you &aautomate&r this process to avoid carrying those hot ingots yourself. Use &apipes&r to send them directly from your &dEBF&r to your &dOre Washer&r.\n\nYou can also set up an &aItem Tag Filter&r to help with sorting the hot ingots &7#forge:hot_ingots*&r.", + "quests.medium_voltage.mv_assembler.title": "Advanced Assembler", + "quests.medium_voltage.mv_assembler.subtitle": "Assengers, Avemble", + "quests.medium_voltage.mv_assembler.desc": "The &3Assembler&r is a staple for every Tier; an important goal to unlock more recipes and progress further into the Age. Many in the community see crafting a voltage tier's Assembler as a sign of &oproperly&r reaching said voltage.\n\nThat being said, welcome to &bMV&r!\n\nThe &bMV &3Assembler&r unlocks &eTransistors&r, &eCapacitors&r and &eInductors&r, used for the next tiers of Circuits.", + "quests.medium_voltage.mv_cells.title": "Large Cells", + "quests.medium_voltage.mv_cells.subtitle": "Like cells... only larger!", + "quests.medium_voltage.mv_cells.desc": "Aluminium Cells are a big upgrade over the Steel Cells or Universal Fluid Cells.\n\nThey can hold any fraction of Fluid - up to &d32 buckets&r!", + "quests.medium_voltage.mv_jetpack_2.title": "I Believe I Can Fly II", + "quests.medium_voltage.mv_jetpack_2.subtitle": "...still not quite there.", + "quests.medium_voltage.mv_jetpack_2.desc": "This jetpack enables flight, and requires energy.\n\nCharge it like you would charge a Battery.\n\nPress &4H&r (default) to enable Hover Mode.\n\n&o&8(Yeah, yeah, a jetpack is supposed to work off propellants. Y'all are always here to nitpick.)&r", + "quests.medium_voltage.mv_cutter.title": "Advanced Cutter", + "quests.medium_voltage.mv_cutter.subtitle": "Upgrades, people, upgrades!", + "quests.medium_voltage.mv_cutter.desc": "The &3MV Cutter&r is required to cut &7Silicon Boules&r to prepare them for &aLaser Engraving&r.\n\nWe recommend you supply this machine with a steady stream of &dLubricant&r to cut down on the processing time.\n\nLubricant can be &3brewed&r from &eOil&r and &aTalc&r, &2Soapstone&r or &cRedstone&r.\n\n&7Note : You could use the &6Greate&r &7version, it has now a tank to fill with it fluid&r&r", + "quests.medium_voltage.mv_laser_engraver.title": "Laser Engraving", + "quests.medium_voltage.mv_laser_engraver.subtitle": "This is peak technology, this is slow also", + "quests.medium_voltage.mv_laser_engraver.desc": "The &3Laser Engraver&r engraves patterns into &9Silicon Wafers&r based on the type of &9Lens&r it is given. After the wafers are engraved, they must be passed through a &3Cutting Machine&r to turn them into components ready to be put into Circuits.\n\nHigher tier Engravers can etch more complex wafers for more efficient Circuits.", + "quests.medium_voltage.mv_silicon_boule.title": "Silicon Lottery", + "quests.medium_voltage.mv_silicon_boule.subtitle": "These wafers are fully fungible", + "quests.medium_voltage.mv_silicon_boule.desc": "&9Silicon Boules&r are made in the &3EBF&r with half a stack of &aSilicon Dust&r and a pinch of &aGallium Arsenide&r. Their primary purpose is engraving &6Circuit Wafers&r.\n\nAfter making the Boule, process it in the &3Cutter&r to get 16 Silicon Wafers ready for engraving.\n\n&cWarning:&r Each Silicon Boule takes &47.5 minutes&r to make at 120 EU/t, or 1,080,000 EU! If the EBF loses power midway, the recipe will start to &close progress&r.\n\nWith that being said, Silicon Boules take an absolute age to craft, so consider parallelizing the recipe in multiple &3EBF&rs and stockpiling them.", + "quests.medium_voltage.mv_silicon.title": "Silicon Dust", + "quests.medium_voltage.mv_silicon.subtitle": "", + "quests.medium_voltage.mv_silicon.desc.1": "You’ll need to get used to it: in &dGregtech&r, there are always &amultiple ways&r to reach what you wantβ€”a philosophy we made sure to preserve in &aTerrafirmaGreg&r.\n\nTo obtain &5Silicon&r, we’ll suggest &cthree main methods&r so you have clear directions. As always, it’s up to you to figure out what’s &abest for your situation&r.", + "quests.medium_voltage.mv_silicon.desc.2": "First method: &aElectrolyzing Clay Dust&r at &bMV&r. This is one of the best-known techniques. However, it’s a bit harder in &aTFG&r, since we removed the infinite clay trick. That said, you can still find &9large amounts of clay&r, especially in &8The Beneath&r.\n\nSecond method: &amining silicon-rich ores&r. Look for &9Mica&r or &9Kyanite&r veinsβ€”they’ll also yield &dAluminum&r. Alternatively, you can &aElectrolyze Zeolite Dust&r, found in &9Chalcopyrite&r and &dRealgar&r veins.\n\nThird method: &eAdvanced but powerful&r. Although more expensive to set up and slower early on, it becomes the &ebest method&r at &6HV&r and beyond. Plus, it generates &9Oxygen&r as a bonus! The idea is simple: &aElectrolyze Silicon Dioxide Dust&r into &9Oxygen&r and &5Silicon&r. You can get &aSilicon Dioxide Dust&r by &9centrifuging Flint Dust&r, which itself comes from &9Flint&r collected by &asifting Gravel&r.\n\nThis setup can become &afully passive&r easily. Try using the &aEMI Recipe Tree&r tool (bottom left of your screen) to plan your buildsβ€”it really helps!", + "quests.medium_voltage.mv_ulpic.title": "ULPIC Chips", + "quests.medium_voltage.mv_ulpic.subtitle": "Pickin' up Chips", + "quests.medium_voltage.mv_ulpic.desc": "Using a Sapphire Lens, engrave a Silicon Wafer into an ULPIC Wafer.\n\nThis can be processed in a Cutter for ULPIC Chips, which are important for some multiblock components!\n\nMore specificaly ", + "quests.medium_voltage.mv_ic.title": "IC Chips", + "quests.medium_voltage.mv_ic.subtitle": "I C U", + "quests.medium_voltage.mv_ic.desc": "Using a Ruby Lens, engrave a Silicon Wafer into an ILC Wafer.\n\nThis can be processed in a Cutter for IC Chips, which are important components that will be precious when improving upon your circuit crafting capabilities.", + "quests.medium_voltage.mv_ram.title": "Download more RAM", + "quests.medium_voltage.mv_ram.subtitle": "That's from the Dark Punk you know?", + "quests.medium_voltage.mv_ram.desc": "&aRandom Access Memory&r is required for many Circuits.", "quests.metal_age": "Metallurgy Age", "quests.metal_age.subtitle": "Your First Technological Advancements.", "quests.metal_age.weld_bronze_ingots.title": "Welding Bronze", @@ -845,6 +1159,78 @@ "quests.metal_age.this_is_a_bucket.title": "This... is a Bucket.", "quests.metal_age.this_is_a_bucket.subtitle": "Dear God...", "quests.metal_age.this_is_a_bucket.desc": "Congratulations on crafting the Bucket. The Metallurgy Age is officially over.\n\nGo and start working on those Low Voltage components!", + "quests.ore_proc": "Ore Processing", + "quests.ore_proc.subtitle": "Everything you'll need to get the most out of your ores", + "quests.ore_proc.native_ore.title": "Welcome to Ore Processing", + "quests.ore_proc.native_ore.subtitle": "To Process, Ore Not To Process", + "quests.ore_proc.native_ore.desc": "An important part of &6Gregtech&r is its &dOre Processing Mechanics&r, but it can get pretty complicated, so this chapter is here to help!\n\nTo start with, you should be aware of the &6Ore Processing Diagram&r tab in EMI - Press the Show Uses key (default \"U\") on any item related to ore processing and look for the tab with the vanilla Iron Ore icon. This diagram may look overwhelming at first, but we'll take it step by step.\n\nA major part of GregTech philosophy is that there's not just one way to solve a problem, so take everything in this chapter as just a suggestion! We encourage you to customize your ore processing as you see fit.", + "quests.ore_proc.native_ore.task": "I agree to not just dump everything in a furnace", + "quests.ore_proc.ae2.title": "AE2 can help you", + "quests.ore_proc.ae2.subtitle": "A tag storage bus? What's that?", + "quests.ore_proc.ae2.desc": "If you like spaghetti only with &4tomato sauce&r we got you. With &6AE2&r no more pipes and filters everywhere simply the power of &dTag Storage Bus&r, Interface and &3Subnet&r.\n\nWe sure you know what's an interface but do you know what is the &dTag Storage Bus&r? Basically it's a Storage Bus that exports items by &6tag&r and not specific filter. So if you want a storage bus exporting only your purified ores it's easy just type '&5#forge:purified_ores*&r' or '&5*purified_ores*&r' in it. Obviouly there is other possibilities that we will let you explore. If you want to know the tag of an item, put it in main and type &6/kubejs hand&r\n\nAbout &3subnet&r we won't explain everything here but know atleast this, if you put a &6storage bus&r on an &2interface&r it will seperate the network. The &6storage bus side of the network&r will be able to look into the &2interface side of the newtork&r but &4not the other way around&r. That can be very useful so your ore processing isn't clogging your main storage or to split different processing.", + "quests.ore_proc.robot_arm.title": "Gregtech has the tools", + "quests.ore_proc.robot_arm.subtitle": "A robot arm sending excatly 4 small dusts filtered by tag?", + "quests.ore_proc.robot_arm.desc": "As always Gregtech has some pretty crazy tools to help you manage your logistic. You should already know about the &6Robot Arm&r and if you didn't use it yet for your &bVacuum Freezer&r we introduce you to the &6tag filter&r.\n\nIt's a filter for which you don't specify the item but use a tag or a combinaison of tag, you can refer to the explanation in the AE2 quest of this chapter for more.\n\nThe last one we want to introduce is the &4Smart Filter&r, this crazy one is able to filter items depending of a &6recipe&r. If you slap it on a robot arm itself slapped on an electrolyzer and set the robot arm to supply exact. It will supply the exact amount needed for the recipe?", + "quests.ore_proc.gtcy.title": "Ore Processing but Bigger", + "quests.ore_proc.gtcy.subtitle": "Who said size don't matter", + "quests.ore_proc.gtcy.desc": "As we said &6Ore Processing&r is a big part of &dGregtech&r and to help you without having to build milions of machines you can use the &bLarge Gregtech Machines&r. They do the exact same recipes but as they are multiblock you can chose the &6energy hatches&r and add a &6Parallel Hatch&r so they work faster\n\nAll of them are gated behind the &bAlloy Blast Smelter&r as it's the only multiblock able to create the alloys you need for every casing needed for these multiblocks. You will get more information on that within the &dEV&r chapter.", + "quests.ore_proc.macerator_byproduct.title": "Getting byproduct from crushing", + "quests.ore_proc.macerator_byproduct.subtitle": "I can get even more from my ores!", + "quests.ore_proc.macerator_byproduct.desc": "When looking at &bEMI&r you certainly already realized that your &dMacerator&r or &dCrushing Wheels&r have more &boutputs&r that what you actually get.\n\nThere is a reason for that and it's due to the fact that these &bextra outputs&r are gated behind &6HV&r. So basically whenever you can use either the &6HV macerator&r or the &6HU crushing wheels&r go for it.\n\nAlso you can see the &dMillstone&r in &bEMI&r but you cannot craft its &6HV&r version so that's why you don't see it here.", + "quests.ore_proc.macerator_noproduct.title": "Crushing for the poors", + "quests.ore_proc.macerator_noproduct.subtitle": "With these no byproduct", + "quests.ore_proc.macerator_noproduct.desc": "At the very beginning of &6TerraFirmaCraft&r you gonna use a &bPit Kiln&r to melt your raw ores into tools but that's the least efficient method. As soon as possible we advise you to use the &bQuern&r to get crushed ores. When you unlock &6Create&r you first machine should be the &bMillstone&r so atleast you can automate it with &bChute&r.\n\nYou don't get any byproduct but it will at least double if not quadruple the amount you would have get.\n\nWe put the &bForge Hammer&r here just so you know you can also use this machine if you need real fast crushing at one point. This one will &4never&r give you byproduct though. Could be useful until you reach &6HV&r.", + "quests.ore_proc.crushed_ores.title": "So crushed ores is just the beginning", + "quests.ore_proc.crushed_ores.subtitle": "Where are my dusts", + "quests.ore_proc.crushed_ores.desc": "Now that you have your crushed ores we can say that you officially started the beginning of &6Ore Processing&r. Later on you will be able to use a &bLarge Miner&r to get your &dcrushed&r ores right away.\n\nFrom crushed ores we advise you to &dpurify&r your ores. To do that you have three options that we will explain in the next quests and give you some example of what we would recommend.\n\nAs always you may have different needs than our propositions so explore &bEMI&r and trust yourself.", + "quests.ore_proc.sodium_persuflate.title": "Bath them in Sodium Persuflate", + "quests.ore_proc.sodium_persuflate.subtitle": "It's some kind of salt", + "quests.ore_proc.sodium_persuflate.desc": "You can wash your crushed ores in a &bChemical Bath&r with &dSodium Persuflate&r to get some extra byproduct. Not all the ores can be processed that way but for the ones that can your crushed ores will have a higher wield than in the usual washing, around &670%&r chance of byproduct with the &bChemical Bath&r against the &630%&r of the &bOre Washer&r.\n\nThough obtaining &dSodium Persuflate&r isn't that easy to mass produce though we would advise you to look at &9Sea Water&r, it's your choice if you want to use this method for all the ores that can use this process.\n\nWe give you some examples of ores we believe are &6worthy&r to bath with &dSodium Persuflate&r because their byproduct are pretty rare or useful. Simply look at the quest on the left.", + "quests.ore_proc.sodium_ores.title": "Some ores you could bath in Sodium Persuflate", + "quests.ore_proc.sodium_ores.subtitle": "They are just examples", + "quests.ore_proc.sodium_ores.desc": "We thought these ones are note worthy\n\n-&6Crushed Aluminium&r for &dRutile&r your first way to get &dTitanium&r\n\n-&6Crushed Bauxite&r for &dGallium&r\n\n-&6Crushed Cobalt&r for &dCobaltite&r which is a good way to make &dArsenic&r\n\n-&6Crushed Tetrahedrite&r to make &dCadmium&r which doesn't have many uses right now but who knows that could change one day", + "quests.ore_proc.ore_washer.title": "Washing your ores with water", + "quests.ore_proc.ore_washer.subtitle": "That's the standart way to do", + "quests.ore_proc.ore_washer.desc": "Using an &dOre Washer&r or &9Bulk Washing&r with an &dEncased fan&r will be the general method you use to get your &6Crushed Ores&r to the next step.\n\nThere is some stuffs to know if you use the &bGregtech&r machine though, first if you use &9Distilled Water&r the recipe will be &a50%&r faster and also know that if you don't care about the byproduct you can use circuit #2 so the recipes is &425 times faster but with no byproduct&r.", + "quests.ore_proc.mercury_ores.title": "Bath them in Mercury", + "quests.ore_proc.mercury_ores.subtitle": "This one is quite bad for your health", + "quests.ore_proc.mercury_ores.desc": "You can wash your crushed ores in a &bChemical Bath&r with &dMercury&r to get some extra byproduct. Not all the ores can be processed that way but for the ones that can your crushed ores will have a higher wield than in the usual washing, around &670%&r chance of byproduct with the &bChemical Bath&r against the &630%&r of the &bOre Washer&r.\n\nIn that case obtaining &dMercury&r is quite easy you can just get it from &cRedstone&r or &cCinnabar&r, it's your choice if you want to use this method for all the ores that can use this process.\n\nWe give you some examples of ores we believe are &6worthy&r to bath with &dMercury&r because their byproduct are pretty rare or useful. Simply look at the quest on the right.", + "quests.ore_proc.mercury.title": "Some ores you could bath in Mercury", + "quests.ore_proc.mercury.subtitle": "They are just examples", + "quests.ore_proc.mercury.desc": "We thought these ones are note worthy\n\n-&6Crushed Platinium&r for &dPaladium&r\n\n-&6Crushed Sheldonite&r for &dPaladium&r\n\n-&6Crushed Nickel&r for &dPlatinium&r\n\nThey are easy way to get access to these metals before doing the rough Platline.", + "quests.ore_proc.purified_ores.title": "It's been Purified", + "quests.ore_proc.purified_ores.subtitle": "You can do quite a lot with the purified ones", + "quests.ore_proc.purified_ores.desc": "You reached the &6Purified Ores&r, once again you have different options to go further.\n\nYou'll also notice quests on both sides that mark the beginning of the infamous &dPlatline&r and the easier &dIndium Line&r, each starting with specific &6Purified Ores&r. Take a look at it as it might come in handy soon. It could be a good idea to store these for when you tackle those specific quest lines.", + "quests.ore_proc.indium.title": "The Indium Line", + "quests.ore_proc.indium.subtitle": "We say line but really it's a two step process", + "quests.ore_proc.indium.desc": "The &6Indium Line&r shouldn't be needed before &9IV&r but we are just letting you know that it's here and that you will need purified &bSphalerite&r and &bGalena&r.", + "quests.ore_proc.platline.title": "The infamous platline", + "quests.ore_proc.platline.subtitle": "This one is a bit tricker and yet it's an easy version", + "quests.ore_proc.platline.desc": "The &6Platinium Line&r will be your first challenging line, providing you with essential metals: &bPlatinium&r, &bPalladium&r, &bRuthenium&r, &bRhodium&r, &bIridium&r, and &bOsmium&r.\n\nWhile you've already seen alternative ways to obtain &bPlatinium&r and &bPalladium&r earlier in this chapter, this line will be &amandatory&r for accessing the others.\n\nThe Platline can be started at &6HV&r, but you won’t be able to complete it fully until you reach &dEV&r.", + "quests.ore_proc.macerator_separator.title": "The crushing is back only for a precise situation", + "quests.ore_proc.macerator_separator.subtitle": "This path really needs some love", + "quests.ore_proc.macerator_separator.desc": "This is the path of the &6Electromagnetic Separator&r, a rather unique machine used to extract byproducts from specific dusts.\n\nFirst, macerate the &dRefined Ores&r, then process them with the &6Electromagnetic Separator&r.\n\nKeep in mind that to obtain byproducts, your macerator or crushing wheels must be at least &6HV&r tier.", + "quests.ore_proc.electro_separator.title": "It's time for Electromagnetic Separation", + "quests.ore_proc.electro_separator.subtitle": "Except Naquadah it doesn't do much", + "quests.ore_proc.electro_separator.desc": "Now, you just need to send the &6Purified Pile of Dust&r into the &bElectromagnetic Separator&r.\n\nFor now, we recommend using it primarily for &dNaquadah&r. If you need more &aNeodymium&r, you can also process &dBastnasite&r.\n\nIt’s not much for the moment, but we might expand on this in the future.", + "quests.ore_proc.thermal_centrifuge.title": "The Thermal Centrifuge", + "quests.ore_proc.thermal_centrifuge.subtitle": "Usually you will use this one", + "{quests.ore_proc.thermal_centrifuge.desc}": "If you don't have any other use for your &6Purified Ores&r, consider processing them in the &dThermal Centrifuge&r. It still provides valuable byproducts, and at this stage, it would be a shame not to make use of it.", + "quests.ore_proc.sifter.title": "More shiny stuffs", + "quests.ore_proc.sifter.subtitle": "It goes tch tch tch and then it shines", + "quests.ore_proc.sifter.desc": "The &6Sifter&r should be used for all your &aGems&r. It's not essential early on, as it's fairly slow, but once you feel ready, it's worth doingβ€”you’ll get a better yield in return.", + "quests.ore_proc.centrifuge_sifter.title": "Centrifuging the dust", + "quests.ore_proc.centrifuge_sifter.subtitle": "Yeah there is ore processing on the byproducts", + "quests.ore_proc.centrifuge_sifter.desc": "This time, centrifuging will only be used for the &6Purified Dust&r you obtain from the &6Sifter&r. Not much to explainβ€”just go ahead and do it.", + "quests.ore_proc.dust_processed.title": "Your final dust", + "quests.ore_proc.dust_processed.subtitle": "Or is it?", + "quests.ore_proc.dust_processed.desc": "Well, that’s itβ€”great job! You’ve mostly completed it.\n\nNow that you have the &6Purified Dust&r, you can &ccook&r it, &estore&r it, or even &dmix&r it right awayβ€”why not? Some dusts will still require special treatment before they become truly useful.\n\nBeyond that, keep in mind that your &6ore processing line&r should always be upgraded and fine-tuned to match your needs. You'll unlock new machines that work faster and generate more valuable byproducts.", + "quests.ore_proc.electrolyzer.title": "After electrolyzing it's the real last step", + "quests.ore_proc.electrolyzer.subtitle": "Some are not worth the effort though", + "quests.ore_proc.electrolyzer.desc": "Well… we liedβ€”there’s still one more step for some dusts.\n\nCertain &6Purified Dusts&r have no direct use. For example, &2Tantalite&r must be processed in an &6Electrolyzer&r to extract valuable materials like &dTantalum&r and &dManganese&r.\n\nMost of these recipes will unlock once you have access to an &bMV Electrolyzer&r, so keep an eye on your tech progression!", + "quests.ore_proc.packer.title": "This one is used as an autocrafting table in some way", + "quests.ore_proc.packer.subtitle": "It's real fast", + "quests.ore_proc.packer.desc": "Back in the old days, this little bad boy saw a lot of useβ€”you used to get a ton of &6Small&r and &6Tiny Dusts&r from ore processing.\n\nNowadays, it’s mostly useful for processing &dRare Earth&r in the &6Centrifuge&r and packing all those valuable &6Small Piles of Dust&r.\n\nAlso, don’t forget: it becomes surprisingly powerful when paired with a &eRobot Arm&r set to supply exact mode.", "quests.steam_age": "Early Automation", "quests.steam_age.subtitle": "From Primitive Machines to Steam Power", "quests.steam_age.basic_greate.title": "Basics of Greate", @@ -963,7 +1349,7 @@ "quests.steam_age.red_alloy.desc": "&4Red Alloy&r is an alloy of Copper and Redstone, prized in the GregTech universe for its conductivity. You can craft it either in an Alloy Smelter or in your Crucible, if you'd like.\n\nYou will need some for &9Electron Tubes&r.\n\n&l&3Lore:&r&o This material originally comes from RedPower - what a throwback!", "quests.steam_age.extractor.title": "Steam Extractor", "quests.steam_age.extractor.subtitle": "The Steam Extractor extracts...", - "quests.steam_age.extractor.desc": "Not many items are made in the &3Extractor&r during the &6Steam Age&r, but it's used to make &9Rubber&r, which you'll need for your first electronics.", + "quests.steam_age.extractor.desc": "Not many items are made in the &3Extractor&r during the &6Steam Age&r, as it lacks the capability to extract fluids.", "quests.steam_age.glass_tube.title": "Glass Tubes", "quests.steam_age.glass_tube.subtitle": "You'll want a lot of these", "quests.steam_age.glass_tube.desc": "While you could make all of these by hand with glassblowing, it's much more time efficient to create them in your Alloy Smelter with the appropriate mold instead. Need a lot of glass dust? You can either glassblow 16 panes at once to macerate them, or use the Rock Crusher and Forge Hammer to get lots of sand, then add a little Flint dust to turn it into glass dust.", @@ -1269,375 +1655,381 @@ "quests.tfg_tips": "TerraFirmaGreg Tips", "quests.tfg_tips.subtitle": "Tips and Tricks to make your life slightly easier.", "quests.tfg_tips.begining.title": "Tips and Tricks be here!", - "quests.tfg_tips.begining.subtitle": "Dear god thats a lot of branches...", - "quests.tfg_tips.begining.desc": "This quest chapter gives you a lot, &o(and we do mean a lot)&r of tips on how to survive and thrive.\n\nEach branch of this quest tree represents a major mod in TerraFirmaGreg, with tips on how to use the mod and get the most out of it. None of the quests here are necesary for progression, although some &omay&r be locked behind main questline tasks.", + "quests.tfg_tips.begining.subtitle": "Dear God that's a lot of branches...", + "quests.tfg_tips.begining.desc": "This quest chapter gives you a lot, &o(and we do mean a lot)&r of tips on how to survive and thrive.\n\nEach quest branch representing a major mods in &2TerraFirmaGreg&r, with tips to make the most out of them. None of these quests are necesary for progression, although some &omay&r be locked behind main questline tasks.", "quests.tfg_tips.portable_storage.title": "Portable Storage Solutions", "quests.tfg_tips.portable_storage.subtitle": "Turns out your inventory is quite small.", - "quests.tfg_tips.portable_storage.desc": "In your travels, you may end up exploring a &olot&r, and you're bound to end up picking up a lot of junk. This quest branch provides several options for expanding your on-the-go inventory.", + "quests.tfg_tips.portable_storage.desc": "In your travels, you may explore a whole &olot&r and end up picking up a lot of junk. This quest branch provides several options for expanding your on-the-go inventory.", "quests.tfg_tips.toolbelt.title": "Toolbelt and Pouches", - "quests.tfg_tips.toolbelt.subtitle": "Those tools sure take up a lot of space, lets fix that!", - "quests.tfg_tips.toolbelt.desc": "With a Toolbelt, you'll be able to easily manage multiple tools without taking up an inventory slot! This handy item can go into a special toolbelt slot in your Curios menu, and you can insert and retrieve tools with a keybind. It starts with only two slots, but more can be added by crafting &oBelt Pouches&r.\n\nDue to a bug with this mod, it's not possible to upgrade your pouch if it's been dyed or has tools inside.", + "quests.tfg_tips.toolbelt.subtitle": "Those tools sure take up a lot of space, let's fix that!", + "quests.tfg_tips.toolbelt.desc": "With a &dToolbelt&r, you'll be able to manage multiple tools without wasting inventory slots! This handy item can go into a special &3Toolbelt Slot&r in your &4Curios menu&r. You can insert and retrieve tools with a &ckeybind.&r It starts with only two slots, but more can be added by adding &aBelt Pouches&r.\n\n&lDue to a bug with this mod, it's not possible to upgrade your &dToolbelt&f if it's been dyed or has tools inside. Empty it first!", "quests.tfg_tips.maxed_out_toolbelt.title": "ALL THE TOOLS", "quests.tfg_tips.maxed_out_toolbelt.subtitle": "That belt must be very heavy at this point...", - "quests.tfg_tips.maxed_out_toolbelt.desc": "A toolbelt can hold 7 extra pouches, thats 9 tools in one belt!", + "quests.tfg_tips.maxed_out_toolbelt.desc": "A &dToolbelt&r can hold 7 extra Pouches, that's 9 tools in one belt!", "quests.tfg_tips.maxed_out_toolbelt.task": "Obtain a maxed out toolbelt.", "quests.tfg_tips.vessels.title": "Large and Small Vessels", - "quests.tfg_tips.vessels.subtitle": "Clay can be quite useful.", - "quests.tfg_tips.vessels.desc": "With some Clay, Fire, and Time you can create Vessels. Small vessels have 4 inventory slots while Large Vessels have 9! The Small Vessel is not just for item storage, but is also necessary for melting basic metals. The Large Vessel is heavier to carry, but is great for preserving food.", + "quests.tfg_tips.vessels.subtitle": "Clay can be quite useful", + "quests.tfg_tips.vessels.desc": "&dSmall Vessels&r have 4 inventory slots while &6Large Vessels&r have 9! The &dSmall Vessel&r is not just for item storage, but is also necessary for smelting and alloying basic metals.\nThe &6Large Vessel&r is heavier to carry, but is great for preserving food.\n\n&l&3Tip:&r&o Large Vessels double as early backpacks!", "quests.tfg_tips.portable_cells.title": "Portable Item and Fluid Cells", "quests.tfg_tips.portable_cells.subtitle": "Isn't this too advanced?", - "quests.tfg_tips.portable_cells.desc": "With Applied Energistics 2, you can create Portable Item and Fluid Cells, which allow you to store large amounts of items and fluids as pure raw data. Sadly, Applied Energistics 2 is locked behind High Voltage, so it might be a while until you can create these.", + "quests.tfg_tips.portable_cells.desc": "With &dApplied Energistics 2&r, you can create &aPortable Item&r and &bFluid Cells&r, which allow you to store large amounts of items and fluids as pure, raw data. Sadly, &dApplied Energistics 2&r is locked behind &6HV&r, so it might be a while until you can create these.", "quests.tfg_tips.256m_portable_cells.title": "MEGA Portable Item and Fluid Cells", "quests.tfg_tips.256m_portable_cells.subtitle": "When Kilobytes aren't enough", - "quests.tfg_tips.256m_portable_cells.desc": "With MEGA Cells, you can create cells with LUDICROUS amounts of data storage!\n\nFun Fact! A single 256M Portable Item Cell can store up to &lOne Billion&r of a single item type! That's enough to fill over 58 thousand chests!", + "quests.tfg_tips.256m_portable_cells.desc": "With &dMEGA Cells&r, you can create cells with &lLudicrous&r data storage!\n\n&l&3Fun Fact:&r&o A single 256M Portable Item Cell can store up to one billion of a single item type! That's enough to fill over 58 thousand chests!", "quests.tfg_tips.backpack_materials.title": "Materials for a Backpack", "quests.tfg_tips.backpack_materials.subtitle": "Sleeping bag not included", - "quests.tfg_tips.backpack_materials.desc": "A Sophisticated Backpack is the primary way to expand your portable inventory size. The first one will double your normal inventory, and further upgrades increase it even more! It also comes with a wide variety of upgrades to add even more functionality, and different parts of it can be dyed different colors!", + "quests.tfg_tips.backpack_materials.desc": "A &3Sophisticated Backpack&r is the primary way to expand your portable inventory size. The first tier will double your normal inventory, and further tiers increase it even more! It also comes with a wide variety of &afunctional upgrades&r, and different parts of it can be dyed different colors!", "quests.tfg_tips.first_backpack.title": "Your First Backpack", "quests.tfg_tips.first_backpack.subtitle": "No, the map won't magically appear.", - "quests.tfg_tips.first_backpack.desc": "This is your first Sophisticated Backpack. It has a total of 27 inventory slots and can hold one upgrade. Check the two branches after this to learn about inventory and backpack upgrades.", + "quests.tfg_tips.first_backpack.desc": "This is your first &3Sophisticated Backpack.&r It has a total of &c27&r inventory slots and can hold &aone upgrade.&r Check the two branches after this to learn about inventory and backpack upgrades.", "quests.tfg_tips.red_steel_backpack.title": "Red Steel Backpack", "quests.tfg_tips.red_steel_backpack.subtitle": "Cooler than a Blue Steel Backpack", - "quests.tfg_tips.red_steel_backpack.desc": "A Red Steel Backpack is your first proper backpack inventory upgrade. It has a total slot count of 54 and can hold two upgrades.", + "quests.tfg_tips.red_steel_backpack.desc": "A &4Red Steel Backpack&r is your first proper backpack inventory upgrade. It has a total slot count of &c54&r and can hold &atwo upgrades.&r", "quests.tfg_tips.aluminium_backpack.title": "Aluminium Steel Backpack", "quests.tfg_tips.aluminium_backpack.subtitle": "Is it Aluminum or Aluminium?", - "quests.tfg_tips.aluminium_backpack.desc": "An Aluminium Backpack is your second proper backpack inventory upgrade. It has a total slot count of 81 and can hold three upgrades.", + "quests.tfg_tips.aluminium_backpack.desc": "An &bAluminium Backpack&r is your second proper backpack inventory upgrade. It has a total slot count of &c81&r and can hold &athree upgrades.&r", "quests.tfg_tips.titanium_backpack.title": "Titanium Backpack", - "quests.tfg_tips.titanium_backpack.subtitle": "Almost titanic.", - "quests.tfg_tips.titanium_backpack.desc": "A Titanium Backpack is your third proper backpack inventory upgrade. It has a total slot count of 108 and can hold five upgrades.", + "quests.tfg_tips.titanium_backpack.subtitle": "Almost Titanic.", + "quests.tfg_tips.titanium_backpack.desc": "A &5Titanium Backpack&r is your third proper backpack inventory upgrade. It has a total slot count of &c108&r and can hold &afive upgrades.&r", "quests.tfg_tips.tungstensteel_backpack.title": "Tungstensteel Backpack", "quests.tfg_tips.tungstensteel_backpack.subtitle": "The ultimate backpack.", - "quests.tfg_tips.tungstensteel_backpack.desc": "The Tungstensteel Backpack is the final backpack inventory upgrade. It has a whopping slot count of 120 and can hold seven upgrades!", + "quests.tfg_tips.tungstensteel_backpack.desc": "The &9Tungstensteel Backpack&r is the final backpack inventory upgrade. It has a whopping slot count of &c120&r and can hold &aseven upgrades!&r", "quests.tfg_tips.backpack_upgrades.title": "Backpack Upgrades", "quests.tfg_tips.backpack_upgrades.subtitle": "More than just a backpack", - "quests.tfg_tips.backpack_upgrades.desc": "Backpack Upgrades can be installed in your Sophisticated Backpacks, giving your backpack new abilities and utilities.\n\nYou'll need access to Steel to be able to craft these upgrade bases.", + "quests.tfg_tips.backpack_upgrades.desc": "&aBackpack Upgrades&r can be installed in your &3Sophisticated Backpacks&r, giving your backpack new abilities and utilities.\n\nYou'll need access to &bSteel&r to be able to craft these upgrade bases.", "quests.tfg_tips.crafting_upgrade.title": "Crafting Upgrade", "quests.tfg_tips.crafting_upgrade.subtitle": "A Workbench on the go!", - "quests.tfg_tips.crafting_upgrade.desc": "The Crafting Upgrade lets you carry a Workbench in your backpack wherever you go. You'll wonder how you lived without it!", + "quests.tfg_tips.crafting_upgrade.desc": "The &aCrafting Upgrade&r lets you carry a &3Workbench&r in your backpack wherever you go. You'll wonder how you lived without it!", "quests.tfg_tips.advanced_upgrades.title": "Advanced Upgrades", "quests.tfg_tips.advanced_upgrades.subtitle": "Upgrades but yellow", - "quests.tfg_tips.advanced_upgrades.desc": "Certain upgrades for your backpack can be upgraded to advanced upgrades. Advanced upgrades have more functionality than their base versions, such as allowing extra filter types or being more configurable. Try crafting a Filter and Advanaced Filter upgrade to complete this quest.", + "quests.tfg_tips.advanced_upgrades.desc": "Certain backpack upgrades have &eAdvanced Upgrade&r versions. They have more functionality, such as allowing extra filter types or being more configurable.\nTry crafting a &aFilter&r and &eAdvanced Filter&r upgrade to complete this quest.", "quests.tfg_tips.all_backpack_upgrades.title": "ALL THE UPGRADES", "quests.tfg_tips.all_backpack_upgrades.subtitle": "You can't even fit all of these in a single backpack...", - "quests.tfg_tips.all_backpack_upgrades.desc": "These are all the backpack upgrades Sophisticated Backpacks have to offer. Can you craft them all?", + "quests.tfg_tips.all_backpack_upgrades.desc": "These are all the backpack upgrades &3Sophisticated Backpacks&r has to offer. Can you craft them all?", "quests.tfg_tips.gt.title": "GregTech", "quests.tfg_tips.gt.subtitle": "One third of the modpack's name, after all.", - "quests.tfg_tips.gt.desc": "GregTech can be quite intimidating, this quest branch should help you out.", + "quests.tfg_tips.gt.desc": "&3GregTech&r can be quite intimidating, this quest branch should help you out.", "quests.tfg_tips.terrafirmacraft.title": "TerraFirmaCraft Addons", "quests.tfg_tips.terrafirmacraft.subtitle": "The other two thirds of the modpack's name", - "quests.tfg_tips.terrafirmacraft.desc": "TerraFirmaCraft is one of the main mods for TerraFirmaGreg. This branch mostly focuses on some of its survival features and other &lAdd-Ons&r the modpack has, such as Aged Alcohol and Canes.", + "quests.tfg_tips.terrafirmacraft.desc": "&3TerraFirmaCraft&r is one of the main mods in &2TerraFirmaGreg.&r This branch mostly focuses on some of its survival features and other &dAdd-Ons&r the modpack has, such as &4Aged Alcohol&r and &bCanes.&r", "quests.tfg_tips.cane.title": "Walking Canes", "quests.tfg_tips.cane.subtitle": "You can even whack people with them!", - "quests.tfg_tips.cane.desc": "A Walking Cane allows you to completely ignore any block that slows your movement, such as snow and leaf litter, as long as you're carrying it in your main or off-hand.", + "quests.tfg_tips.cane.desc": "A &dWalking Cane&r allows you to completely ignore any block that slows your movement, such as &asnow&r and &aleaf litter&r, as long as you're carrying it in your &cmain&r or &coff-hand.&r", "quests.tfg_tips.cane.task": "Any Cane", "quests.tfg_tips.glassblowing.title": "Glassblowing", - "quests.tfg_tips.glassblowing.subtitle": "Realistic Glaswsworking!", - "quests.tfg_tips.glassblowing.desc": "In TerraFirmaCraft, to create any sort of glass pane or block, you'll need to create a Glassblowing station.\n\nGlassblowing will require some sort of Blowpipe, and a small platform made out of glassblowing blocks to pour the molten glass. Check out the field guide for more information on the shape of the platform and what blocks are valid to use. You'll have access to glassblowing as soon as you can shape Brass!", + "quests.tfg_tips.glassblowing.subtitle": "Realistic Glassworking!", + "quests.tfg_tips.glassblowing.desc": "To make any sort of &dGlass Pane&r or &dBlock&r, you'll need a &3glassblowing&r setup.\n\n&3Glassblowing&r will require some sort of &aBlowpipe&r, and a platform made out of glassblowing blocks to pour the molten glass. Check out the &2Field Guide&r for more information on the shape of the platform and what blocks are valid. You'll have access to glassblowing as soon as you can shape &aBrass!&r", "quests.tfg_tips.glassblowing.task.1": "Any glassblowing blocks.", "quests.tfg_tips.glassblowing_tools.title": "Glassblowing Tools", "quests.tfg_tips.glassblowing_tools.subtitle": "Tools of the Trade", - "quests.tfg_tips.glassblowing_tools.desc": "To work with glass, you'll need different tools for each task.\n\n&lPaddle&r: Performs flatten, Mainly used for creating Glass Panes and Lamp Glasses.\n&lGem Saw&r: A saw that can safely cut glass without breaking it. This isn't just used in recipes, but can be used to pick up glass and gem buds in-world as well!\n&lJacks&r: Used to pinch glass, mostly used for containers such as glass bottles.\n&lWool Cloth&r: Used for rolling glass, used for lenses and jars.", + "quests.tfg_tips.glassblowing_tools.desc": "To work &dGlass&r you'll need a variety of tools.\n\n&3Paddle&r: Performs flatten, mainly used for creating &dGlass Panes&r and &dLamp Glass.&r\n&3Gem Saw&r: Besides being mandatory for making glass products, it can be used to pick up &dGlass&r and &cGem Buds&r in-world as well, like a &bSilk Touch&r effect!\n&3Jacks&r: Used to pinch glass, mostly used for containers such as &dGlass Bottles.&r\n&3Wool Cloth&r: Used for rolling glass, needed for &dLenses&r and &dJars.&r", "quests.tfg_tips.glass_blocks.title": "Glass Blocks", "quests.tfg_tips.glass_blocks.subtitle": "Get yourself some windows.", - "quests.tfg_tips.glass_blocks.desc": "Depending on the type of sand you use to create the glass batch, your glass will have different colors. Check out the Field Guide's section on Glassblowing to learn different ways to make specific colors. Later on, you'll be able to use chemicals to dye glass more easily.\n\nTip: If you're looking to make a lot of Glass Blocks and have access to an Alloy Smelter, it's more efficient to make glass panes and then macerate them, since one batch can make up to 16 at a time!", + "quests.tfg_tips.glass_blocks.desc": "Depending on the type of sand used for the &aGlass Batch&r, your final &dGlass&r will have different colors. Check out the &2Field Guide&r section on &3Glassblowing&r to learn other ways to make specific colors. Later on, you'll be able to use &3Gregtech&r chemicals to dye glass more easily.\n\n&3&lTip:&r&o If you're looking to make a lot of Glass Blocks and have access to an &bAlloy Smelter&f, it's more efficient to make &dGlass Panes&f, &bmacerating&f them, crafting into &dDust&f and then using the &aBlock Mold&f, since one batch can make up to 16 Small Dusts at a time!", "quests.tfg_tips.lamps.title": "Lamps", "quests.tfg_tips.lamps.subtitle": "These are pretty.", - "quests.tfg_tips.lamps.desc": "Just like in regular Minecraft, Lamps can be hung down from the ceiling or placed on top of a block and give out light. Lamps consume different kinds of fuels to keep themselves lit. Some fuels can last indefinitely, but require particularly sturdy lamps.", + "quests.tfg_tips.lamps.desc": "Just like in regular Minecraft, &dLamps&r can be hung from the ceiling with the help of chains or placed on top of blocks. &dLamps&r consume different kinds of fuels to keep themselves lit. Some fuels can last &4indefinitely.&r\n\n&3&lTip:&r&o filled lamps can be placed in the &6Back&f slot of the &cCurios Menu&f to provide hands free dynamic lighting. This may not work if you have shaders on.", "quests.tfg_tips.creosote.title": "Lamp Fuel: Creosote", "quests.tfg_tips.creosote.subtitle": "If you have a bunch of it lying around...", - "quests.tfg_tips.creosote.desc": "Creosote can be used as a lamp fuel, but a full lamp of the stuff only lasts for 10 days.", + "quests.tfg_tips.creosote.desc": "&dCreosote&r can be used as a lamp fuel, but a full lamp of the stuff only lasts for &c10&r days.", "quests.tfg_tips.creosote.task": "A Bucket of Creosote", "quests.tfg_tips.tallow.title": "Lamp Fuel: Tallow", "quests.tfg_tips.tallow.subtitle": "Animal Fat", - "quests.tfg_tips.tallow.desc": "Tallow can be used as lamp fuel. A full lamp of it will last 18 days.", + "quests.tfg_tips.tallow.desc": "&dTallow&r can be used as lamp fuel. A full lamp of it will last &c18&r days.", "quests.tfg_tips.tallow.task": "A Bucket of Tallow", "quests.tfg_tips.olive_oil.title": "Lamp Fuel: Olive Oil", "quests.tfg_tips.olive_oil.subtitle": "Lilbito'liveoil", - "quests.tfg_tips.olive_oil.desc": "Olive Oil can be used as lamp fuel, and while it's more difficult to craft than the others, a full lamp of it lasts for 83 days!", + "quests.tfg_tips.olive_oil.desc": "&dOlive Oil&r can be used as lamp fuel, and while it is more difficult to craft than other fuels, a full lamp of it lasts for a whopping &c83&r days!\n\n&3&lTip:&r&o Access to electric machines even at &7LV&f will make the processing less painful.", "quests.tfg_tips.olive_oil.task": "A Bucket of Olive Oil", "quests.tfg_tips.lava_lamp.title": "Lamp Fuel: Lava?", "quests.tfg_tips.lava_lamp.subtitle": "Not as mesmerizing as the real deal", - "quests.tfg_tips.lava_lamp.desc": "With the very heat resistant metal known as Blue Steel, you can create a Blue Steel Lamp. The Blue Steel Lamp can be filled with Lava, giving you an indefinite source of light.\n\nCareful handling a filled lava lamp, it's very hot.", + "quests.tfg_tips.lava_lamp.desc": "With the very heat resistant metal &9Blue Steel&r, you can create a &dBlue Steel Lamp.&r It can be filled with &cLava&r, giving you an indefinite source of light at the cost of being limited to a single lamp metal.\n\nCareful handling a filled lava lamp, it's very &chot...&r", "quests.tfg_tips.glowstone_lamp.title": "Lamp Fuel: Glowstone", "quests.tfg_tips.glowstone_lamp.subtitle": "The best lamp fuel", - "quests.tfg_tips.glowstone_lamp.desc": "You'll need access to electricity in order to liquefy glowstone, but if you like the look of the lamps, you can use Liquid Glowstone to fuel them indefinitely. This can be used in any of the lamp types, and isn't hot either!", + "quests.tfg_tips.glowstone_lamp.desc": "You'll need access to at least &7LV&r electricity in order to liquefy &dGlowstone&r, but if you like the look of &lany&r lamp, you can use &6Liquid Glowstone&r to fuel them indefinitely. Unlike &cLave&r, this isn't hot!", "quests.tfg_tips.charcoal_pile.title": "Charcoal Pile", "quests.tfg_tips.charcoal_pile.subtitle": "You're going to need this", - "quests.tfg_tips.charcoal_pile.desc.1": "Charcoal Piles are a multiblock structure that can be built in the early game to generate large quantities of Charcoal. You're going to need &oa lot&r of Charcoal if you want to succeed in TerraFirmaGreg, as it's key for working with metals, creating Wrought Iron and creating Steel.\n\nBegin by digging down a pit.", - "quests.tfg_tips.charcoal_pile.desc.2": "After creating your pit, place logs of your choice while sneaking, this will place log-piles in your pit. The more logs you place in a log pile the more Charcoal is created.", - "quests.tfg_tips.charcoal_pile.desc.3": "After placing your log piles, cover them with dirt, but leave one uncovered. Set fire to this uncovered one using a Fire Starter or other means such as a Lit Torch or Flint and Steel. After setting fire to the log, cover it and wait, Once the smoke particles cease to emit you can remove the top layer of dirt and harvest your Charcoal.", - "quests.tfg_tips.charcoal_pile.desc.4": "Pro Tip: You may want to invest in a Coke Oven from Gregtech, not only can it also create Charcoal from Logs, it'll create Creosote as a byproduct, which is a useful fuel for later.", + "quests.tfg_tips.charcoal_pile.desc.1": "&aCharcoal Piles&r are the early game source for &dCharcoal.&r You're going to need &oa lot&r of it if you want to succeed in &2TFG&r, as charcoal is key for &3Metalworking&r and smelting &3Blooms&r for &bWrought Iron&r.\n\nBegin by digging down a pit.", + "quests.tfg_tips.charcoal_pile.desc.2": "After creating your pit, place logs of your choice while &csneaking&r, this will place &2log piles&r in your pit. The more logs you place in a log pile the more &dCharcoal&r is created.", + "quests.tfg_tips.charcoal_pile.desc.3": "After placing your &2log piles&r, cover them with blocks, leaving &oone uncovered.&r Set fire to this uncovered one using a &dFire Starter&r, dropped &eTorch&r or &4Flint and Steel.&r Wait for large smoke particles to appear from the covering blocks and &cseal&r the uncovered one. Once the smoke particles cease to emit, remove the covering and harvest your &dCharcoal&r, preferably with a &aShovel&r or &aSpade.&r", + "quests.tfg_tips.charcoal_pile.desc.4": "&3&lPro Tip:&r&o You may want to invest in a &3Coke Oven&f early on. Not only can it produce &aCharcoal&f from logs at a &cbetter ratio&f, it makes &aCreosote&f as a byproduct, a useful fuel for lamps and steam power, and &aCoke&f for &dSteel&f production.", "quests.tfg_tips.thatch_bed.title": "Thatch Bed", "quests.tfg_tips.thatch_bed.subtitle": "A place to rest... somewhat", - "quests.tfg_tips.thatch_bed.desc": "Utilizing some Thatch and a Large Raw Hide, you can create a Thatch Bed. The Thatch Bed cannot be used to sleep in, but it'll set your spawn point.\n\nTo create a Thatch Bed, place two thatch blocks side by side, then interact with the blocks while holding the Large Raw Hide.", + "quests.tfg_tips.thatch_bed.desc": "Utilizing some &bThatch&r and a &aLarge Raw Hide&r, you can create a &dThatch Bed.&r It cannot be used to sleep in, but it'll &cset your spawn point.&r\n\nTo create a Thatch Bed, place &btwo thatch blocks&r side by side, then interact with the blocks while holding the &aLarge Raw Hide.&r", + "quests.tasktype.looktat": "Look at a completed Thatch Bed", "quests.tfg_tips.loom.title": "Loom", "quests.tfg_tips.loom.subtitle": "You'll need to work harder if you want to sleep...", - "quests.tfg_tips.loom.desc": "To create a better bed you'll need to create some textiles, The Loom is the work-station of choice for doing this, as it allows you to create different textiles that each have different uses.", + "quests.tfg_tips.loom.desc": "To make a better bed, you'll need to create some textiles. The &3Loom&r is the work-station of choice for doing this, as it allows you to create different textiles that each have different uses.", "quests.tfg_tips.burlap_cloth.title": "Burlap Cloth", "quests.tfg_tips.burlap_cloth.subtitle": "Made out of Jute!", - "quests.tfg_tips.burlap_cloth.desc": "By soaking some Jute in a barrel, and working the resulting Jute Fibers in the loom, you can create Burlap Cloth.\n\nBurlap Cloth have a number of uses, such as creating Burlap Clothes that protect against hot environments, Beekeeper Armor that protects from angry bees, and a number of other utility items.", + "quests.tfg_tips.burlap_cloth.desc": "By soaking some &aJute&r in a barrel, and working the resulting &aJute Fibers&r in the &3Loom&r, you can create &dBurlap Cloth.&r\n\nBurlap Cloth has a number of uses, such as creating &bBurlap Clothes&r that protect against &chot environments&r, &eBeekeeper Armor&r that protects from angry bees, and a number of other utility items.", "quests.tfg_tips.pineapple_leather.title": "Pineapple Leather", "quests.tfg_tips.pineapple_leather.subtitle": "Who lives in a Pineapple Under the Sea?", - "quests.tfg_tips.pineapple_leather.desc": "By creating some pineapple fibers, spindling them into pineapple yarn and working the yarn in the loom you get Pineapple Leather, Which is an eco-friendly way to create Leather Items via Knapping", + "quests.tfg_tips.pineapple_leather.desc": "By creating some &aPineapple Fibers&r, &bspindling&r them into &aPineapple Yarn&r, and working the yarn in the &3Loom&r, you get &dPineapple Leather&r, an eco-friendly alternative for &bleather knapping recipes.&r", "quests.tfg_tips.wool_cloth.title": "Wool Cloth", "quests.tfg_tips.wool_cloth.subtitle": "Baaa...", - "quests.tfg_tips.wool_cloth.desc": "By shearing some friendly wool-producing livestock, such as a Sheep, you can spindle the resulting wool into wool yarn. Working the yarn in a loom gives you Wool Cloth.\n\nWool cloth not only works as a tool during Glassworking, but can be utilized to create Wooly Clothes which are perfect for cold, bitter environments. Wool is considered a &lHigh Quality Cloth&r.", + "quests.tfg_tips.wool_cloth.desc": "By shearing some friendly &2wool-producing&r livestock, you can spindle the resulting wool into &dWool Yarn.&r Working the yarn in a &3Loom&r gives you &dWool Cloth.&r\n\nBesides uses in &bGlassworking&r, it can be used to create &aWool Clothes&r, perfect for &bcold&r, bitter environments.\nWool is considered a &bHigh Quality Cloth.&r", "quests.tfg_tips.silk_cloth.title": "Silk Cloth", "quests.tfg_tips.silk_cloth.subtitle": "Very, Very Smooth.", - "quests.tfg_tips.silk_cloth.desc": "Silk Cloth can be created utilizing string from killing Spiders or via Polycaprolactam Ingots, no Silkworms exist yet, sorry!\n\nSilk Cloth can be used to create Silk Clothes, which are the best at protecting you against hot environments, Silk Cloth is considered a &lHigh Quality cloth&r.", + "quests.tfg_tips.silk_cloth.desc": "&dSilk Cloth&r can be created using &aString&r from killing &cSpiders&r or via &cPolycaprolactam (aka Nylon) Ingots&r. No silkworms exist yet, sorry! The dangerous &cWebbed Lair&r biome in The Beneath is another, albeit dangerous, source.\n\nSilk Cloth can be used to create &aSilk Clothes&r, which are the best at protecting you against &chot&r environments.\nSilk Cloth is considered a &bHigh Quality Cloth.&r", "quests.tfg_tips.unrefined_paper.title": "Unrefined Paper", "quests.tfg_tips.unrefined_paper.subtitle": "Time to make some history.", - "quests.tfg_tips.unrefined_paper.desc": "Unrefined Paper is one step away from becoming real, usable Paper. There are a lot of ways to go about creating Paper, some could be easier to do while others can be considerably more difficult. Check the Papermaking entry on your Fieldguide!", + "quests.tfg_tips.unrefined_paper.desc": "&aUnrefined Paper&r is one step away from becoming real, usable &dPaper.&r There are a lot of ways to go about crafting paper, some could be easier to do while others can be considerably more difficult depending on resource availability. Check the &bPapermaking&r entry on your &2Field Guide!&r", "quests.tfg_tips.bed.title": "Beds", "quests.tfg_tips.bed.subtitle": "Rest your weary soul.", - "quests.tfg_tips.bed.desc": "Utilizing a &lHigh Quality Cloth&r, such as Wool or Silk Cloth, you can create your very own Bed. Unlike the Thatch Bed, a real Bed is comfortable enough to sleep through a night. Sweet Dreams!", + "quests.tfg_tips.bed.desc": "Utilizing a &bHigh Quality Cloth&r, such as &aWool&r or &aSilk Cloth&r, you can create your very own &dBed.&r Unlike the &2Thatch Bed&r, a real &dBed&r is comfortable enough to sleep through the night. Sweet Dreams!", "quests.tfg_tips.sleeping_bags.title": "Sleeping Bags", "quests.tfg_tips.sleeping_bags.subtitle": "Slumber Party!", - "quests.tfg_tips.sleeping_bags.desc": "A Sleeping Bag is an item you can use to Sleep through a night. Unlike Beds, Sleeping Bags &owon't&r set your Spawn Point.", + "quests.tfg_tips.sleeping_bags.desc": "A &dSleeping Bag&r is an item you can use to &bsleep through a night.&r Unlike beds, a sleeping bag &owon't&r set your &cSpawn Point.&r", "quests.tfg_tips.hammocks.title": "Hammocks", "quests.tfg_tips.hammocks.subtitle": "Perfect for Night Owls", - "quests.tfg_tips.hammocks.desc": "A Hammock does the exact oposite as a Sleeping Bag. It allows you to sleep your way from Daytime to Nighttime. Perfect for waiting for something to finish crafting.\nMuch like Sleeping Bags, they &owon't&r set your Spawn Point.", + "quests.tfg_tips.hammocks.desc": "A &dHammock&r does the exact opposite as a &2Sleeping Bag.&r It allows you to sleep your way through daytime. Perfect for those long barrel recipes or charcoal piles.\nMuch like &2Sleeping Bags&r, they &owon't&r set your &cSpawn Point.&r", "quests.tfg_tips.panning.title": "Panning", "quests.tfg_tips.panning.subtitle": "Re-experience the gold rush!", - "quests.tfg_tips.panning.desc": "Along riverbeds you may notice gravel with slight specks of minerals, these are known as Native Ore Deposits. By right clicking a Native Ore Deposit with a pan you'll be able to transform this ore deposit into small pieces of native ores. These can come in pinch when you're missing small amounts of milibuckets to create something bigger, such as a saw or pickaxe head.", + "quests.tfg_tips.panning.desc": "Along riverbeds, you may notice gravel with slight specks of minerals, known as &aNative Ore Deposits.&r By right-clicking one with a &bPan&r, you'll be able to process this ore deposit into &dsmall pieces of native ores.&r These can come in pinch when you're missing a few millibuckets to fill a mold.", "quests.tfg_tips.sluice.title": "Sluices", "quests.tfg_tips.sluice.subtitle": "Panning on Steroids", - "quests.tfg_tips.sluice.desc": "A Sluice can be utilized to pan for ores in Ore Deposits in a faster, slightly automated way. Not only that, but sluices produce different outputs when compared to regular panning, check the field guide's entry for more information!", + "quests.tfg_tips.sluice.desc": "A &3Sluice&r can be used to process those àl deposits&r in a faster, slightly automated way. In addition, sluices can produce additional &drare outputs&r, check the &2Field Guide&r entry for more information!", "quests.tfg_tips.status_effects.title": "Status Effects", "quests.tfg_tips.status_effects.subtitle": "No more drinking weird potions.", - "quests.tfg_tips.status_effects.desc": "While potion making is not accessible, you have other means of creating items that give you status effects.", + "quests.tfg_tips.status_effects.desc": "While potion brewing is not accessible, you can make other consumable items to obtain status effects.", "quests.tfg_tips.aged_alcohol.title": "Aged Alcohols", "quests.tfg_tips.aged_alcohol.subtitle": "Drink in moderation...", - "quests.tfg_tips.aged_alcohol.desc": "If you make some sort of drinkable Alcohol (such as beer). You can age it in a barrel for long periods of time. Aging an alcohol like this makes it more potent, giving you special status effects when drank.", + "quests.tfg_tips.aged_alcohol.desc": "&3Aging alcoholic beverages&r in &abarrels&r for long periods of time increases potency, resulting in &dAged Alcohols&r. Drinking them via bottles or flasks will grant useful status effects depending on which alcohol was used, such as &bRegeneration&r, &bResistance&r or &bAbsorption.&r These effects are especially useful for exploration", + "quests.tfg_tips.aged_alcohol.task": "Any Aged Alcohol", "quests.tfg_tips.pills.title": "Medicine: Pills", "quests.tfg_tips.pills.subtitle": "Pills here!", - "quests.tfg_tips.pills.desc": "With a bit of Wax, some Spring Water, and other ingredients, you can create Pills! Pills give a myriad of different status effects, some good, some bad. They can come quite handy exploring, specially the Regeneration pill as it can be used when you're on very low health, and natural regeneration just doesnt cut it.", + "quests.tfg_tips.pills.desc": "Mixing &aWax&r, some &bSpring Water&r and some unique ingredients will grant you &dPills!&r Pills give a myriad of different status effects, some good, some bad.\n\n&3&lTip:&r&o Using a &bMechanical Mixer&f or &bGT Mixer&f will double yield!", + "quests.tfg_tips.pills.task": "Any Effect Pill", "quests.tfg_tips.tablets.title": "Medicine: Tablets", "quests.tfg_tips.tablets.subtitle": "Tablets here...?", - "quests.tfg_tips.tablets.desc": "While more difficult to craft than regular pills, tablets last considerably longer.", + "quests.tfg_tips.tablets.desc": "While more difficult to craft than regular pills, requiring either the &3Greate Mechanical Mixer&r or the &3GT Mixer&r, &dTablets&r last considerably longer.", + "quests.tfg_tips.tablets.task": "Any Tablet", "quests.tfg_tips.salvo.title": "Medicine: Salves", - "quests.tfg_tips.salvo.subtitle": "Apply directly to the forehead.", - "quests.tfg_tips.salvo.desc": "A Salvo is another type of medicine, usually applied on the skin. These can be used to grant you absorption, fire resistance, instant health, etc.", + "quests.tfg_tips.salvo.subtitle": "Apply directly to the forehead", + "quests.tfg_tips.salvo.desc": "A &dSalve&r is another type of medicine, usually applied on the skin. These provide a different set of effects compared to &aPills&r and &aTablets&r, such as &cFire Resistance&r and &4Instant Health&r, but require relatively complex chemistry.", + "quests.tfg_tips.salvo.task": "Any Salve", "quests.tfg_tips.misc.title": "Misc Tips", "quests.tfg_tips.misc.subtitle": "Even more tips!", - "quests.tfg_tips.misc.desc": "These are miscellaneous tips, they dont fit in the other categories but still useful to know about.", + "quests.tfg_tips.misc.desc": "These are miscellaneous tips, they don't fit in the other categories but are still useful to know about.", "quests.tfg_tips.digger_helmet.title": "Digger Helmet", - "quests.tfg_tips.digger_helmet.subtitle": "For those days where you mine all day long", - "quests.tfg_tips.digger_helmet.desc.1": "The Digger Helmet is well, a Helmet you can wear that will automatically light up your surroundings. It'll require a bit of Glowstone to craft however, maybe you can reach to The Beneath for some easy glowstone...", - "quests.tfg_tips.digger_helmet.desc.2": "Worth mentioning, the Digger Helmet itself works thanks to a specific setting of Sodium Dynamic Lights, you'll have to toggle on \"Dynamic Entity Lighting\" for the Digger Helmet to work properly", + "quests.tfg_tips.digger_helmet.subtitle": "For when you mine all day long", + "quests.tfg_tips.digger_helmet.desc.1": "The &dDigger Helmet&r is a helmet you can wear that will automatically light up your surroundings, hands-free! Useful if your main hand is occupied and your off-hand is equipped with a shield. It will require a bit of &6Glowstone&r to craft. Maybe you can reach to &4The Beneath&r for some early game access...", + "quests.tfg_tips.digger_helmet.desc.2": "&l&3Important:&r&l The &dDigger Helmet&f itself works thanks to a specific setting of &cSodium Dynamic Lights&f, you'll have to toggle on &b\"Dynamic Entity Lighting\"&f for it to work properly", "quests.tfg_tips.grappling_hook.title": "Grappling Hook", "quests.tfg_tips.grappling_hook.subtitle": "This is going to end poorly", - "quests.tfg_tips.grappling_hook.desc": "By combining 4 pieces of Rope Coil and a Wrought Iron Pickaxe Head you can create a Grappling Hook! The Grappling Hook is ideal for scaling big mountains and traversing the world at your liesure. It contains an upgrade system that allows you to combine and modify your Hook to your liesure.", - "quests_tfg_tips.grapple_repair.title": "Repairing your Hook", + "quests.tfg_tips.grappling_hook.desc": "By combining 4 pieces of &aRope Coil&r and a &bWrought Iron Pickaxe Head&r, you can create a &dGrappling Hook!&r An ideal tool for scaling big mountains, explore large caves and traversing the world. It contains an &eupgrade system&r that allows you to combine and modify your &dHook&r to your leisure.", + "quests.tfg_tips.grapple_repair.title": "Repairing your Hook", "quests.tfg_tips.grapple_repair.subtitle": "READ ME, OR YOU MAY REGRET IT LATER!", - "quests.tfg_tips.grapple_repair.desc": "All of your grappling hook's upgrades are located as NBT Data inside the item. What this means is that trying to repair your Grappling Hook using another Grappling Hook &lWILL destroy all your upgrades!&r\n\nInstead, you should place your Grappling Hook and some Wrought Iron Dust in a Workbench to repair it, this will keep all your NBT data, and as such, your upgrades.", + "quests.tfg_tips.grapple_repair.desc": "All your &dGrappling Hook&r &aupgrades&r are stored as NBT Data inside the item. This means trying to repair your hook using &canother&r Grappling Hook &l&cWILL destroy all your upgrades!&r\n\nInstead, you should place your &dGrappling Hook&r and some &bWrought Iron Dust&r in a &3Workbench&r to repair it.", "quests.tfg_tips.grapple_upgrades.title": "Upgrading your Grappling Hook", "quests.tfg_tips.grapple_upgrades.subtitle": "Balanced around TFG, of course!", - "quests.tfg_tips.grapple_upgrades.desc.1": "Upgrading your Grappling Hook consists of adding or removing items to it. This is done via the Workbench and Crafting Recipes.\n\nTo see all the upgrades you can apply to your Grappling Hook you can press the \"Usage\" key in JEI. Each of the custom recipes will contain text describing what changes are being applied.", - "quests.tfg_tips.grapple_upgrades.desc.2": "All upgrades can be removed, the usual way to do this is by combining the Grappling Hook with the Upgrade, the Item used to Upgrade it, and a Hammer. After clicking the new Grappling Hook, the old item you used to upgrade it will be left in the crafting grid! This process of Downgrading is global unless specified otherwise in the respective upgrade quest.\n\nFinal note, Upgrades cannot be overriden, if you want to upgrade from an LV motor to an MV motor, you need to remove the LV motor upgrade first.", - "quests.tfg_tips.grapple_length.title": "Grappling Hook Upgrade: Length", - "quests.tfg_tips.grapple_length.subtitle": "Long Boy", - "quests.tfg_tips.grapple_length.desc": "By default, your Grappling Hook has 80 blocks in length, you can add 20 more blocks to it's length by adding more Rope Coils. Increasing it's length up to 200 Blocks.\n\nLength can be decreased by placing a Knife with your Grappling Hook, reducing the length by 20, down to 20.", + "quests.tfg_tips.grapple_upgrades.desc.1": "Upgrading your &dGrappling Hook&r consists of adding or removing items to it via the &3Workbench&r.&r\n\nTo see all the upgrades you can apply to your &dGrappling Hook&r you can press the \"Usage\" key in &2EMI.&r\nEach of the custom recipes will contain text describing what changes are being applied.", + "quests.tfg_tips.grapple_upgrades.desc.2": "Upgrades can be removed by crafting the &dGrappling Hook&r with a &bHammer&r and the &aitem you used to upgrade&r it with (it won't be consumed). The craft will return the &dHook&r with the upgrade removed and the item used to upgrade it in the first place, therefore you get two items back! This process of downgrading is default behaviour for all upgrades unless stated otherwise in the respective upgrade quest.\n\n&oUpgrades cannot be overriden, if you want to upgrade from an &7LV&f motor to an &bMV&f motor, you need to remove the &7LV&f motor upgrade first.", + "quests.tfg_tips.grapple_upgrade_length.title": "Grappling Hook Upgrade: Length", + "quests.tfg_tips.grapple_upgrade_length.subtitle": "Long Boy", + "quests.tfg_tips.grapple_upgrade_length.desc": "By default, your &dGrappling Hook&r has &b80 blocks in length&r, you can add &c20 more&r to its length by adding more &aRope Coils.&r 200 blocks is the maximum.\n\nLength can be &3decreased&r by crafting with a &aKnife&r , &2reducing the length by 20&r, down to a minimum of 20.", "quests.tfg_tips.grapple_motor.title": "Grappling Hook Upgrade: Motor", - "quests.tfg_tips.grapple_motor.subtitle": "That lazy huh?", - "quests.tfg_tips.grapple_motor.desc": "The Motor upgrade enables a Motor in your Grappling Hook, it'll automatically reel you in. Caution should be taken as high level motors may cause you to take fall damage from the reeling force.\n\nMotors are tiered utilizing the Gregtech voltage tiering system, their crafting recipe tells you exactly what was modified and how much.", + "quests.tfg_tips.grapple_motor.subtitle": "That lazy, huh?", + "quests.tfg_tips.grapple_motor.desc": "The &aMotor Upgrade&r enables automatic reeling in with your &dHook.&r Caution should be taken as &chigh level motors&r may cause you to take &4fall damage&r from the reeling force.\n\nMotors are tiered according to &2Gregtech&r voltage tiers. The crafting recipes tells you exactly what stats were modified and by how much.", "quests.tfg_tips.grapple_smart_motor.title": "Grappling Hook Upgrade: Smart Motor", "quests.tfg_tips.grapple_smart_motor.subtitle": "Does anyone even know what this does?", - "quests.tfg_tips.grapple_smart_motor.desc": "The Smart Motor upgrade enables the Smart Motor system, it requires a Motor to be installed first.", + "quests.tfg_tips.grapple_smart_motor.desc": "The &aSmart Motor Upgrade&r enables the &3Smart Motor system&r. It requires a &bMotor Upgrade&r to be installed first.", "quests.tfg_tips.grapple_field.title": "Grappling Hook Upgrade: Repulsion Field", "quests.tfg_tips.grapple_field.subtitle": "Look ma! I'm levitating!", - "quests.tfg_tips.grapple_field.desc": "The Repulsion Field upgrade causes you to be repelled from nearby blocks, caution should be taken as high level repulsion strength may cause you to take fall damage.\n\nRepulsion Fields are tiered utilizing the Gregtech voltage tiering system, their crafting recipe tells you exactly what was modified and how much.", + "quests.tfg_tips.grapple_field.desc": "The &aRepulsion Field Upgrade&r causes you to be repelled from nearby blocks. Caution should be taken as &chigh level repulsion strength&r may cause you to take &4fall damage.&r\n\nRepulsion Fields are tiered according &2Gregtech&r voltage tiers. The crafting recipe tells you exactly what stats were modified and by how much.", "quests.tfg_tips.grapple_magnet.title": "Grappling Hook Upgrade: Hook Magnet", "quests.tfg_tips.grapple_magnet.subtitle": "Intense Attraction", - "quests.tfg_tips.grapple_magnet.desc": "The Magnet upgrade causes your hook to be attracted to any nearby blocks, causing it to latch to them.\n\nMagnet Upgrades are tiered utilizing GT's Magnetic Ingots, with the worst one being Magnetic Iron and the best being Magnetic Samarium", + "quests.tfg_tips.grapple_magnet.desc": "The &aMagnet Upgrade&r causes your &dHook&r to be attracted to any nearby blocks, latching onto them.\n\nMagnet Upgrades are tiered using &2Gregtech's&r Magnetic Ingots, with the worst one being &bMagnetic Iron&r and the best being &bMagnetic Samarium.&r", "quests.tfg_tips.grapple_magnet.task": "Any Magnetic Ingot", "quests.tfg_tips.grapple_sticky.title": "Grappling Hook Upgrade: Sticky Rope", "quests.tfg_tips.grapple_sticky.subtitle": "Sticky!", - "quests.tfg_tips.grapple_sticky.desc": "The Sticky upgrade causes your hook to be attached to any rope piece that touches a block.", + "quests.tfg_tips.grapple_sticky.desc": "The &aSticky Upgrade&r causes your &dHook&r to be attached to any rope piece touching a block.", "quests.tfg_tips.grapple_throw_speed.title": "Grappling Hook Upgrade: Throw Speed", "quests.tfg_tips.grapple_throw_speed.subtitle": "Yeet!", - "quests.tfg_tips.grapple_throw_speed.desc": "The Throw Speed upgrade causes your hook to travel farther.\n\nThrow Speed upgrades are tiered utilizing the Gregtech voltage tiering system, their crafting recipe tells you exactly what was modified and how much.", + "quests.tfg_tips.grapple_throw_speed.desc": "The &aThrow Speed Upgrade&r causes your &dHook&r to launch faster.\n\nThrow Speed upgrades are tiered according &2Gregtech&r voltage tiers. The crafting recipe tells you exactly what stats were modified and by how much.", "quests.tfg_tips.grapple_double.title": "Grappling Hook Upgrade: Double Hook", "quests.tfg_tips.grapple_double.subtitle": "Double the Fun!", - "quests.tfg_tips.grapple_double.desc": "The Double Hook upgrade causes you to throw two grappling hooks at an angle. You can specify key binds to throw each hook separately.", + "quests.tfg_tips.grapple_double.desc": "The &aDouble Hook Upgrade&r causes you to throw &dtwo Grappling Hooks&r at an angle. You can specify key binds to throw each hook separately.", "quests.tfg_tips.grapple_gravity_50.title": "Grappling Hook Upgrade: 0.5 Gravity", "quests.tfg_tips.grapple_gravity_50.subtitle": "Does this even make sense?", - "quests.tfg_tips.grapple_gravity_50.desc": "The 0.5 Gravity upgrade causes your hook to have a Gravity Coefficient of 0.5, this means that it'll be affected 50% less from gravity! causing it to travel farther.\n\nInstead of using another Helium Bucket to remove the upgrade, utilize a regular bucket instead. It'll fill with the helium you used.", + "quests.tfg_tips.grapple_gravity_50.desc": "The &a0.5 Gravity Upgrade&r causes your hook to have a &dGravity Coefficient of 0.5.&r. This means that it will be affected by gravity by a factor of a half!\n\nInstead of using another &dHelium Bucket&r to remove the upgrade, use an &cEmpty Bucket instead.&r It will fill with the &dHelium&r you initally used.", "quests.tfg_tips.grapple_gravity_0.title": "Grappling Hook Upgrade: ZERO gravity", "quests.tfg_tips.grapple_gravity_0.subtitle": "Kinda Expensive", - "quests.tfg_tips.grapple_gravity_0.desc": "The ZERO Gravity upgrade, as the name implies, causes your hook to have NO gravity.\n\nInstead of using another Gravitation Engine Module to remove the upgrade, utilize a Tungsten Block instead.", - "quests.tfg_tips.grapple_tweals.title": "Grappling Hook Upgrade: Tweaks", + "quests.tfg_tips.grapple_gravity_0.desc": "The &aZERO Gravity Upgrade&r, as the name implies, causes your hook to have NO gravity.\n\nInstead of using another Gravitation Engine Module &cto remove the upgrade&r, use a &dTungsten Block instead.&r", + "quests.tfg_tips.grapple_tweaks.title": "Grappling Hook Upgrade: Tweaks", "quests.tfg_tips.grapple_tweaks.subtitle": "Tweaking your Angles", - "quests.tfg_tips.grapple_tweaks.desc": "Utilizing a Wrench you can tweak the Upwards Angle when you throw the hook, while the Screwdriver is used to tweak the Horizontal Angle when you throw your hook using a Double Hook Upgrade.", + "quests.tfg_tips.grapple_tweaks.desc": "Using a &aWrench&r, you can tweak the &bUpwards Angle&r when you throw the &dHook&r, while the &aScrewdriver&r is used to tweak the &bHorizontal Angle&r of the &aDouble Hook Upgrade.&r", "quests.tfg_tips.chalk.title": "Chalk", "quests.tfg_tips.chalk.subtitle": "You don't want to get lost, do you?", - "quests.tfg_tips.chalk.desc": "Chalk can be used to draw different symbols on blocks, they're very useful to mark important locations while cave exploring.\n\nBy creating a Chalk Box, you can store multiple chalk pieces in a single inventory slot, not only that, you can add some sort of glowing item (such as Glowstone) to cause your chalk doodles to glow in the dark!", + "quests.tfg_tips.chalk.desc": "&dChalk&r can be used to draw different symbols on blocks. They are very useful to mark important locations while &bcave exploring.&r\n\nA &3Chalk Box&r can store multiple chalk pieces in a single inventory slot. Not only that, you can add some sort of glowing item (such as &6Glowstone&r) to make your chalk doodles glow in the dark!", "quests.tfg_tips.tape_measure.title": "Tape Measure", - "quests.tfg_tips.tape_measure.subtitle": "Stop manually counting your block spaces.", - "quests.tfg_tips.tape_measure.desc": "You can use a Tape Measure to measure the perimeter of an area by blocks, specially useful when building large projects. Simply interact with a block while holding the Tape Measure to begin measuring, to stop, right click another block while holding the Tape Measure.", + "quests.tfg_tips.tape_measure.subtitle": "Stop manually counting your block spaces", + "quests.tfg_tips.tape_measure.desc": "You can use a &dTape Measure&r to measure a perimeter or length, especially useful when building large projects. Simply interact with a block while holding the &dTape Measure&r to begin measuring. To stop, right-click another block while holding the Tape Measure.", "quests.tfg_tips.blank_disc.title": "Etched: Listen to Music", - "quests.tfg_tips.blank_disc.subtitle": "Listen to your tunes while gregging all over the place.", - "quests.tfg_tips.blank_disc.desc": "Etched is a Music Player mod that allows you to play music discs, not only that, it allows you to create &lcustom&r discs that can play virtually any song you want (as long as its in Bandcamp, Soundcloud.) It can also play in-game sounds via Sound Events.\n\nTo begin your journey with Etched, craft a \"Blank Music Disc\"", + "quests.tfg_tips.blank_disc.subtitle": "Listen to your tunes while Gregging all over the place.", + "quests.tfg_tips.blank_disc.desc": "&2Etched&r is a music player mod that allows you to play music discs in new ways, including &dcustom discs&r that play any song you want (as long as it's in Bandcamp, Soundcloud) as well as &ain-game sounds&r via sound events.\n\nTo begin your journey with &2Etched&r, craft a &bBlank Music Disc.&r", "quests.tfg_tips.radio.title": "Radio", "quests.tfg_tips.radio.subtitle": "Stream your music without discs", - "quests.tfg_tips.radio.desc": "The Radio allows you to query up any song you want. Right click the radio and then type out your desired song, such as a URL or a minecraft sound event.", + "quests.tfg_tips.radio.desc": "The &dRadio&r allows you to query up any song you want. Right-click it and then type out your desired song, such as a URL or a Minecraft sound event.", "quests.tfg_tips.dye_discs.title": "The Classics", "quests.tfg_tips.dye_discs.subtitle": "These will never go old...", - "quests.tfg_tips.dye_discs.desc": "By dipping a Blank Disc on a barrel filled with Dye, you can create the basic ingame discs, such as Wait, 13 and Blocks.", + "quests.tfg_tips.dye_discs.desc": "By dipping a &bBlank Disc&r in a &aBarrel&r filled with dye, you can create the vanilla in-game discs. Enjoy classics such as &dWait, 13&r and &dBlocks!&r", + "quests.tfg_tips.dye_disks.task": "Any Classic Disc", "quests.tfg_tips.special_discs.title": "The Uniques", "quests.tfg_tips.special_discs.subtitle": "These are unique... Or they where, at least", - "quests.tfg_tips.special_discs.desc": "You can also craft unique discs if you want...", + "quests.tfg_tips.special_discs.desc": "You can also craft &dUnique Discs&r if you want...", "quests.tfg_tips.disc_collector.title": "Disc Collector", "quests.tfg_tips.disc_collector.subtitle": "A full collection", - "quests.tfg_tips.disc_collector.desc": "Can you craft all the music discs?\n\nSince you're here, there are 2 hidden quests related to music discs. One is quite \"Suspicious\" and the other might require you to channel your inner Dwarf, good luck!", + "quests.tfg_tips.disc_collector.desc": "Can you craft all the music discs?\n\nSince you're here, there are 2 hidden quests related to music discs. One is quite &csuspicious&r and the other might require you to channel your inner dwarf, good luck!", "quests.tfg_tips.amogus.title": "AMONGUS", "quests.tfg_tips.amogus.subtitle": "SUSSY BAKA!", "quests.tfg_tips.amogus.desc": "Congratulations for unlocking this hidden, abhorrent quest. May your venting never be spotted.", "quests.tfg_tips.label_album.title": "Labels and Albums", - "quests.tfg_tips.label_album.subtitle": "Labels for your Disc, and Album Covers to protect them", - "quests.tfg_tips.label_album.desc": "To Etch your first disc, you'll need a Label. Labels, much like the blank discs, can be dyed.\n\nAlbum Covers are used to cover your etched discs, If your etched disc pulls data from a site like sound-cloud, the song's icon will be compressed into a 16x16 texture! To store a disc, open your inventory, select your album cover, and right click your music disc you want to store. You can also store regular discs.", + "quests.tfg_tips.label_album.subtitle": "Labels for your Discs, and Album Covers to protect them", + "quests.tfg_tips.label_album.desc": "To &betch&r your first disc, you'll need a &dLabel.&r These, much like blank discs, can be dyed.\n\n&dAlbum Covers&r are used to cover your etched discs. If your etched disc pulls data from a site like &cSoundcloud&r, the song's icon will be compressed into a 16x16 texture! To store a disc, open your inventory, select your album cover, and right-click the music disc you want to store. You can also store regular discs.", "quests.tfg_tips.etching_disc.title": "Etching your first disc", "quests.tfg_tips.etching_disc.subtitle": "Time for your first tunes", - "quests.tfg_tips.etching_disc.desc": "To Etch your first disc, you'll need the Etching Table. Right clicking the table will open the Etching Interface. By providing a blank disc with a Music Label, and providing a valid sound source on the top bar.\n\nSound source include things like Bandcamp/Soundcloud URLS (which can point to a single music or an album), In-game sound events, and file paths to .ogg/.wav/.mp3 files in your hard disk.\n\nTo complete this quest, Etch &lany&r disc.", + "quests.tfg_tips.etching_disc.desc": "You're going to need the &3Etching Table&r to start &betching.&r Right-clicking the table will open the etching interface and by providing a &aBlank Disc&r with a &aMusic Label&r, and a valid sound source on the top bar, your disc will be ready.\n\nSound sources include things like &bBandcamp/Soundcloud URLs&r (which can point to a single or an album), &din-game sound events&r, and file paths to &c.ogg/.wav/.mp3 files&r on your hard disk.\n\nTo complete this quest, etch any disc.", "quests.tfg_tips.disc_players.title": "Disc Players", "quests.tfg_tips.disc_players.subtitle": "To play your discs of course!", - "quests.tfg_tips.disc_players.desc": "You can utilize a regular JukeBox to play music, however, you can also craft these two items!\n\n&oAlbum Jukebox&r: The Album Jukebox allows you to put multiple discs inside, and cycle across them, perfect to have it around your base to listen to music.\n\n&oBoombox&r: The Boombox lets you carry over music on the go.", + "quests.tfg_tips.disc_players.desc": "You can use a regular &3JukeBox&r to play music, however you can also craft these following two items:\n\n&dAlbum Jukebox&r: allows you to put multiple discs inside and &bcycle across them&r, perfect to have in your base.\n\n&dBoombox&r: lets you carry your music on the go.", "quests.tfg_tips.disc_players.task": "Obtain an Album Jukebox or a Boombox", "quests.tfg_tips.DIGGY_DIGGY_HOLE.title": "I AM A DWARF AND I'M DIGGING A HOLE", "quests.tfg_tips.DIGGY_DIGGY_HOLE.subtitle": "DIGGY DIGGY HOLE, DIGGY DIGGY HOLE!", - "quests.tfg_tips.DIGGY_DIGGY_HOLE.desc": "Congratulations for unlocking this hidden, awesome quest. May your mines never collapse and you find great loot underground.", - "quests.tfg_tips.DIGGY_DIGGY_HOLE.task": "A Diggy Diggy Hole Disc.", + "quests.tfg_tips.DIGGY_DIGGY_HOLE.desc": "Congratulations for unlocking this hidden, awesome quest. May your mines never collapse and great loot be underground!", + "quests.tfg_tips.DIGGY_DIGGY_HOLE.task": "A Diggy Diggy Hole Disc", "quests.tfg_tips.camera.title": "Exposure: Capture your Memories", "quests.tfg_tips.camera.subtitle": "Take pictures of your world", - "quests.tfg_tips.camera.desc": "Exposure is a mod that adds realistic picture processing into the game, start by creating your camera, film rolls, and then develop your pictures. It has complex systems such as color correction, filters and more.", + "quests.tfg_tips.camera.desc": "&2Exposure&r is a mod that adds realistic picture processing into the game. Start by creating your &bCamera&r and &aFilm Rolls&r, and then develop your pictures!. It has complex systems such as color correction, filters and more.", "quests.tfg_tips.selfie.title": "Selfies", - "quests.tfg_tips.selfie.subtitle": "Influencer moment", - "quests.tfg_tips.selfie.desc": "With your camera open, you can press F5 to enable Selfie mode, which as the name suggests, allows you to take Selfies.", + "quests.tfg_tips.selfie.subtitle": "For the 'gram!", + "quests.tfg_tips.selfie.desc": "With your &bCamera&r open, you can press F5 to enable &bSelfie Mode&r, which as the name suggests, allows you to take selfies.", "quests.tfg_tips.camera_attachments.title": "Camera Attachments", "quests.tfg_tips.camera_attachments.subtitle": "Improve your Camera", - "quests.tfg_tips.camera_attachments.desc": "By interacting with the camera while sneaking, you'll open the camera GUI. Which not only allows you to place your desired film roll, it allows you to attach things to your camera, enabling new functionalities.\n\n&oRedstone Lamp&r: The Redstone Lamp works as a Flash, which can be used to illuminate dark environments.\n&oSpyglass&r: The Spyglass enables zooming, letting you take pictures of objects far away.", + "quests.tfg_tips.camera_attachments.desc": "By interacting with the &dCamera&r while sneaking, you'll open the camera GUI. This not only allows you to place your desired &aFilm Roll&r, it allows you to attach addons to your camera with new functionalities.\n\n&dRedstone Lamp&r: Works as a flashlight, illuminating dark environments.\n&dSpyglass&r: Enables zooming, letting you take pictures of objects far away.", "quests.tfg_tips.camera_attachments.task": "A Redstone Lamp or a Spyglass", "quests.tfg_tips.filters.title": "Color Filters", "quests.tfg_tips.filters.subtitle": "Changing the look of your photos.", - "quests.tfg_tips.filters.desc": "Utilizing a glass pane, you can apply a filter to a picture, simply open your camera GUI and assign it to the camera filter slot. With filters you can change the overall color composition of your pictures. You can make a picture look extra cold by applying a Cyan or Light Blue filter to it.", + "quests.tfg_tips.filters.desc": "Using a &aGlass Pane&r, you can apply a &dFilter&r to a picture. Simply open your camera GUI and assign it to the camera filter slot. With &dFilters&r you can change the overall color composition of your pictures. For instance, you can make a picture look extra cold by applying a &3Cyan&r or &bLight Blue&r filter to it.", "quests.tfg_tips.filter.task": "Any Glass Pane", "quests.tfg_tips.interplanar_projector.title": "Interplanar Projector", "quests.tfg_tips.interplanar_projector.subtitle": "This doesn't look realistic...?", - "quests.tfg_tips.interplanar_projector.desc": "The Interplanar Projector is a special filter that allows you to take pictures of things &lOutside&r of the minecraft world, namely pictures in the Internet or pictures on your Hard Drive.\n\nYou can rename the lens in a Scribing Table that points either to an image in your Hard Drive or an image in the web, placing the lens on your camera and taking a picture should result int a picture of the specified image.", + "quests.tfg_tips.interplanar_projector.desc": "The &dInterplanar Projector&r is a special filter that allows you to take pictures of things &coutside&r of the Minecraft world\n\nYou can rename the &aLens&r in a &3Scribing Table&r with a name that points either to an image on your &bDrive&r or a &bWeb Image.&r Placing the lens on your &aCamera&r and taking a picture should give you that external image.", "quests.tfg_tips.film_rolls.title": "Film Rolls", - "quests.tfg_tips.film_rolls.subtitle": "Its not Digital", - "quests.tfg_tips.film_rolls.desc": "To begin taking pictures you'll need to craft a film roll, there are two types, Black and White Film and Colored Film. As their names suggest, one will take Black and White pictures and the other will take Colored pictures.", + "quests.tfg_tips.film_rolls.subtitle": "It's not Digital", + "quests.tfg_tips.film_rolls.desc": "To begin taking pictures you'll need to craft one of two kinds of film roll: &0Black and White Film&r, and &dColored Film.&r", "quests.tfg_tips.developing_film.title": "Developing Films", - "quests.tfg_tips.developing_film.subtitle": "Pretend you're a Printer.", - "quests.tfg_tips.developing_film.desc": "Once you've taken your pictures you can begin development by soaking the films in water. Afterwards, you'll need to craft a &oLightroom&r.\n\nThe Lightroom is used to develop film, You will need a strong light source above the block, and dyes. Namely Cyan, Magenta, Yellow and Black, as pictures are taken in the CYMK color spectrum. Black and White film will only need black dye while colored film will need CYMK.\n\nIf you fancy for some more interesting development, you can work with Chromatic Process...", + "quests.tfg_tips.developing_film.subtitle": "Pretend you're a printer", + "quests.tfg_tips.developing_film.desc": "Once you've taken your pictures you can begin &adevelopment&r by soaking the films in &bWater.&r Afterwards, you'll need to craft a &dLightroom&r.\n\nThe lightroom is used to develop film, needing a strong light source above the block, and the following four dyes: &3Cyan&r, &5Magenta&r, &eYellow&r and &0Black&r, known as CMYK. &0Black and White Film&r will only need &0Black Dye&r while &dColored Film&r will need the entire CMYK set.\n\nIf you fancy more interesting processing, you can work with the &cChromatic Process...&r", "quests.tfg_tips.photo.title": "Your first Photo", "quests.tfg_tips.photo.subtitle": "Congratulations!", - "quests.tfg_tips.photo.desc": "With a photo you can do multiple things with it, you can Copy the photo by utilizing a blank sheet of paper, and the required dyes used to develop the original picture (Black for Black and White, CYMK for Colored Pictures).\nYou can also &lstack&r pictures to keep them neatly organized in your inventory, check JEI to know how to.\nYou can also artifically \"age\" a picture by applying brown dye to it, making it look old.", + "quests.tfg_tips.photo.desc": "you can do multiple things with it with your &dPhotograph.&r\n\nYou can &bCopy&r it by utilizing a blank sheet of &aPaper&r and the required &aDyes&r used to develop the original.\n\nYou can also &bStack&r pictures to keep them neatly organized in your inventory, check EMI to know how to.\n\nYou can also artifically &cAge&r a picture by applying &6Brown Dye&r to it, making it look like it has gone through the years.", "quests.tfg_tips.photo_album.title": "Photo Album", "quests.tfg_tips.photo_album.subtitle": "Turns out memories are forever...", - "quests.tfg_tips.photo_album.desc": "If you want a place to store photos indefinetly, you can create a Photo Album. Not only can it be used to neatly store your pictures, you can also write small descriptions for them! Such as place where you took them, notes, and more.", + "quests.tfg_tips.photo_album.desc": "If you want a place to &bstore photos&r, make a &dPhoto Album.&r In addition, you can also write small descriptions for each photon in an album. Write out the place where you took them, some notes, and more!", "quests.tfg_tips.photo_frame.title": "Photo Frame", - "quests.tfg_tips.photo_frame.subtitle": "For the astonishing pictures.", - "quests.tfg_tips.photo_frame.desc": "A photo frame can be used to display pictures, unlike Item Frames, Photo Frames can be 1x1, 2x2 or 3x3 in size, allowing you to display particularly beautiful photos in your base.", + "quests.tfg_tips.photo_frame.subtitle": "For the most astonishing pictures", + "quests.tfg_tips.photo_frame.desc": "A &dPhoto Frame&r can be used to display pictures. Unlike Item Frames, Photo Frames can be 1x1, 2x2 or 3x3 in size, allowing you to display particularly beautiful photos at your base!", "quests.tfg_tips.arborfirmacraft.title": "ArborFirmaCraft", "quests.tfg_tips.arborfirmacraft.subtitle": "Harvesting the Life-blood of Trees", - "quests.tfg_tips.arborfirmacraft.desc": "ArborFirmaCraft is a mod that adds multiple new trees, some are Variants of existing TFC trees, such as Ancient Kapok, while others are completely new, such as Baobab and Hevea. Some of the colors of the trees may remind you of vanilla tree colors, such as Baobab.\n\nThis part will go all over Tree Tapping.\nAs a bonus, all ArborFirmaCraft woods are compatible with FirmaLife, and FirmaCiv.", + "quests.tfg_tips.arborfirmacraft.desc": "&2ArborFirmaCraft&r is a mod that adds multiple new trees to &3TFG&r: some are variants of existing TFC trees, such as &dAncient Kapok&r, while others are completely new, such as the &aBaobab&r and &aHevea.&r Some of the plank and log textures of these trees may remind you of vanilla tree colors...\n\nThis section will go over &bTree Tapping.&r\nAs a bonus, all &2ArborFirmaCraft&r woods are compatible with &2FirmaLife&r, and &2FirmaCiv&r, we made sure of it!", "quests.tfg_tips.treetap.title": "Treetap", "quests.tfg_tips.treetap.subtitle": "Now with less jank!", - "quests.tfg_tips.treetap.desc": "To begin tapping trees, you'll need to craft a Tree Tap, you'll need to at least know how to work Copper Ingots into these taps.\n\nThe process of tapping requires finding a tree, there's a dedicated &oTapping Index&r in the Field Guide's section on ArborFirmaCraft that'll tell you how to find the trees. There's also the \"Tapping Trees\" entry, which can be used to learn how to actually tap the trees.", + "quests.tfg_tips.treetap.desc": "To begin &btapping&r trees, you'll need to forge a &dTree Tap&r from working &aCopper Ingots&r on an &3Anvil.&r\n\nThe process of tapping requires finding a suitable tree, a dedicated &bTapping Index&r in the &3ArborFirmaCraft&r &2Field Guide&r section will tell you how to find these trees. There's also the &bTapping Trees&r entry, which can be used to learn how to actually tap them.", "quests.tfg_tips.find_rosin_tree.title": "Rosin Trees", "quests.tfg_tips.find_rosin_tree.subtitle": "It's going to be chilly...", - "quests.tfg_tips.find_rosin_tree.desc": "Rosin Trees can be found in cold areas of the world that receive moderate to large amounts of rainfall. It can be tapped to obtain Pitch. Pitch can be used to create both Sticky Resin and Conifer Rosin\n\nTo complete this quest, you need to look at a block that has the tag \"#tfg:rosin_logs\", you can use JEI to learn which blocks have this tag.", + "quests.tfg_tips.find_rosin_tree.desc": "&aRosin Trees&r can be found in &9cold&r areas of the world that receive moderate to large amounts of rainfall. It can be tapped to obtain &bPitch.&r This can be used to create both &dSticky Resin&r and &dConifer Rosin.&r\n\nTo complete this quest, you need to &clook&r at a block that has the tag &o#tfg:rosin_logs&r. You can use EMI to learn which blocks have this tag by searching with that hashtag.", "quests.tfg_tips.find_latex_tree.title": "Latex Trees", "quests.tfg_tips.find_latex_tree.subtitle": "Seek for the Tropics", - "quests.tfg_tips.find_latex_tree.desc": "Latex Trees can be found in temperate areas of the world that receive large amounts of rainfall. It can be tapped to obtain Latex. Latex can be used to create both Sticky Resin, and Vulcanized Latex. Vulcanized Latex is used in the creation of Rubber Gloves, which protect you from poisonous materials on contact.\n\nTo complete this quest, you need to look at a block that has the tag \"#tfg:latex_logs\", you can use JEI to learn which blocks have this tag.", + "quests.tfg_tips.find_latex_tree.desc": "&aLatex Trees&r can be found in &2temperate&r areas of the world that receive large amounts of rainfall. It can be tapped to obtain &bLatex&r, used to create both &dSticky Resin&r, and &dVulcanized Latex.&r The latter is used to produce &3Rubber&r and &aRubber Gloves&r, which protect you from &4poisonous materials&r on contact.\n\nTo complete this quest, you need to &clook&r at a block that has the tag &o#tfg:latex_logs&r. You can use EMI to learn which blocks have this tag by searching with that hashtag.", "quests.tfg_tips.find_syrup_tree.title": "Syrup Trees", "quests.tfg_tips.find_syrup_tree.subtitle": "Diabetes is Skyrocketing", - "quests.tfg_tips.find_syrup_tree.desc": "Syrup Trees can be found in moderate climates of the world that receive moderate amounts of rainfall. It can be tapped to obtain Syrup. Syrup can be used to create Tree Sugars, which works for sweetning food among other uses.To complete this quest, you need to look at a block that has the tag \"#tfg:syrup_logs\", you can use JEI to learn which blocks have this tag.", + "quests.tfg_tips.find_syrup_tree.desc": "&aSyrup Trees&r can be found in &2temperate&r areas of the world that receive moderate amounts of rainfall. It can be tapped to obtain &bSyrup.&r Syrup can be used to create &dTree Sugars&r, an alternative sugar among other uses. To complete this quest, you need to &clook&r at a block that has the tag &o#tfg:syrup_logs&r. You can use EMI to learn which blocks have this tag.", "quests.tfg_tips.create_conifer_rosin.title": "Conifer Rosin", "quests.tfg_tips.create_conifer_rosin.subtitle": "No, it's not Resin", - "quests.tfg_tips.create_conifer_rosin.desc": "Conifer Rosin can be utilized as a Wax, letting you create Candles and other items.\n\nTo create the Conifer Rosin, you need to boil Confier Pitch in a vat mixed with Charcoal Powder.", + "quests.tfg_tips.create_conifer_rosin.desc": "&dConifer Rosin&r can be utilized as a &bWax&r, letting you create candles and other items.\n\nTo obtain conifer rosin, you need to boil &aConfiner Pitch&r in a &3Vat&r mixed with &aCharcoal Powder.&r", "quests.tfg_tips.create_sticky_resin.title": "Sticky Resin", "quests.tfg_tips.create_sticky_resin.subtitle": "No, it's not Rosin", - "quests.tfg_tips.create_sticky_resin.desc": "Sticky Resin can be utilized to make things sticky, not only that, its key in the production of Raw Rubber Pulp and Rubber Ingots, which you'll need if you want to advance to the Low Voltage Age.\n\nTo create the Sticky Resin you need to boil either Latex or Conifer Pitch in a vat mixed with Sulfur Powder", + "quests.tfg_tips.create_sticky_resin.desc": "&dSticky Resin&r can be utilized as slime balls in some recipes. It is also key in the production of &&aResin Circuits&r and &aResistors&r, which you'll need a fair bit of to advance into the &7Low Voltage&r age.\n\nTo make sticky resin, you need to boil either &aLatex&r or &aConifer Pitch&r in a &3Vat&r mixed with &aWood Ash.&r", "quests.tfg_tips.create_tree_sugar.title": "Tree Sugar", "quests.tfg_tips.create_tree_sugar.subtitle": "Sweet!", - "quests.tfg_tips.create_tree_sugar.desc": "Tree Sugar is a Sugar substitute, as such, it's mostly used to make things sweet.\n\nTo create the Tree Sugar, you'll need to boil your tree's Sap to get Concentrated Sap, then boil the Concentrated Sap to get Syrup, finally, use a Workbench to turn a bucket of syrup into tree sugar. Keep in mind that all the boiling processes require a stick in the vat or pot.", + "quests.tfg_tips.create_tree_sugar.desc": "&dTree Sugar&r is a sugar substitute, mostly used as a food ingredient.\n\nTo make it, you'll need to boil &aTree Sap&r to get &bConcentrated Sap&r, then boil it again to get &dSyrup.&r Finally, use a workbench to turn a &bBucket of Syrup&r into &dTree sugar.&r Keep in mind that all these &cboiling processes require a stick&r in the &3Vat&r or &3pot.&r", "quests.tfg_tips.create_tree_sugar.task": "Maple or Birch Sugar", "quests.tfg_tips.create_rubber_ingot.title": "Rubber Ingot", "quests.tfg_tips.create_rubber_ingot.subtitle": "Insulate them cables", - "quests.tfg_tips.create_rubber_ingot.desc": "Utilizing some machinery from GregTech, you can extract Raw Rubber Pulp from both Latex Producing Trees and Sticky Resin. You can then place 3 raw rubber pulp with a bit of Sulfur Dust to create Rubber Ingots. Rubber Ingots are perfect for insulating cables and are very much necesary to advance in the tech tree.", + "quests.tfg_tips.create_rubber_ingot.desc": "Utilizing the &bVacuum Chamber&r and some additional heating, you can process &aLatex&r from various trees into &dRaw Rubber Pulp&r through a specific process. You can then smelt together 3 &dRaw Rubber Pulp&r with a bit of &eSulfur Dust&r in an &bAlloy Smelter&r to create &dRubber Ingots&r, perfect for insulating cables and very much necesary to advance in the &2Voltaic Age&r and beyond...", "quests.tfg_tips.transportation.title": "Transportation", - "quests.tfg_tips.transportation.subtitle": "For traveling this vast world", - "quests.tfg_tips.transportation.desc": "The world is a very big place, you might end up needing to travel far into the distances to find specific items for your survival. The mods in this spoke help out with just that.", + "quests.tfg_tips.transportation.subtitle": "For travelling this vast world", + "quests.tfg_tips.transportation.desc": "The world is a very big place, you may end up travelling great distances to find specific resources for survival and advancement. The mods in this section will provide with varied transportation options.", "quests.tfg_tips.glider.title": "Hang Glider", "quests.tfg_tips.glider.subtitle": "This is not Breath of the Wild", - "quests.tfg_tips.glider.desc": "A Hang Glider can be crafted and used to glide along the air, you cannot gain altitude with this but it can be useful to traverse long distances if you jump from high altitudes.", + "quests.tfg_tips.glider.desc": "A &dHang Glider&r can be used to glide along the air. You &ccannot gain altitude&r with this but it can be useful to traverse long distances if you jump from high up.\nGreat synergy with &bJetpacks&r though!", "quests.tfg_tips.reinforced_glider.title": "Reinforced Glider", "quests.tfg_tips.reinforced_glider.subtitle": "Elytra well spent...?", - "quests.tfg_tips.reinforced_glider.desc": "If you combine an Elytra with a Hang Glider, you'll obtain a Reinforced Glider. The Reinforced Glider is very similar to the regular Glider, the only difference is that you'll have a higher velocity ceiling.", + "quests.tfg_tips.reinforced_glider.desc": "If you combine an &aElytra&r, made in &5EV&r, with a &aHang Glider&r, you'll obtain a &dReinforced Glider.&r It has greater durability and a higher velocity ceiling.", "quests.tfg_tips.immersive_aircraft.title": "Immersive Aircraft", "quests.tfg_tips.immersive_aircraft.subtitle": "Fly across the skies, with style.", - "quests.tfg_tips.immersive_aircraft.desc": "Immersive Aircraft is a mod all about Aircrafts such as Biplanes and traversing large amounts of blocks via the Sky.", + "quests.tfg_tips.immersive_aircraft.desc": "&2Immersive Aircraft&r is a mod all about aircrafts, allowing traversing large distances in the skies.", "quests.tfg_tips.aircraft_upgrades.title": "Aircraft Upgrades", "quests.tfg_tips.aircraft_upgrades.subtitle": "Pimp up my ride", - "quests.tfg_tips.aircraft_upgrades.desc": "Immersive Aircraft comes with Aircraft Upgrades, which you can install in your Aircrafts to improve their stats, such as velocity, takeoff speed, fuel consumption, etc. There are two types of Upgrades, regular and Tiered.\n\nThese are the regular upgrades, think you can get them all?", + "quests.tfg_tips.aircraft_upgrades.desc": "&2Immersive Aircraft&r comes with &aAircraft Upgrades&r, which you can install in your to improve your aircraft stats, such as velocity, takeoff speed, fuel consumption, etc. There are two types of upgrades: &bregular&r and &dtiered.&r\n\nThe ones in this quest are the &bregular&r upgrades, think you can get them all?", "quests.tfg_tips.steam_upgrades.title": "Aircraft Upgrades: Steam", - "quests.tfg_tips.steam_upgrade.subtitle": "Immersive Aircraft meets GregTech Tiering!", - "quests.tfg_tips.steam_upgrade.desc": "The second kind of Aircraft Upgrades are the Tiered Upgrades, these are made to match Gregtech's tiering system, going from Steam up to Extreme Voltage.\n\nSteam upgrades are the easiest to craft, and the earliest option, requiring at the very least knowledge of Black Steel.\n\nSteam-powered Aircraft Engines are used in the creation of some more sophisticated Aircrafts such as the Biplane and the Warship", - "quests.tfg_tips.steam_upgrade.task": "Any Steam Tier Aircraft Upgrade", + "quests.tfg_tips.steam_upgrades.subtitle": "Immersive Aircraft meets GregTech Tiering!", + "quests.tfg_tips.steam_upgrades.desc": "The second kind of aircraft upgrades are the &dTiered Upgrades.&r These are made to match the &3Gregtech&r tiering system, going from &8Steam&r up to &5EV.&r\n\nSteam upgrades are the easiest and earliest to craft, requiring at the very least knowledge of &bBlack Steel.&r\n\n&dSteam-powered Aircraft Engines&r are used in the creation of more sophisticated aircrafts such as the &eBiplane&r and the &cWarship.&r", + "quests.tfg_tips.steam_upgrades.task": "Any steam tier aircraft upgrade", "quests.tfg_tips.lv_upgrades.title": "Aircraft Upgrades: LV", "quests.tfg_tips.lv_upgrades.subtitle": "Red and Blue, certainly not clashing.", - "quests.tfg_tips.lv_upgrades.desc": "Low Voltage upgrades are slightly better than their Steam Counterparts, they require at the very least Red and Blue Steel. The Engine itself requires actual LV components, such as the Pistons and the Pump.\n\nYou can recycle the old upgrades using Crushing Wheels, returning some of your spent materials.", + "quests.tfg_tips.lv_upgrades.desc": "&7LV&r upgrades are slightly better than their steam counterparts, requiring &4Red&r and &6Blue Steel&r, with the &dLV Engine&r itself requiring actual &7LV&r components.\n\n&3&lTip:&r&o you can recycle the old upgrades using &bCrushing Wheels&f, returning some of your spent materials.", "quests.tfg_tips.lv_upgrades.task": "Any Low Voltage Tier Aircraft Upgrade", "quests.tfg_tips.mv_upgrades.title": "Aircraft Upgrades: MV", "quests.tfg_tips.mv_upgrades.subtitle": "Halfway there", - "quests.tfg_tips.mv_upgrades.desc": "Medium Voltage upgrades are the mid-point of Aircraft Upgrades, they require Aluminium as their main ingredient.\n\nThe Aluminium rotor are used in most Tier 2 Aircrafts, such as the Gyrodyne, Warship and the Scarlet Biplane, while the Medium Voltage Engine is used in the Scarlet Biplane.", + "quests.tfg_tips.mv_upgrades.desc": "&bMV&r upgrades are the mid-point of these upgrades, requiring &aAluminium&r as their main material.\n\n&aAluminium Rotors&r are used in most tier 2 aircrafts, such as the &dGyrodyne, Warship&r and the &dScarlet Biplane&r, while the &aMV Engine&r is only used in the &dScarlet Biplane.&r", "quests.tfg_tips.mv_upgrades.task": "Any Medium Voltage Tier Aircraft Upgrade", "quests.tfg_tips.hv_upgrades.title": "Aircraft Upgrades: HV", "quests.tfg_tips.hv_upgrades.subtitle": "Almost there", - "quests.tfg_tips.hv_upgrades.desc": "High Voltage upgrades are the penultimate point of Aircraft Upgrades, they require Stainless Steel as their main ingredient.", + "quests.tfg_tips.hv_upgrades.desc": "&6HV&r upgrades are the penultimate tier of aircraft upgrades, requiring &aStainless Steel&r as their main material.", "quests.tfg_tips.hv_upgrades.task": "Any High Voltage Tier Aircraft Upgrade", "quests.tfg_tips.ev_upgrades.title": "Aircraft Upgrades: EV", "quests.tfg_tips.ev_upgrades.subtitle": "Are these components even legal?", - "quests.tfg_tips.ev_upgrades.desc": "The Extreme Voltage upgrades are the last type of Aircraft Upgrades, they require Titanium as their main ingredient.", + "quests.tfg_tips.ev_upgrades.desc": "&5EV&r upgrades are the last tier of aircraft upgrades, requiring &aTitanium&r as their main material.", "quests.tfg_tips.ev_upgrades.task": "Any Extreme Voltage Tier Aircraft Upgrade", "quests.tfg_tips.aircraft_weapons.title": "Aircraft Weapons", "quests.tfg_tips.aircraft_weapons.subtitle": "For the great WAAAGH, of course", - "quests.tfg_tips.aircraft_weapons.desc": "In case you want to kill something very menacing, or just conquer your enemies, you can create Weapons which can be used for destroying or maiming mobs.\n\nEach weapon can be fired by using the Interact button while riding the Airplane, most of them (except for the Telescope) consume some sort of Ammo.", + "quests.tfg_tips.aircraft_weapons.desc": "In case you want to kill something very menacing, or just conquer your enemies, you can create &dWeapons&r which can be used for destroying or maiming mobs.\n\nEach weapon can be fired by using the &cInteract&r button while riding the &bAircraft.&r Most of them (except for the &aTelescope&r) consume some sort of &sAmmo.&r", "quests.tfg_tips.airship.title": "Airship", "quests.tfg_tips.airship.subtitle": "Baby's first Airship", - "quests.tfg_tips.airship.desc": "The Airship is an Aircraft that's relatively decent for travelling, it's main purpose however is to carry items around.\nThe Airship has a total of 16 Inventory Slots,1 Weapon Slot, and 3 Upgrade Slots.", + "quests.tfg_tips.airship.desc": "The &3Airship&r is an aircraft that's relatively decent for travelling. It's main purpose however is to carry items around.\nThe Airship has a total of &b16 Inventory Slots&r, &a3 Upgrade Slots&r and &c1 Weapon Slot.&r", "quests.tfg_tips.cargo_airship.title": "Cargo Airship", "quests.tfg_tips.cargo_airship.subtitle": "When you need to carry your entire base into the distance", - "quests.tfg_tips.cargo_airship.desc": "Attach some extra engines, rotors and 2 wooden crates and you'll upgrade your Airship into a Cargo Airship.\n\nThe Cargo Airship is more fuel hungry than its lesser counterpart.\n The Cargo Airship has a total of 80 Inventory Slots, and 4 Upgrade Slots.", + "quests.tfg_tips.cargo_airship.desc": "Attach some extra &dEngines, Rotors&r and &d2 Wooden Crates&r and you'll upgrade your &aAirship&r into a &3Cargo Airship.&r\n\nIt is &4more fuel hungry&r than its ordinary counterpart.\n The Cargo Airship has a total of &b80 Inventory Slots&r, and &a4 Upgrade Slots.&r", "quests.tfg_tips.waghship.title": "Warship", "quests.tfg_tips.waghship.subtitle": "Otherwise known as a WAAAAGH-Ship", - "quests.tfg_tips.waghship.desc": "The Warship is the last upgrade to the Airship, it contains a total of 66 Item Slots, 6 Upgrade Slots and 2 Weapon Slots.", + "quests.tfg_tips.waghship.desc": "The &3Warship&r is the last upgrade for the &aAirship&r, containing a total of &b66 Inventory Slots&r, &a6 Upgrade Slots&r and &c2 Weapon Slots.&r", "quests.tfg_tips.quadrocopter.title": "Quadrocopter", "quests.tfg_tips.quadrocopter.subtitle": "Not a Quadcopter", - "quests.tfg_tips.quadrocopter.desc": "The Quadrocopter is a very basic Hovercraft, it contains 6 Item Slots, a single Upgrade Slot and a single Weapon Slot.\n\nIt excels in simple controls and being able to use it for building.", + "quests.tfg_tips.quadrocopter.desc": "The &3Quadrocopter&r is a very basic &aHovercraft&r, containing &b6 Inventory Slots&r, a &asingle Upgrade Slot&r and a &csingle Weapon Slot.&r\n\nIt excels in simple controls, making it ideal for &ebuilding.&r", "quests.tfg_tips.gyrodyne": "Gyrodyne", - "quests.tfg_tips.gyrodyne.subtitle": "Muscle powered copter", - "quests.tfg_tips.gyrodyne.desc": "The Gyrodyne is a unique Aircraft, instead of consuming fuel, it's powered exclusively by muscle. As such, it consumes your Hunger.\n\nIt contains 18 Inventory Slots, 3 Upgrade Slots and 1 Weapon Slot", + "quests.tfg_tips.gyrodyne.subtitle": "Muscle-powered Copter", + "quests.tfg_tips.gyrodyne.desc": "The &3Gyrodyne&r is a unique aircraft, consuming no fuel, instead being powered exclusively by muscle. As such, it drains your &4Hunger&r.\n\nIt contains &b18 Inventory Slots&r, &a3 Upgrade Slots&r and &c1 Weapon Slot.&r", "quests.tfg_tips.economy_plane.title": "Economy Plane", - "quests.tfg_tips.economy_plane.subtitle": "Your first Plane... Not that great tho.", - "quests.tfg_tips.economy_plane.desc": "The Economy Plane is your very basic Plane. It's controlled utilizing Pitch and Yaw instead of Airships or Hovercrafts/Copters.\n\nIt has 4 Inventory Slots, and 4 Upgrade Slots.\nWhile slow, the Economy Plane, just like the Airship, can be Upgraded into better planes.", + "quests.tfg_tips.economy_plane.subtitle": "Your first Plane... Not that great though.", + "quests.tfg_tips.economy_plane.desc": "The &3Economy Plane&r is the most basic &bPlane.&r It's controlled using &opitch&r and &oyaw&r, unlike Airships, Hovercrafts and Copters.\n\nIt has &b4 Inventory Slots&r and &a4 Upgrade Slots.&r\nWhile slow, the &dEconomy Plane&r, just like the Airship, can be &2upgraded into better planes.&r", "quests.tfg_tips.biplane.title": "Biplane", "quests.tfg_tips.biplane.subtitle": "How come this is smaller than the Economy Plane?", - "quests.tfg_tips.biplane.desc": "The Biplane is a direct upgrade to the Economy Plane, crafted utilizing Hulls, Steam Boilers and an Enhanced Propeller.\n\nIt contians 16 Inventory Slots, 4 Upgrade Slots and 1 Weapon Slot. Unlike the Economy Plane, the Biplane can be Boosted utilizing Rockets.", + "quests.tfg_tips.biplane.desc": "The &3Biplane&r is a direct upgrade to the &bEconomy Plane&r, crafted using &aHulls, Steam Boilers&r and an &aEnhanced Propeller.&r\n\nIt contains &b16 Inventory Slots&r, &a4 Upgrade Slots&r and &c1 Weapon Slot.&r Unlike the &dEconomy Plane&r, the &3Biplane&r can be &4boosted using rockets via a dedicated slot.&r", "quests.tfg_tips.scarlet_biplane.title": "Scarlet Biplane", "quests.tfg_tips.scarlet_biplane.subtitle": "What a sight to behold", - "quests.tfg_tips.scarlet_biplane.desc": "The Scarlet Biplane is the final upgrade for Planes, Requiring HV components.\n\nIt contains 27 Inventory Slots, 4 Upgrade Slots, 2 Weapon Slots, and also a Booster Slot, just like the regular Biplane.\n\nWhile expensive, the Scarlet Biplane makes up for it with increased durability, increased max speed, and overall swag.", - "quests.tfg_tips.firmaciv.title": "FirmaCiv", + "quests.tfg_tips.scarlet_biplane.desc": "The &3Scarlet Biplane&r is the final upgrade for &bPlanes&r, requiring &6HV&r components.\n\nIt contains &b27 Inventory Slots&r, &a4 Upgrade Slots&r, &c2 Weapon Slots&r, and also a &4Booster Slot&r, just like the regular biplane.\n\nWhile expensive, the &3Scarlet Biplane&r makes up for it with increased durability, increased max speed, and overall swag.", + "quests.tfg_tips.firmaciv.title": "Firma: Civilization", "quests.tfg_tips.firmaciv.subtitle": "Sail across the seas, with style.", - "quests.tfg_tips.firmaciv.desc": "FirmaCiv is a mod all about boats and traversing large bodies of water. It can also be used for creating tools that help you position yourself in the world.", + "quests.tfg_tips.firmaciv.desc": "&2Firma: Civilization&r is a mod all about boats and traversing large bodies of water. It can also be used for creating tools that help you position yourself in the world.", "quests.tfg_tips.firmaciv_info.title": "Voyage Gadgets", "quests.tfg_tips.firmaciv_info.subtitle": "In case you care for realism", - "quests.tfg_tips.firmaciv_info.desc": "FirmaCiv comes with 4 different gadgets, each giving you important information about the position you are in the world.\n&lSextant&r: The Sextant is used to measure your latitude in the world.\n&lNavigator's Timepiece&r: The Navigator's Timepiece is used to measure your longitude in the world.\n&lBarometer&r: The Barometer is used to learn your Altitude, relative to the sea's level\n&lCompass&r: The Compass has a declination towards true north, and can be used to orient yourself.", + "quests.tfg_tips.firmaciv_info.desc": "&3FirmaCiv&r comes with 4 different navigational tools, each giving you important information about your position in the world.\nIncludes the &dSextant&r, &dNavigator's Timepiece&r, &dBarometer&r, and &dCompass&r; more information about the tools in the &2Field Guide.&r\n\n&3&lLore:&r&o: FirmaCiv by default removes coordinates to make you use its navigational tools. We can't do that here, so uh, use them if you want to LARP.", "quests.tfg_tips.warfare.title": "Sea Warfare", "quests.tfg_tips.warfare.subtitle": "FIRE ALL CANNONS!", - "quests.tfg_tips.warfare.desc": "You can craft both a Cannon and a Cannonball, in case you want to blow something to smithereens.\nTo fire a cannon, you'll need to load it with some Gunpowder, Unrefined Paper and place your Cannonball, afterwards, light the wick with a Flint and Steel", + "quests.tfg_tips.warfare.desc": "You can outfit your &bSloop&r with firepower via the &dCannon&r and cannon balls, in case you want to blow something to smithereens.\nTo fire a cannon, you'll need to load it with some &aGunpowder, Unrefined Paper&r and your &aCannon Ball&r. Then light the wick with &cFlint and Steel.&r", "quests.tfg_tips.kayak_beginning.title": "Boat 1: Kayak", "quests.tfg_tips.kayak_beginning.subtitle": "The only portable boat", "quests.tfg_tips.kayak_beginning.desc": "The kayak is a relatively simple boat to craft, while only one passenger can fit in it it makes up for it by being the only boat you can carry around with you.", @@ -1652,7 +2044,7 @@ "quests.tfg_tips.entity_boats.desc": "Entity type boats are unique compared to the Kayak, while the Kayak can be carried around as an item, Entity Type Boats such as Rowboats, Canoes and Sloops cannot be carried around as an Item. However, they have other upsides such as being able to fit multiple people, and also fit \"Compartments\", such as Chests, Barrels and Others.\nTo avoid your boat from drifting away into the horizon, you can leash them with a Lead, might be worth spending some time creating a Dock of sorts for your boats.\n\nWorth mentioning, most boats can receive damage if you traverse over harsh obstacles such as Corals, you can repair your boat by utilizing wood of the same type as your boat.", "quests.tfg_tips.beneathxfirmaciv.title": "Disclaimer regarding Beneath and Firmaciv", "quests.tfg_tips.beneathxfirmaciv.subtitle": "Read this, otherwise you may regret it", - "quests.tfg_tips.beneathxfirmaciv.desc": "While you can create Firmaciv Entity Boats out of Crimson and Warped stems, boats made out of these fireproof logs &oARE NOT&r resistant to lava! If you try to traverse a lava lake with these you &oWILL&r sink and die a horrible death!", + "quests.tfg_tips.beneathxfirmaciv.desc": "While you can create &aFirmaciv Entity Boats&r out of &dCrimson&r and &3Warped Stems&r, boats made out of these fireproof logs &4ARE NOT&r resistant to lava! If you try to traverse a lava lake with these you &lwill&r sink and die a horrible death!", "quests.tfg_tips.canoe_beginning.title": "Boat 2: Canoe", "quests.tfg_tips.canoe_beginning.subtitle": "Primitive", "quests.tfg_tips.canoe_beginning.desc": "The Canoe is a type of boat that can fit one passenger or compartment. It's made out of soft wood and can be created relatively easily at the cost of some basic tools and time.", @@ -1686,149 +2078,153 @@ "quests.tfg_tips.create_sloop.desc": "With the Sloop, traversing large sized bodies of water should be relatively easy. To make sure you dont end up at the mercy of the wind you can lower your Anchor to stop in place.\nYou can also dye your rowboat's color with a dye of your choice!\n\nTo complete the task of this quest, you need to look at any finished Sloop.", "quests.tfg_tips.firmalife.title": "Firmalife", "quests.tfg_tips.firmalife.subtitle": "Thrive in TerraFirmaCraft", - "quests.tfg_tips.firmalife.desc": "Firmalife is a mod all about making your experience in TerraFirmaCraft more enjoyable, containing things such as decorations, preservation, new foods, bees and a plethora of useful gadgets.", + "quests.tfg_tips.firmalife.desc": "&2Firmalife&r is a mod all about extending the agricultural and gastronomic experience in TerraFirmaCraft, with touches of miscellaneous features. Includes things such as decorations, more preservation methods, new foods, bees and a plethora of useful gadgets!", "quests.tfg_tips.greenhouse.title": "Greenhouse", "quests.tfg_tips.greenhouse.subtitle": "Grow your crops 24/7!", - "quests.tfg_tips.greenhouse.desc": "The Greenhouse is a complex multiblock structure that can be utilized to grow crops all year round. You can check out it's entry in the Field Guide for more information!", + "quests.tfg_tips.greenhouse.desc": "The &dGreenhouse&r is a complex multiblock structure with multiple tiers, used to grow crops all year round at the expense of yield. Check out its entry in the &2Field Guide&r for more information!", "quests.tfg_tips.beekeeping.title": "Beekeeping", "quests.tfg_tips.beekeeping.subtitle": "They're so small now...", - "quests.tfg_tips.beekeeping.desc": "Beekeeping can be used for a plethora of things, not only can bees polinate nearby crops, you'll be able to also obtain Wax and Honey", + "quests.tfg_tips.beekeeping.desc": "&bBeekeeping&r has a plethora of uses. Not only do bees fertilize nearby crops (assuming you have the correct trait), you will be able to obtain useful resources such as &aWax&r and &aHoney.&r Breed bees to achieve better stats.\nThe &2Field Guide&r offers an extensive explanation of all &bbeekeeping&r mechanics.", "quests.tfg_tips.beehive.title": "Beehive", "quests.tfg_tips.beehive.subtitle": "Time for some rng...", - "quests.tfg_tips.beehive.desc": "To begin your journey as a beekeeper, you'll need both a Beehive and a Beehive Frame.\nUnlike in regular minecraft, Bees do not spawn naturally, and bees can only spawn from beehives with frames populated by queens. The chance for a queen to populate your frame is tied to RNG, but you can increase your odds by placing flowers around the hive.\n\nOnce your frames is populated, it'll begin spawning bees which will pollinate surrounding crops and produce honey.\n\nQueen Bees have &lGenes&r, these Genes can be used to improve your bees over the course of days, if a hive contains at least 2 queens and an empty frame, a new queen will eventually populate the empty frame. More information regarding genes can be read at the Field Guide.", + "quests.tfg_tips.beehive.desc": "To begin your journey as a beekeeper, you'll need both a &bBeehive&r and a &aBeehive Frame.&r\nUnlike regular Minecraft, hives do not spawn naturally, instead bees only spawn in player-made &bBeehives&r with frames populated by &eQueens.&r The chance for a queen to populate your frame is tied to RNG, but you can increase your odds by placing &dflowers&r around the hive.\n\nOnce your frames is populated, it'll begin spawning bees which will produce honey.", "quests.tfg_tips.not_the_bees.title": "Beekeeper Armor", "quests.tfg_tips.not_the_bees.subtitle": "NOT THE BEES!", - "quests.tfg_tips.not_the_bees.desc": "The bees aren't so friendly and don't like it when people harvest their precious honey. There are three ways to harvest honey and wax from beehives.\n\n&lNight Time&r: Bees sleep during the night, which means you can harvest honey from them without suffering from a swarm.\n&lCampfire&r: Utilizing a campfire below the hive and lighting it on fire, the bees will be smoked, incapacitating them from attacking you.\n&lBeekeeper Armor&r: Probably the best option, you can also craft Beekeeper Armor, as long as you have all four pieces equiped, Bees will not be able to attack you.", + "quests.tfg_tips.not_the_bees.desc": "The bees don't like it when people disrupt them and harvest their precious honey and wax. There are three ways to do it safely:\n&dHarvesting at night time&r\n&dUsing a campfire&r.\n&dUsing Beekeeper Armor&r", "quests.tfg_tips.not_the_bees.task": "I'll use either the Campfire or wait for Nightfall.", "quests.tfg_tips.honey.title": "Honey", "quests.tfg_tips.honey.subtitle": "Oh bother...", - "quests.tfg_tips.honey.desc": "With an Empty Jar, you can right click a hive filled with honey to obtain a Honey Jar. Honey is an excelent natural sweetner.", + "quests.tfg_tips.honey.desc": "With an &aEmpty Jar&r made from &bglassblowing&r, you can right-click a hive filled with honey to obtain a &dHoney Jar.&r Honey is an excellent sugar substitute.", "quests.tfg_tips.beeswax.title": "Beeswax", "quests.tfg_tips.beeswax.subtitle": "A worthy sacrifice", - "quests.tfg_tips.beeswax.desc": "If you right click a Beehive Frame that has a Queen Bee, the Queen Bee will be sacrificed and in exchange you'll obtain one Beeswax.\n\nProtip: You can sacrifice Queens that have bad or lower genetic traits to encourage better traits over time.", + "quests.tfg_tips.beeswax.desc": "If you right-click a &aFrame&r that houses a &bQueen Bee&r with a &cKnife&r, you will clear out the frame, killing the queen, and obtain &dWax.&r\n\n&3&lTip:&r&o You can sacrifice &bQueens&f with bad or lower traits to encourage breeding better traits over time, as the other frames will fill out the missing one using their own traits.", "quests.tfg_tips.candles.title": "Candles", "quests.tfg_tips.candles.subtitle": "Cozy...", - "quests.tfg_tips.candles.desc": "While all candles can be created with Paraffin Wax or Rosin, Creating candles with Beeswax is probably the easiest method if you get lucky with bee RNG.\nCandles are good light source when compared to Torches, unlike Torches, Candles will stay lit for 1 month and 2 days.", + "quests.tfg_tips.candles.desc": "Candles can be crafted using &aParaffix Wax, Beeswax&r or &aRosin.&r\nCandles are the better light source compared to torches, staying lit for 1 month and 2 days.", "quests.tfg_tips.oven.title": "Oven", - "quests.tfg_tips.oven.subtitle": "Caution, it's hot.", - "quests.tfg_tips.oven.desc": "The Oven is a multipurpose block that can be used to easily heat and cook items. The bottom oven accepts logs as fuel, the top oven can be used to cook food, while the chimney is necesary to vent out the smoke that rises from the logs. And the Peel is used for peeling off items from the Top Oven\n\nMore information on how to craft an oven can be found in the Field Guide.", + "quests.tfg_tips.oven.subtitle": "Caution, it's hot", + "quests.tfg_tips.oven.desc": "The &3Oven&r is a multiblock structure that can be used to easily cook foods as well as perform exclusive recipes. The &aBottom Oven, Top Oven&r and the the &aChimney&r are mandatory components. And don't forget the &dPeel&r, used for picking up food from the &aTop Oven.&r\nMore information on how to build an &3Oven&r can be found in the &2Field Guide.&r\n\n&3&lTip:&r&o: the only food that can satisfy all 5 nutrient groups, &cPizza&f, must be cooked in an oven.", "quests.tfg_tips.oven_appliances.title": "Oven Appliances", "quests.tfg_tips.oven_appliances.subtitle": "Get more out of your Ovens", - "quests.tfg_tips.oven_appliances.desc": "Oven appliances are blocks that can be placed on top of Bottom Ovens and recieve their heat from them. There are a couple that can be used that arent listed as tasks here:\n\n&lWrought Iron Grill&r: Allows you to grill food, food grilled in this receives a preservation bonus.\n&lVat&r: The Vat is a special block that can process Pot recipes in bulk\n&lJarring Station&r: If placed next to a vat, it can be used to fill jars in bulk with Jams.\n&lPot&r: You can also use Pots if you need to cook soups.", + "quests.tfg_tips.oven_appliances.desc": "&dOven Appliances&r are optional components that must be placed on top of &aBottom Ovens&r to receive heat. Remember you can have multiple &aBottom Ovens&r in a single multiblock.\n\n&dWrought Iron Grill&r: Allows you to cook food at a much faster rate and provides a &dpreservation&r trait as a bonus.\n&dVat&r: can process pot recipes in bulk! Extremely useful for making &eLatex&r and &aJam.&r\n&dJarring Station&r: must be place next to a &bVat&r, fills up jars with &aJam.&r\n&dPot&r: if you need to cook soups.", "quests.tfg_tips.oven_finish.title": "Oven Finishes", "quests.tfg_tips.oven_finish.subtitle": "Fancy", - "quests.tfg_tips.oven_finish.desc": "In case the look of Clay Bricks dont suit you, you can apply Finishes to your Top, Bottom and Chimney blocks. These will change the look of your block.", + "quests.tfg_tips.oven_finish.desc": "In case the look of clay bricks don't suit you, you can apply &bFinishes&r to most oven components to change the look of your multiblock.", "quests.tfg_tips.oven_finish.task": "Any Oven Finish", "quests.tfg_tips.oven_utils.title": "Oven Utilities", - "quests.tfg_tips.oven_utils.subtitle": "You may want these.", - "quests.tfg_tips.oven_utils.desc": "The Ashtray is a block that's placed below a Bottom Oven. When fuel is consumed, there's a small chance for Wood Ash to be collected by the Ash Tray. Ash is extracted when you interact with the tray and placed when you attack the tray.\n\nThe Oven Hopper inputs logs into any Bottom Oven that it is facing. It can be automatically filled via automation from other mods as well.", + "quests.tfg_tips.oven_utils.subtitle": "You may want these", + "quests.tfg_tips.oven_utils.desc": "The &dAsh Tray&r, placed below a &aBottom Oven&r, has a chance to collect &cWood Ash&r from burning logs. Right-click to get out the ash.\n\nThe &dOven Hopper&r inserts logs into a &bBottom Oven&r facing it, useful for automation.", "quests.tfg_tips.jam.title": "Jam", "quests.tfg_tips.jam.subtitle": "Not Jelly", - "quests.tfg_tips.jam.desc": "Jams are an excellent form of preserving fruits, a sealed jar of jam can last up to two years without being opened.\n\nTo properly bottle the jam you'll require a Jar with Lid. The lid itself is crafted out metal, with different metals yielding bigger amounts of lids. To open a Sealed Jar of Jam, interact with the Sealed Jar while sneaking, there's a chance that a dirty lid will appear alongside your opened jar of jam. The dirty lid can be then washed by soaking it in a barrel filled with water.", + "quests.tfg_tips.jam.desc": "&dJam&r is an excellent way to preserve fruit: a &bSealed Jar of Jam&r can last up to &ctwo years&r without being opened.\n\nTo properly bottle the jam you will need a &aJar with Lid&r, requiring &bGlassblowing&r for the jar itself and &bSmithing&r for the lids.\n\n&3&lTip:&r&l &aGT machines&f will provide easier recipes for these down the line.", "quests.tfg_tips.preservation.title": "The Preservation Tree", "quests.tfg_tips.preservation.subtitle": "Making food last longer", - "quests.tfg_tips.preservation.desc": "As you may have already known, Food can &orot&r over time, and rotten food is not fit for consumption. Being able to thrive in TerraFirmaGreg will imply having to find ways to stretch the shelflife of food as far as possible.\n\nThe tree above this quest goes into details on how to preserve the main 5 types of raw nutrients in TerraFirmaCraft. Note that while some icons may show rotten food, this is purely a cosmetic issue.\n\nWorth mentioning, all preservation modifiers &lstack&r on top of each other.", - "quests.tfg_tips.brine_something.title": "General Preservation: Brining", - "quests.tfg_tips.brine_something.subtitle": "General Preservation NΒ°2", - "quests.tfg_tips.brine_something.desc": "Brining either raw meat, a vegetable or a fruit can increase it's shelflife.", + "quests.tfg_tips.preservation.desc": "Rotten food is not fit for consumption (you can feed it to pigs though!). Thriving in &2TFG&r will require finding ways to stretch the shelf life of food as much as possible.\n\nThe quest tree above goes into detail on several preservation methods for different foods. Note that while some icons may display rotten food, it is a purely cosmetic bug.\n\n&3&lTip:&r&o all preservation modifiers &dstack&f on top of each other, allowing you to achieve very long shelf life.", + "quests.tfg_tips.brine_something.title": "Brining", + "quests.tfg_tips.brine_something.subtitle": "A preliminary step for other preservation methods", + "quests.tfg_tips.brine_something.desc": "Brining &araw meat, vegetables&r or &afruit&r, requiring &dBrine&r made from &bSea Water&r and &bVinegar.&r This is a precursor step for &3pickling&r and &3smoking.&r", "quests.tfg_tips.brine_something.tasks.1": "Meat, vegetable or fruit that has been brined.", "quests.tfg_tips.brine_something.tasks.2": "A Bucket of Brine", "quests.tfg_tips.pickle_something.title": "General Preservation: Pickling", "quests.tfg_tips.pickle_something.subtitle": "General Preservation NΒ°3", - "quests.tfg_tips.pickle_something.desc": "Pickling either raw meat, a vegetable or a fruit can increase it's shelflife. Once an item is pickled it can be left in a barrel filled with Vinegar, which gives it the \"Pickled\" preservation as long as the barrel is closed.", + "quests.tfg_tips.pickle_something.desc": "Pickling &araw meat, vegetables&r or &afruit&r. After &3brining&r, the food item is pickled in a barrel full of &aVinegar.&r It can be left there, giving it the &dPickled&r preservation trait for as long as the barrel is sealed, significantly increasing shelf life.", "quests.tfg_tips.pickle_something.tasks.1": "A Bucket of Vinegar", "quests.tfg_tips.pickle_something.tasks.2": "Meat, vegetable or fruit that has been pickled.", "quests.tfg_tips.get_milk.title": "Milk Preservation", "quests.tfg_tips.get_milk.subtitle": "Got milk?", - "quests.tfg_tips.get_milk.desc": "Milk can be obtained from at least 3 different animals, Cows, Goats and Yaks.\nWhile milk can be drank as is, it can also be processed into delicious cheese.\n\nTo complete this quest, get any bucket type filled with the milk of your choosing.", + "quests.tfg_tips.get_milk.desc": "&dMilk&r can be obtained from 3 different animals: &aCows, Goats&r and &aYaks.&r\nWhile milk can be drank as is to satisfy &bDairy&r requirements, it can also be processed into delicious cheese.\n\nTo complete this quest, get a bucket filled with any milk of your choosing.", "quests.tfg_tips.get_milk.task": "Any Bucket of Milk", "quests.tfg_tips.create_cheese.title": "Milk Preservation: Cheese", "quests.tfg_tips.create_cheese.subtitle": "Cheesy", - "quests.tfg_tips.create_cheese.desc": "Milk can be processed into Cheese Wheels, Cheese Wheels can then be placed and cut with a knife to obtain cheese slices.\n\nInformation on how to create cheeses can be found in the Field Guide", + "quests.tfg_tips.create_cheese.desc": "&aMilk&r can be processed into &dCheese Wheels&r, which can be placed in world for storage or cut with a &aKnife&r to obtain &dCheese Slices.&r\n\nInformation on how to make cheeses can be found in the &2Field Guide.&r", "quests.tfg_tips.cheese_aging.title": "Milk Preservation: Cheese Aging", "quests.tfg_tips.cheese_aging.subtitle": "Stinky", - "quests.tfg_tips.cheese_aging.desc": "If you have a cellar, you can place down the Cheese Weel to age, aging takes time but dramatically increases the shelflife of the Cheese. Do not break the cheese with your hands, otherwise all the aging will be lost!", + "quests.tfg_tips.cheese_aging.desc": "If you built a &3Cellar&r, you can place down &aCheese Wheels&r to age inside. Aging takes time but dramatically increases the shelf life. &lDo not break the cheese with your hands, otherwise all the aging will be lost!&r", "quests.tfg_tips.smoke_cheese.title": "Milk Preservation: Smoke the Cheese", "quests.tfg_tips.smoke_cheese.subtitle": "Improved flavour profile", - "quests.tfg_tips.smoke_cheese.desc": "You can hang a slice of cheese in a string that's over a lit Campfire to smoke it.", + "quests.tfg_tips.smoke_cheese.desc": "You can hang a &aCheese Slice&r on a &bString&r that's placed over a &cLit Campfire&r to smoke it.", "quests.tfg_tips.smoke_cheese.task": "A slice of Smoked Cheese", "quests.tfg_tips.get_meat.title": "Meat Preservation", - "quests.tfg_tips.get_meat.subtitle": "Don't beat it.", - "quests.tfg_tips.get_meat.desc": "Most animals drop meat which is an excellent source of protein, although it's shelf-life is short when left raw.\n\nMeats can be pickled and brined, altho these steps must happen &obefore&r they're cooked.", + "quests.tfg_tips.get_meat.subtitle": "Don't beat it", + "quests.tfg_tips.get_meat.desc": "Most animals drop &aMeat&r which is an excellent source of protein, although it's shelf life is extremely short when left raw.\n\n&bRaw Meat&r can be salted, pickled and smoked, but these steps must happen &cbefore&r cooking.", "quests.tfg_tips.salt_meat.title": "Meat Preservation: Salt", "quests.tfg_tips.salt_meat.subtitle": "Not quite a jerky", - "quests.tfg_tips.salt_meat.desc": "Salting meat is a quick and relatively easy way to preserve it, Salt licks can be found in forests, alternatively, you can boil Salt Water to obtain salt if you live near an Ocean.", + "quests.tfg_tips.salt_meat.desc": "&bSalting&r meat is a quick and relatively easy way to preserve it. &dSalt&r can be obtained from &aSalt Licks&r, from &aindicators&r above salt veins, from &aSalt Veins&r themselves and alternatively, you can &aboil&r salt water in a &3Pot.&r", "quests.tfg_tips.salt_meat.task": "A hunk of Salted Meat", "quests.tfg_tips.smoke_meat.title": "Meat Preservation: Smoking", "quests.tfg_tips.smoke_meat.subtitle": "Smokey", - "quests.tfg_tips.smoke_meat.desc": "You can hang a slice of raw meat in a string that's over a lit Campfire to smoke it. Keep in mind that the meat MUST be salted first.", + "quests.tfg_tips.smoke_meat.desc": "You can hang up to 8 slices of &aRaw Meat&r on a &bString&r that's placed over a &cLit Campfire&r to smoke it. Keep in mind that the meat &lmust be brined first.&r \nIt may also be &dsalted&r before smoking.", "quests.tfg_tips.smoke_meat.task": "A hunk of Smoked Meat", "quests.tfg_tips.cook_meat.title": "Meat Preservation: Cooking", "quests.tfg_tips.cook_meat.subtitle": "Pretty obvious in hindsight.", - "quests.tfg_tips.cook_meat.desc": "The easiest way to preserve meat is by cooking it. You should cook it either utilizing a Wrought Iron Grill or a Top Oven, trying to cook the meat in things like a Forge or Furnaces will give it bad preservation modifiers, lowering their shelflife instead!", + "quests.tfg_tips.cook_meat.desc": "Cooking can potentially provide its own preservation traits. You should cook &aMeat&r either in a &bWrought Iron Grill&r or a &bTop Oven!&r\nOther cooking methods may not provide any trait at all or even give negative traits that lower shelf life.\n\n &3&lTip:&r&o wrought iron grills can be part of the &dOven&f structure.", "quests.tfg_tips.cook_meat.tasks.1": "A hunk of either Grilled or Oven Baked Cooked Meat.", "quests.tfg_tips.cook_meat.tasks.2": "A Wrought Iron Grill or a Top Oven", "quests.tfg_tips.get_veggie.title": "Vegetable Preservation", "quests.tfg_tips.get_veggie.subtitle": "They're good for you", - "quests.tfg_tips.get_veggie.desc": "Vegetables are mostly found in the wild or grown locally in farms. They can only be Brined and Pickled.", + "quests.tfg_tips.get_veggie.desc": "&aVegetables&r are mostly found in the wild or grown locally in farms. They can only be &bPickled.&r", "quests.tfg_tips.get_fruit.title": "Fruit Preservation", "quests.tfg_tips.get_fruit.subtitle": "Tasty!", - "quests.tfg_tips.get_fruit.desc": "Fruits are mostly found in the wild, grown locally or harvested from Trees and Bushes. Unlike Vegetables, Fruits have their own preservation modifier, drying.", + "quests.tfg_tips.get_fruit.desc": "&aFruits&r are mostly found in the wild, harvested from &bTrees, Bushes&r and from slicing &bMelons&r and &bPumpkins.&r Unlike vegetables, fruits have a unique preservation modifier: &ddrying&r, in addition to &bpickling.&r\n Dried fruits are &cnecessary&r for making your first bit of &dYeast.&r", "quests.tfg_tips.dry_fruit.title": "Fruit Preservation: Drying", "quests.tfg_tips.dry_fruit.subtitle": "Water content basically zero", - "quests.tfg_tips.dry_fruit.desc": "Utilizing a Drying mat you can dry fuits, increasing their shelflife. You can also utilize a Solar Drier, which dries the fruit considerably faster.", + "quests.tfg_tips.dry_fruit.desc": "Using a &3Drying Mat&r, you can dry fuits, increasing their shelf life. The &3Solar Drier&r is the more advanced option.", "quests.tfg_tips.dry_fruit.task.1": "A piece of Fruit that has been Dried", "quests.tfg_tips.dry_fruit.task.2": "A Drying Mat or a Solar Drier", "quests.tfg_tips.get_grain.title": "Grain Preservation", "quests.tfg_tips.get_grain.subtitle": "Carbohydrates", - "quests.tfg_tips.get_grain.desc": "Grains are relativley abundant and easy to grow locally. While the regular raw grain may not last long there are easy ways on increasing its shelflife dramatically.", + "quests.tfg_tips.get_grain.desc": "&aGrains&r are relatively abundant and easy to grow locally. While the regular unprocessed grain may not last long, there are ways of increasing its shelf life dramatically.", "quests.tfg_tips.get_grain.task": "Any Grain", "quests.tfg_tips.process_grain.title": "Grain Preservation: Knife Processing", "quests.tfg_tips.process_grain.subtitle": "That was easy.", - "quests.tfg_tips.process_grain.desc": "By combining a Grain with a Knife in a Workbench, you'll get both Thatch and the loose pieces of the grain, these loose pieces can last up to a year.", + "quests.tfg_tips.process_grain.desc": "By crafting &aGrain Crops&r with a Knife in a Workbench, you will get the actual &dGrain&r, which is long lasting, and some straw.", "quests.tfg_tips.passive_preservation.title": "Passive Preservation", - "quests.tfg_tips.passive_preservation.subtitle": "When modifiers aren't enough", - "quests.tfg_tips.passive_preservation.desc": "There are different ways to further preserve your food, above are three very good choices.", - "quests.tfg_tips.vessel_preservation.title": "General Preservation: Large Vessels", + "quests.tfg_tips.passive_preservation.subtitle": "Turns out storing food on the floor is not ideal", + "quests.tfg_tips.passive_preservation.desc": "There are different ways to further preserve your food while storing it, above are three very good choices.", + "quests.tfg_tips.vessel_preservation.title": "General Preservation: Vessels", "quests.tfg_tips.vessel_preservation.subtitle": "Better than just glorified backpacks.", - "quests.tfg_tips.vessel_preservation.desc": "Placing food in a Vessel then sealing it gives it the \"Sealed\" preservation modifier, increasing it's shelflife.", + "quests.tfg_tips.vessel_preservation.desc": "Placing food in either a &aVessel&r or a &aLarge Vessel&r, remembering to seal the latter, provides the &dSealed&r preservation trait, increasing shelf life on the go. Perfect for exploration trips!", "quests.tfg_tips.cellar.title": "Cellar", - "quests.tfg_tips.cellar.subtitle": "Its not a basement", - "quests.tfg_tips.cellar.desc": "The cellar is a multiblock structure that can be used to preserve a myriad of items, utilizing food shelves and hanging racks. You can also age cheeses in here.", + "quests.tfg_tips.cellar.subtitle": "Mom's Basement", + "quests.tfg_tips.cellar.desc": "The &3Cellar&r is a multiblock structure that can be used to preserve food for long periods of time. Food here must be stored in &aFood Shelves&r and &aHanging Racks.&r You can also &bage cheese&r in here.\nCheck out the &2Field Guide&r for how to build the &3Cellar.&r", "quests.tfg_tips.cellar.task": "Any form of sealed entry.", "quests.tfg_tips.refrigerator.title": "Refrigerator", "quests.tfg_tips.refrigerator.subtitle": "This thing may be overpowered", - "quests.tfg_tips.refrigerator.desc": "If you've advanced up to the Low Voltage Age, you can create a refrigerator, it consumes power in exchange for GREATLY improving the shelflife of food inside of it.", - "quests.tfg_tips.cellar_blocks.title": "Cellar Blocks", + "quests.tfg_tips.refrigerator.desc": "If you have advanced to the &7LV&r age, you can make a &dRefrigerator&r, consuming power in exchange for the &obest&r universal food preservation trait for all food items. This including raw and cooked food, and combined food like sandwiches.", + "quests.tfg_tips.cellar_blocks.title": "Cellar Storage", "quests.tfg_tips.cellar_blocks.subtitle": "Stuff to put your food in", - "quests.tfg_tips.cellar_blocks.desc": "Food Shelves can be used to store virtually any kind of food, while Hangers can be used to store Meats and Garlic. Food items in these blocks recieve a relatively powerful preservation modifier that's better than vessels.", + "quests.tfg_tips.cellar_blocks.desc": "&bFood Shelves&r can be used to store virtually any kind of food. &bHangers&r can be used to store &aMeat&r and &aGarlic.&r Food stored in these recieve a powerful preservation trait greater than that of &dVessels.&r", "quests.tfg_tips.beneath.title": "The Beneath", - "quests.tfg_tips.beneath.subtitle": "What's this \"Nether\" you speak of?", - "quests.tfg_tips.beneath.desc": "Deep, DEEP underground, past the bedrock, you'll find The Beneath, a complex network of caves filled with dangers and relatively strange flora and fauna. While the beneath is completely optional, it contains a lot of things that could be considered Quality of Life improvements.", + "quests.tfg_tips.beneath.subtitle": "Journey to the Center of the Earth", + "quests.tfg_tips.beneath.desc": "Deep, DEEP underground, past the &dBedrock&r, you'll find &4The Beneath&r, a complex network of huge caves filled with dangers and strange flora and fauna. While &4The Beneath&r is completely optional, it contains a lot of resources as well as some quality of life improvements.", "quests.tfg_tips.beneath_prep.title": "Preparations", - "quests.tfg_tips.beneath_prep.subtitle": "The Beneath is Hostile, better be prepared", - "quests.tfg_tips.beneath_prep.desc": "The Beneath is a very, VERY hostile environment, due to it being very deep underground the average temperature is always above 15Β°C, going higher as you go deeper. Not to mention the amount of hostile creatures overall.\nThe quests below this one provide basic preparations for your adventure.", + "quests.tfg_tips.beneath_prep.subtitle": "The Beneath is hostile, be prepared", + "quests.tfg_tips.beneath_prep.desc": "&4The Beneath&r is a very hostile environment. Due to it being very deep underground, the average temperature is always &cabove 15Β°C&r, going higher the deeper you go. This is not to mention the amount of hostile creatures crawling these caves.\nThe quests linked with this one provide some basic preparations for your adventure.", "quests.tfg_tips.beneath_temp_management.title": "Temperature Management: Active", "quests.tfg_tips.beneath_temp_management.subtitle": "Things to cool off quickly", - "quests.tfg_tips.beneath_temp_management.desc": "In the beneath, while the temperature is relatively high, its not high enough to immediatly evaporate nearby sources of Water. As such, you should bring some Water to cool off on demand, or some Packed Ice.\n\nYou can harvest Packed Ice using a Saw, or obtain it by cooling water down in a barrel.", + "quests.tfg_tips.beneath_temp_management.desc": "In &4The Beneath&r, with the temperature being relatively high, you should bring some &aWter&r to cool off on demand, or some &bPacked Ice&r mined from polar regions if you plan to make a temporary base.", "quests.tfg_tips.beneath_clothes.title": "Temperature Management: Passive", "quests.tfg_tips.beneath_clothes.subtitle": "Things to passively cool off", - "quests.tfg_tips.beneath_clothes.desc": "Clothes can also play an important role to cool off. The easiest cloth type to craft before going to the Beneath are Burlap Clothes.\n\nSilk Clothes require String, which can be found inside a Beneath Biome called the Webbed Lair.\n\nThere is a better alternative if you have access to Blue Steel however.", + "quests.tfg_tips.beneath_clothes.desc": "&bClothes&r can also play an important role to cool off. The easiest to craft before going to &4The Beneath&r are &dBurlap Clothes.&r\n\n&dSilk Clothes&r require &aString&r, which can be found in large quantities inside the beneath biome called the &cWebbed Lair.&r\n\nThere is a better alternative if you have access to &9Blue Steel&r however...", "quests.tfg_tips.blue_steel_diving.title": "Blue Steel Diving Gear", - "quests.tfg_tips.blue_steel_diving.subtitle": "Perfect for taking a warm bath in a Lava Lake", - "quests.tfg_tips.blue_steel_diving.desc": "The Blue Steel Diving Gear is a special set of armor that makes you completely impervious to Lava while you're wearing it. The reduced Warmth but high Insulations means you'll be able to keep a very stable core temperature while in the Beneath.", + "quests.tfg_tips.blue_steel_diving.subtitle": "Perfect for taking a warm, lava bath", + "quests.tfg_tips.blue_steel_diving.desc": "The &9Blue Steel Diving Gear&r is a special set of armor that makes you completely impervious to &cLava&r while you're wearing it. The reduced &aWarmth&r but high &bInsulation&r means you'll be able to keep a very stable core temperature while in &4The Beneath.&r", "quests.tfg_tips.juicer.title": "Juicer", "quests.tfg_tips.juicer.subtitle": "Hydration on a Pinch", - "quests.tfg_tips.juicer.desc": "The Juicer is a special item that can extract the latent humidity of Fruits and Mushrooms into drinkable water.\n\nWater is only common in the upper layers of the beneath, as you go lower, it'll be increasingly scarce. However, mushrooms are very common in the Beneath, so you can juice them in the Juicer to get some drinkable Water.", + "quests.tfg_tips.juicer.desc": "The &3Juicer&r is a special item that can extract the latent humidity of &aFruits&r and &aMushrooms&r into drinkable &dWater.&r\n\nWater is only common in the upper layers of &4The Beneath&r. As you go lower, it will be increasingly scarce. However, &aMushrooms&r are very common in &4The Beneath&r, so you won't die of thirst, hopefully!", "quests.tfg_tips.how_to_go_beneath.title": "How to go to The Beneath", "quests.tfg_tips.how_to_go_beneath.subtitle": "No Obsidian Required", - "quests.tfg_tips.how_to_go_beneath.desc": "The Beneath is located deep, deep underground. Past the overworld's layer of Bedrock.\n\nTo reach the Beneath, you'll have to stand on the Overworld's bedrock for a couple of seconds, Dimensional Forces will bring you to the Beneath.", + "quests.tfg_tips.how_to_go_beneath.desc": "To reach &4The Beneath&r, you will have to stand on the &bOverworld Bedrock&r for a couple of seconds, after which you will be &oteleported&r to &4The Beneath.&r\n\n&3&lTip:&r&o Make sure to dig out a large space above the bedrock where you'll be standing, so when you get teleported back to the Overworld, the game won't send you in some random cave while it's trying to search for enough air blocks.", "quests.tfg_tips.how_to_go_beneath.task.1": "Reach and Stand on top of Bedrock", "quests.tfg_tips.how_to_go_beneath.task.2": "Visit the Beneath", "quests.tfg_tips.reach_the_beneath.title": "Welcome, to The Depths", "quests.tfg_tips.reach_the_beneath.subtitle": "Otherwise known as The Beneath", - "quests.tfg_tips.reach_the_beneath.desc": "As soon as you reach The Beneath, you should mark your Point of Entry. Traveling in the Beneath is no faster than traveling in the Overworld. So marking your entry position can be used to quickly go back where you came from.", + "quests.tfg_tips.reach_the_beneath.desc": "As soon as you reach &4The Beneath&r, you should make a &cwaypoint&r using your map so you don't lose your way back.\n\nUnlike the vanilla Nether, there is no 8x distance multiplier, don't be using it for fast Overworld travel!", + "quests.tfg_tips.reach_the_beneath.task": "Be in the Beneath", "quests.tfg_tips.fuck_go_back.title": "How to escape The Beneath", "quests.tfg_tips.fuck_go_back.subtitle": "Mom come pick me up, I'm scared.", - "quests.tfg_tips.fuck_go_back.desc": "To escape The Beneath, you need to reach the upper levels of the cave system, near it's ceiling of Bedrock. Staying still for a couple of seconds near the roof will transport you back to the Bedrock layer of the Overworld." + "quests.tfg_tips.fuck_go_back.desc": "To escape &4The Beneath&r, you need to reach the upper levels of the cave system, near the &dBedrock Ceiling.&r Staying still for a couple of seconds near the roof will transport you back to the &bOverworld&r, right where you stood on to get in.", + "quests.tfg_tips.piglin_bartering.title": "Piglin Bartering", + "quests.tfg_tips.piglin_bartering.subtitle": "We are not alone apparently", + "quests.tfg_tips.piglin_bartering.desc": "The curious inhabitants of &4The Beneath&r have items to offer... Trade gold with them to get some useful resource, such as small amounts of &aMetals&r or &aLeather.&r\nCheck out the &2Field Guide&r for details about barter trades." } \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/ev_universal_circuit.json b/kubejs/assets/tfg/models/item/ev_universal_circuit.json new file mode 100644 index 000000000..cad7c45dd --- /dev/null +++ b/kubejs/assets/tfg/models/item/ev_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/ev_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/brass_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/brass_fishing_net.json new file mode 100644 index 000000000..caf81105f --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/brass_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/brass_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/cupronickel_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/cupronickel_fishing_net.json new file mode 100644 index 000000000..8ac26c3d1 --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/cupronickel_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/cupronickel_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/invar_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/invar_fishing_net.json new file mode 100644 index 000000000..9332dba0c --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/invar_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/invar_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/magnalium_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/magnalium_fishing_net.json new file mode 100644 index 000000000..b6f4380e5 --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/magnalium_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/magnalium_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/rose_gold_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/rose_gold_fishing_net.json new file mode 100644 index 000000000..a11e9eaca --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/rose_gold_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/rose_gold_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/sterling_silver_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/sterling_silver_fishing_net.json new file mode 100644 index 000000000..d387f1da0 --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/sterling_silver_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/sterling_silver_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/tin_alloy_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/tin_alloy_fishing_net.json new file mode 100644 index 000000000..b5cd7312e --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/tin_alloy_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/tin_alloy_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/fishing_nets/wood_fishing_net.json b/kubejs/assets/tfg/models/item/fishing_nets/wood_fishing_net.json new file mode 100644 index 000000000..eeee8e880 --- /dev/null +++ b/kubejs/assets/tfg/models/item/fishing_nets/wood_fishing_net.json @@ -0,0 +1,32 @@ +{ + "credit": "Made with Blockbench", + "parent": "item/generated", + "textures": { + "layer0": "tfg:item/fishing_nets/wood_fishing_net" + }, + "display": { + "thirdperson_righthand": { + "rotation": [-8, 90, 56], + "translation": [0, 6.5, 2.25] + }, + "thirdperson_lefthand": { + "rotation": [100, -91, 56], + "translation": [0, 6.5, 2.25] + }, + "firstperson_righthand": { + "rotation": [-77, -30, 34], + "translation": [0, 1.75, -6] + }, + "firstperson_lefthand": { + "rotation": [-69, 153, -36], + "translation": [0, 1.75, -6] + }, + "ground": { + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] + }, + "fixed": { + "rotation": [0, 180, 0] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/hv_universal_circuit.json b/kubejs/assets/tfg/models/item/hv_universal_circuit.json new file mode 100644 index 000000000..317da660a --- /dev/null +++ b/kubejs/assets/tfg/models/item/hv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/hv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/iv_universal_circuit.json b/kubejs/assets/tfg/models/item/iv_universal_circuit.json new file mode 100644 index 000000000..9f7916b18 --- /dev/null +++ b/kubejs/assets/tfg/models/item/iv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/iv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/luv_universal_circuit.json b/kubejs/assets/tfg/models/item/luv_universal_circuit.json new file mode 100644 index 000000000..2cfd3577f --- /dev/null +++ b/kubejs/assets/tfg/models/item/luv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/luv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/lv_universal_circuit.json b/kubejs/assets/tfg/models/item/lv_universal_circuit.json new file mode 100644 index 000000000..5ecd6f2bf --- /dev/null +++ b/kubejs/assets/tfg/models/item/lv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/lv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/mv_universal_circuit.json b/kubejs/assets/tfg/models/item/mv_universal_circuit.json new file mode 100644 index 000000000..1ffeeb221 --- /dev/null +++ b/kubejs/assets/tfg/models/item/mv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/mv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/uhv_universal_circuit.json b/kubejs/assets/tfg/models/item/uhv_universal_circuit.json new file mode 100644 index 000000000..7359500fa --- /dev/null +++ b/kubejs/assets/tfg/models/item/uhv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/uhv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/ulv_universal_circuit.json b/kubejs/assets/tfg/models/item/ulv_universal_circuit.json new file mode 100644 index 000000000..87d49760e --- /dev/null +++ b/kubejs/assets/tfg/models/item/ulv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/ulv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/uv_universal_circuit.json b/kubejs/assets/tfg/models/item/uv_universal_circuit.json new file mode 100644 index 000000000..5686bd295 --- /dev/null +++ b/kubejs/assets/tfg/models/item/uv_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/uv_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/models/item/zpm_universal_circuit.json b/kubejs/assets/tfg/models/item/zpm_universal_circuit.json new file mode 100644 index 000000000..42ea1a7fe --- /dev/null +++ b/kubejs/assets/tfg/models/item/zpm_universal_circuit.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "tfg:item/universal/zpm_universal_circuit" + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/block/metal/smooth/red_alloy.png b/kubejs/assets/tfg/textures/block/metal/smooth/red_alloy.png new file mode 100644 index 000000000..37126e24b Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/smooth/red_alloy.png differ diff --git a/kubejs/assets/tfg/textures/block/metal/smooth/tin_alloy.png b/kubejs/assets/tfg/textures/block/metal/smooth/tin_alloy.png new file mode 100644 index 000000000..c5010ebb9 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/metal/smooth/tin_alloy.png differ diff --git a/kubejs/assets/tfg/textures/block/phantom_silk_block.png b/kubejs/assets/tfg/textures/block/phantom_silk_block.png new file mode 100644 index 000000000..87192201d Binary files /dev/null and b/kubejs/assets/tfg/textures/block/phantom_silk_block.png differ diff --git a/kubejs/assets/tfg/textures/block/polycaprolactam_fabric_block.png b/kubejs/assets/tfg/textures/block/polycaprolactam_fabric_block.png new file mode 100644 index 000000000..0a3824324 Binary files /dev/null and b/kubejs/assets/tfg/textures/block/polycaprolactam_fabric_block.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/brass_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/brass_fishing_net.png new file mode 100644 index 000000000..ce12895fb Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/brass_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/cupronickel_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/cupronickel_fishing_net.png new file mode 100644 index 000000000..d306b5309 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/cupronickel_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/invar_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/invar_fishing_net.png new file mode 100644 index 000000000..86049a49a Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/invar_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/magnalium_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/magnalium_fishing_net.png new file mode 100644 index 000000000..9412e2efb Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/magnalium_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/rose_gold_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/rose_gold_fishing_net.png new file mode 100644 index 000000000..2ea7b7f50 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/rose_gold_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/sterling_silver_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/sterling_silver_fishing_net.png new file mode 100644 index 000000000..7ac2c1310 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/sterling_silver_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/tin_alloy_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/tin_alloy_fishing_net.png new file mode 100644 index 000000000..afe33072a Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/tin_alloy_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/fishing_nets/wood_fishing_net.png b/kubejs/assets/tfg/textures/item/fishing_nets/wood_fishing_net.png new file mode 100644 index 000000000..458e438e1 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/fishing_nets/wood_fishing_net.png differ diff --git a/kubejs/assets/tfg/textures/item/phantom_silk.png b/kubejs/assets/tfg/textures/item/phantom_silk.png new file mode 100644 index 000000000..c3502d2d3 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/phantom_silk.png differ diff --git a/kubejs/assets/tfg/textures/item/phantom_thread.png b/kubejs/assets/tfg/textures/item/phantom_thread.png new file mode 100644 index 000000000..ac5a98d06 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/phantom_thread.png differ diff --git a/kubejs/assets/tfg/textures/item/polycaprolactam_fabric.png b/kubejs/assets/tfg/textures/item/polycaprolactam_fabric.png new file mode 100644 index 000000000..b597b5c41 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/polycaprolactam_fabric.png differ diff --git a/kubejs/assets/tfg/textures/item/polycaprolactam_string.png b/kubejs/assets/tfg/textures/item/polycaprolactam_string.png new file mode 100644 index 000000000..03de41e27 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/polycaprolactam_string.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/ev_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/ev_universal_circuit.png new file mode 100644 index 000000000..12df0edd8 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/ev_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/ev_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/ev_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/ev_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/hv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/hv_universal_circuit.png new file mode 100644 index 000000000..f092049c9 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/hv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/hv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/hv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/hv_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/iv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/iv_universal_circuit.png new file mode 100644 index 000000000..8ed7c7b85 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/iv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/iv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/iv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/iv_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/luv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/luv_universal_circuit.png new file mode 100644 index 000000000..0edfc0265 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/luv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/luv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/luv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..55ab3d7c1 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/luv_universal_circuit.png.mcmeta @@ -0,0 +1,16 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2, + "frames": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6 + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/lv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/lv_universal_circuit.png new file mode 100644 index 000000000..9382206eb Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/lv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/lv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/lv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/lv_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/mv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/mv_universal_circuit.png new file mode 100644 index 000000000..cef90ff6c Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/mv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/mv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/mv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/mv_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/uev_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/uev_universal_circuit.png new file mode 100644 index 000000000..ed048ab04 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/uev_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/uev_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/uev_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/uev_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/uhv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/uhv_universal_circuit.png new file mode 100644 index 000000000..1a4ab2d76 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/uhv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/uhv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/uhv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..55ab3d7c1 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/uhv_universal_circuit.png.mcmeta @@ -0,0 +1,16 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2, + "frames": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6 + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/uiv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/uiv_universal_circuit.png new file mode 100644 index 000000000..a366c4470 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/uiv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/uiv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/uiv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..55ab3d7c1 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/uiv_universal_circuit.png.mcmeta @@ -0,0 +1,16 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2, + "frames": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6 + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/ulv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/ulv_universal_circuit.png new file mode 100644 index 000000000..2ae01ee89 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/ulv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/ulv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/ulv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..55ab3d7c1 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/ulv_universal_circuit.png.mcmeta @@ -0,0 +1,16 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2, + "frames": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6 + ] + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/uv_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/uv_universal_circuit.png new file mode 100644 index 000000000..e272cfe04 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/uv_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/uv_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/uv_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/uv_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/tfg/textures/item/universal/zpm_universal_circuit.png b/kubejs/assets/tfg/textures/item/universal/zpm_universal_circuit.png new file mode 100644 index 000000000..8cbc00163 Binary files /dev/null and b/kubejs/assets/tfg/textures/item/universal/zpm_universal_circuit.png differ diff --git a/kubejs/assets/tfg/textures/item/universal/zpm_universal_circuit.png.mcmeta b/kubejs/assets/tfg/textures/item/universal/zpm_universal_circuit.png.mcmeta new file mode 100644 index 000000000..114c427b7 --- /dev/null +++ b/kubejs/assets/tfg/textures/item/universal/zpm_universal_circuit.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "interpolate": true, + "frametime": 2 + } +} \ No newline at end of file diff --git a/kubejs/assets/vintageimprovements/textures/item/nickel_sheet.png b/kubejs/assets/vintageimprovements/textures/item/nickel_sheet.png index 0c9d49349..17df7cae2 100644 Binary files a/kubejs/assets/vintageimprovements/textures/item/nickel_sheet.png and b/kubejs/assets/vintageimprovements/textures/item/nickel_sheet.png differ diff --git a/kubejs/assets/vintageimprovements/textures/item/platinum_sheet.png b/kubejs/assets/vintageimprovements/textures/item/platinum_sheet.png index 17df7cae2..0c9d49349 100644 Binary files a/kubejs/assets/vintageimprovements/textures/item/platinum_sheet.png and b/kubejs/assets/vintageimprovements/textures/item/platinum_sheet.png differ diff --git a/kubejs/data/beneath/worldgen/configured_feature/vein/cursecoal.json b/kubejs/data/beneath/worldgen/configured_feature/vein/cursecoal.json deleted file mode 100644 index 4f9ff4f38..000000000 --- a/kubejs/data/beneath/worldgen/configured_feature/vein/cursecoal.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "tfc:disc_vein", - "config": { - "rarity": 35, - "size": 13, - "height": 4, - "density": 0.80, - "min_y": 48, - "max_y": 127, - "project": false, - "random_name": "cursecoal", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam", - "minecraft:blackstone", - "minecraft:dripstone_block" - ], - "with": [ - { - "weight": 1, - "block": "beneath:ore/nether_cursecoal" - } - ] - } - ] - } -} \ No newline at end of file diff --git a/kubejs/data/beneath/worldgen/configured_feature/vein/sylvite.json b/kubejs/data/beneath/worldgen/configured_feature/vein/sylvite.json deleted file mode 100644 index ac18ef271..000000000 --- a/kubejs/data/beneath/worldgen/configured_feature/vein/sylvite.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "tfc:cluster_vein", - "config": { - "rarity": 75, - "size": 17, - "density": 0.6, - "min_y": 0, - "max_y": 64, - "random_name": "sylvite", - "blocks": [ - { - "replace": [ - "minecraft:blackstone" - ], - "with": [ - { - "weight": 1, - "block": "beneath:ore/blackstone_sylvite" - } - ] - } - ] - } -} \ No newline at end of file diff --git a/kubejs/data/minecraft/loot_tables/blocks/cobweb.json b/kubejs/data/minecraft/loot_tables/blocks/cobweb.json new file mode 100644 index 000000000..fd6d76a0a --- /dev/null +++ b/kubejs/data/minecraft/loot_tables/blocks/cobweb.json @@ -0,0 +1,53 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "tag": "tfc:shears" + } + } + ] + } + ], + "name": "minecraft:cobweb" + }, + { + "type": "minecraft:item", + "name": "minecraft:string", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3, + "type": "minecraft:uniform" + } + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobweb" +} \ No newline at end of file diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json b/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json index 3e30a39ee..411acdc09 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_bridge.json @@ -47,7 +47,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -66,7 +66,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -85,7 +85,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -104,7 +104,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -123,7 +123,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -141,7 +141,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -160,7 +160,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -179,7 +179,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -198,7 +198,26 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" + } + ], + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:black_bronze_axe", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "type": "minecraft:uniform", + "min": 0.1, + "max": 0.9 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -217,7 +236,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -236,7 +255,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -294,21 +313,6 @@ "name": "minecraft:snout_armor_trim_smithing_template", "weight": 30 }, - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_ingot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 1, - "max": 3, - "type": "minecraft:uniform" - } - } - ], - "weight": 30 - }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_hammer", @@ -316,7 +320,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -327,7 +331,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -338,7 +342,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -349,18 +353,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" - } - ] - }, - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_butchery_knife", - "weight": 10, - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -371,7 +364,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -382,7 +375,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -393,7 +386,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -404,7 +397,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":5, \"MaxAoERow\":5, \"MaxAoELayer\":3}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -415,7 +408,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -426,7 +419,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -437,7 +430,29 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_mortar", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_file", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -448,7 +463,18 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_hoe", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -459,7 +485,18 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_axe", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] } @@ -660,8 +697,8 @@ { "function": "minecraft:set_count", "count": { - "min": 2, - "max": 5, + "min": 1, + "max": 4, "type": "minecraft:uniform" } } @@ -922,6 +959,36 @@ } ], "weight": 50 + }, + { + "type": "minecraft:item", + "name": "gtceu:dynamite", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10, + "type": "minecraft:uniform" + } + } + ], + "weight": 30 + }, + { + "type": "minecraft:item", + "name": "gtceu:powderbarrel", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5, + "type": "minecraft:uniform" + } + } + ], + "weight": 30 } ] } diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json b/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json index 3e30a39ee..411acdc09 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_hoglin_stable.json @@ -47,7 +47,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -66,7 +66,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -85,7 +85,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -104,7 +104,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -123,7 +123,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -141,7 +141,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -160,7 +160,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -179,7 +179,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -198,7 +198,26 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" + } + ], + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:black_bronze_axe", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "type": "minecraft:uniform", + "min": 0.1, + "max": 0.9 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -217,7 +236,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -236,7 +255,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -294,21 +313,6 @@ "name": "minecraft:snout_armor_trim_smithing_template", "weight": 30 }, - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_ingot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 1, - "max": 3, - "type": "minecraft:uniform" - } - } - ], - "weight": 30 - }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_hammer", @@ -316,7 +320,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -327,7 +331,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -338,7 +342,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -349,18 +353,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" - } - ] - }, - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_butchery_knife", - "weight": 10, - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -371,7 +364,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -382,7 +375,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -393,7 +386,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -404,7 +397,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":5, \"MaxAoERow\":5, \"MaxAoELayer\":3}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -415,7 +408,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -426,7 +419,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -437,7 +430,29 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_mortar", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_file", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -448,7 +463,18 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_hoe", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -459,7 +485,18 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_axe", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] } @@ -660,8 +697,8 @@ { "function": "minecraft:set_count", "count": { - "min": 2, - "max": 5, + "min": 1, + "max": 4, "type": "minecraft:uniform" } } @@ -922,6 +959,36 @@ } ], "weight": 50 + }, + { + "type": "minecraft:item", + "name": "gtceu:dynamite", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10, + "type": "minecraft:uniform" + } + } + ], + "weight": 30 + }, + { + "type": "minecraft:item", + "name": "gtceu:powderbarrel", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5, + "type": "minecraft:uniform" + } + } + ], + "weight": 30 } ] } diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_other.json b/kubejs/data/minecraft/loot_tables/chests/bastion_other.json index 3e30a39ee..411acdc09 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_other.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_other.json @@ -47,7 +47,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -66,7 +66,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -85,7 +85,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -104,7 +104,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -123,7 +123,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ] }, @@ -141,7 +141,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -160,7 +160,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -179,7 +179,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -198,7 +198,26 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" + } + ], + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:black_bronze_axe", + "functions": [ + { + "function": "minecraft:set_damage", + "damage": { + "type": "minecraft:uniform", + "min": 0.1, + "max": 0.9 + } + }, + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -217,7 +236,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -236,7 +255,7 @@ }, { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 3}" } ], "weight": 100 @@ -294,21 +313,6 @@ "name": "minecraft:snout_armor_trim_smithing_template", "weight": 30 }, - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_ingot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 1, - "max": 3, - "type": "minecraft:uniform" - } - } - ], - "weight": 30 - }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_hammer", @@ -316,7 +320,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -327,7 +331,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -338,7 +342,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -349,18 +353,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" - } - ] - }, - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_butchery_knife", - "weight": 10, - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -371,7 +364,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -382,7 +375,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -393,7 +386,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -404,7 +397,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":5, \"MaxAoERow\":5, \"MaxAoELayer\":3}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -415,7 +408,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -426,7 +419,7 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -437,7 +430,29 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_mortar", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_file", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -448,7 +463,18 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_hoe", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -459,7 +485,18 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_axe", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] } @@ -660,8 +697,8 @@ { "function": "minecraft:set_count", "count": { - "min": 2, - "max": 5, + "min": 1, + "max": 4, "type": "minecraft:uniform" } } @@ -922,6 +959,36 @@ } ], "weight": 50 + }, + { + "type": "minecraft:item", + "name": "gtceu:dynamite", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 5, + "max": 10, + "type": "minecraft:uniform" + } + } + ], + "weight": 30 + }, + { + "type": "minecraft:item", + "name": "gtceu:powderbarrel", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2, + "max": 5, + "type": "minecraft:uniform" + } + } + ], + "weight": 30 } ] } diff --git a/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json b/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json index 908d62f07..5e70329c4 100644 --- a/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json +++ b/kubejs/data/minecraft/loot_tables/chests/bastion_treasure.json @@ -5,106 +5,80 @@ "name": "loot_pool", "rolls": 2, "entries": [ - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_ingot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 1, - "max": 3, - "type": "minecraft:uniform" - } - } - ], - "weight": 20 - }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_hammer", - "weight": 10, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_pickaxe", - "weight": 10, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_sword", - "weight": 5, + "weight": 10, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_knife", - "weight": 10, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" - } - ] - }, - { - "type": "minecraft:item", - "name": "gtceu:damascus_steel_butchery_knife", - "weight": 5, - "functions": [ - { - "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_mining_hammer", - "weight": 5, + "weight": 10, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_shovel", - "weight": 10, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_spade", - "weight": 5, + "weight": 10, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":1, \"MaxAoERow\":1}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, @@ -115,73 +89,106 @@ "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"GT.Behaviours\":{\"MaxAoEColumn\":5, \"MaxAoERow\":5, \"MaxAoELayer\":3}, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_wire_cutter", - "weight": 15, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_wrench", - "weight": 15, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\":4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_crowbar", - "weight": 15, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_mortar", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_file", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_screwdriver", - "weight": 15, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" + } + ] + }, + { + "type": "minecraft:item", + "name": "gtceu:damascus_steel_hoe", + "weight": 20, + "functions": [ + { + "function": "minecraft:set_nbt", + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", "name": "gtceu:damascus_steel_saw", - "weight": 15, + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] }, { "type": "minecraft:item", - "name": "minecraft:crossbow", - "weight": 5, + "name": "gtceu:damascus_steel_axe", + "weight": 20, "functions": [ { "function": "minecraft:set_nbt", - "tag": "{\"tfc:forging_bonus\": 4}" + "tag": "{\"tfc:forging_bonus\": 4, \"HideFlags\":1, \"Enchantments\": [{\"id\":\"minecraft:infinity\",\"lvl\":\"1s\"}]}" } ] } diff --git a/kubejs/data/minecraft/loot_tables/gameplay/piglin_bartering.json b/kubejs/data/minecraft/loot_tables/gameplay/piglin_bartering.json index 991d9e753..886d98ca0 100644 --- a/kubejs/data/minecraft/loot_tables/gameplay/piglin_bartering.json +++ b/kubejs/data/minecraft/loot_tables/gameplay/piglin_bartering.json @@ -12,13 +12,13 @@ { "function": "minecraft:set_count", "count": { - "min": 3, - "max": 9, + "min": 6, + "max": 12, "type": "minecraft:uniform" } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -33,7 +33,7 @@ } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -48,7 +48,7 @@ } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -57,43 +57,63 @@ { "function": "minecraft:set_count", "count": { - "min": 5, + "min": 6, "max": 12, "type": "minecraft:uniform" } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", "name": "gtceu:tin_ingot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 1, - "max": 3, - "type": "minecraft:uniform" - } - } - ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", "name": "minecraft:copper_ingot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 1, - "max": 3, - "type": "minecraft:uniform" - } - } - ], - "weight": 2 + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:silver_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:bronze_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:bismuth_bronze_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "create:zinc_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "create:brass_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:bismuth_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "name": "gtceu:nickel_ingot", + "weight": 100 }, { "type": "minecraft:item", @@ -108,7 +128,7 @@ } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -123,7 +143,7 @@ } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -138,7 +158,7 @@ } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -153,7 +173,7 @@ } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -162,28 +182,13 @@ { "function": "minecraft:set_count", "count": { - "min": 4, + "min": 6, "max": 12, "type": "minecraft:uniform" } } ], - "weight": 2 - }, - { - "type": "minecraft:item", - "name": "gtceu:raw_graphite", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 1, - "max": 2, - "type": "minecraft:uniform" - } - } - ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -198,22 +203,7 @@ } } ], - "weight": 2 - }, - { - "type": "minecraft:item", - "name": "tfc:kaolin_clay", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 2, - "max": 4, - "type": "minecraft:uniform" - } - } - ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -222,13 +212,13 @@ { "function": "minecraft:set_count", "count": { - "min": 4, - "max": 8, + "min": 12, + "max": 18, "type": "minecraft:uniform" } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -237,13 +227,13 @@ { "function": "minecraft:set_count", "count": { - "min": 2, - "max": 4, + "min": 6, + "max": 8, "type": "minecraft:uniform" } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -252,28 +242,13 @@ { "function": "minecraft:set_count", "count": { - "min": 2, - "max": 4, + "min": 4, + "max": 6, "type": "minecraft:uniform" } } ], - "weight": 2 - }, - { - "type": "minecraft:item", - "name": "minecraft:glow_berries", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 8, - "max": 16, - "type": "minecraft:uniform" - } - } - ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", @@ -282,28 +257,28 @@ { "function": "minecraft:set_count", "count": { - "min": 2, - "max": 4, + "min": 4, + "max": 6, "type": "minecraft:uniform" } } ], - "weight": 2 + "weight": 100 }, { "type": "minecraft:item", - "name": "minecraft:glowstone_dust", + "name": "minecraft:gunpowder", "functions": [ { "function": "minecraft:set_count", "count": { - "min": 2, - "max": 4, + "min": 4, + "max": 6, "type": "minecraft:uniform" } } ], - "weight": 2 + "weight": 100 } ] } diff --git a/kubejs/data/minecraft/trim_material/almandine_tfc.json b/kubejs/data/minecraft/trim_material/almandine_tfc.json new file mode 100644 index 000000000..f9b9d4d11 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/almandine_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "almandine_tfc", + "description": { + "color": "#7b1112", + "translate": "trim_material.tfc.almandine_tfc" + }, + "ingredient": "gtceu:exquisite_almandine_gem", + "item_model_index": 0.11 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/amethyst.json b/kubejs/data/minecraft/trim_material/amethyst.json deleted file mode 100644 index 85226bf80..000000000 --- a/kubejs/data/minecraft/trim_material/amethyst.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "amethyst_tfc", - "description": { - "color": "#9A5CC6", - "translate": "trim_material.tfc.amethyst" - }, - "ingredient": "minecraft:amethyst_shard", - "item_model_index": 0 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/amethyst_tfc.json b/kubejs/data/minecraft/trim_material/amethyst_tfc.json new file mode 100644 index 000000000..9b9ef38fe --- /dev/null +++ b/kubejs/data/minecraft/trim_material/amethyst_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "amethyst_tfc", + "description": { + "color": "#9b78ba", + "translate": "trim_material.tfc.amethyst_tfc" + }, + "ingredient": "gtceu:exquisite_amethyst_gem", + "item_model_index": 0.173 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/andradite_tfc.json b/kubejs/data/minecraft/trim_material/andradite_tfc.json new file mode 100644 index 000000000..883afd1e6 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/andradite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "andradite_tfc", + "description": { + "color": "#c29d1e", + "translate": "trim_material.tfc.andradite_tfc" + }, + "ingredient": "gtceu:exquisite_andradite_gem", + "item_model_index": 0.12 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/apatite_tfc.json b/kubejs/data/minecraft/trim_material/apatite_tfc.json new file mode 100644 index 000000000..dda16ce60 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/apatite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "apatite_tfc", + "description": { + "color": "#059cbb", + "translate": "trim_material.tfc.apatite_tfc" + }, + "ingredient": "gtceu:exquisite_apatite_gem", + "item_model_index": 0.176 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/bismuth.json b/kubejs/data/minecraft/trim_material/bismuth.json deleted file mode 100644 index 3bda00884..000000000 --- a/kubejs/data/minecraft/trim_material/bismuth.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "bismuth_tfc", - "description": { - "color": "#8bbbc4", - "translate": "trim_material.tfc.bismuth" - }, - "ingredient": "gtceu:bismuth_ingot", - "item_model_index": 1 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/bismuth_tfc.json b/kubejs/data/minecraft/trim_material/bismuth_tfc.json new file mode 100644 index 000000000..c89508e0a --- /dev/null +++ b/kubejs/data/minecraft/trim_material/bismuth_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "bismuth_tfc", + "description": { + "color": "#607c79", + "translate": "trim_material.tfc.bismuth_tfc" + }, + "ingredient": "gtceu:bismuth_plate", + "item_model_index": 0.169 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/blue_topaz_tfc.json b/kubejs/data/minecraft/trim_material/blue_topaz_tfc.json new file mode 100644 index 000000000..face409f2 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/blue_topaz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "blue_topaz_tfc", + "description": { + "color": "#a7c1c6", + "translate": "trim_material.tfc.blue_topaz_tfc" + }, + "ingredient": "gtceu:exquisite_blue_topaz_gem", + "item_model_index": 0.13 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/certus_quartz_tfc.json b/kubejs/data/minecraft/trim_material/certus_quartz_tfc.json new file mode 100644 index 000000000..b52467ddd --- /dev/null +++ b/kubejs/data/minecraft/trim_material/certus_quartz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "certus_quartz_tfc", + "description": { + "color": "#8ca4c4", + "translate": "trim_material.tfc.certus_quartz_tfc" + }, + "ingredient": "gtceu:exquisite_certus_quartz_gem", + "item_model_index": 0.185 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/cinnabar_tfc.json b/kubejs/data/minecraft/trim_material/cinnabar_tfc.json new file mode 100644 index 000000000..dd129e8a1 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/cinnabar_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "cinnabar_tfc", + "description": { + "color": "#c2274a", + "translate": "trim_material.tfc.cinnabar_tfc" + }, + "ingredient": "gtceu:exquisite_cinnabar_gem", + "item_model_index": 0.14 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/coal_tfc.json b/kubejs/data/minecraft/trim_material/coal_tfc.json new file mode 100644 index 000000000..ed5679753 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/coal_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "coal_tfc", + "description": { + "color": "#2b2f32", + "translate": "trim_material.tfc.coal_tfc" + }, + "ingredient": "gtceu:exquisite_coal_gem", + "item_model_index": 0.15 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/coke_tfc.json b/kubejs/data/minecraft/trim_material/coke_tfc.json new file mode 100644 index 000000000..f66488835 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/coke_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "coke_tfc", + "description": { + "color": "#424847", + "translate": "trim_material.tfc.coke_tfc" + }, + "ingredient": "gtceu:exquisite_coke_gem", + "item_model_index": 0.199 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/diamond.json b/kubejs/data/minecraft/trim_material/diamond.json deleted file mode 100644 index c2b9a7a78..000000000 --- a/kubejs/data/minecraft/trim_material/diamond.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "diamond_tfc", - "description": { - "color": "#6EECD2", - "translate": "trim_material.tfc.diamond" - }, - "ingredient": "minecraft:diamond", - "item_model_index": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/diamond_tfc.json b/kubejs/data/minecraft/trim_material/diamond_tfc.json new file mode 100644 index 000000000..53bcfa0ad --- /dev/null +++ b/kubejs/data/minecraft/trim_material/diamond_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "diamond_tfc", + "description": { + "color": "#98c2c6", + "translate": "trim_material.tfc.diamond_tfc" + }, + "ingredient": "gtceu:exquisite_diamond_gem", + "item_model_index": 0.16 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/emerald.json b/kubejs/data/minecraft/trim_material/emerald.json deleted file mode 100644 index f068f749c..000000000 --- a/kubejs/data/minecraft/trim_material/emerald.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "emerald_tfc", - "description": { - "color": "#11A036", - "translate": "trim_material.tfc.emerald" - }, - "ingredient": "minecraft:emerald", - "item_model_index": 0.2 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/emerald_tfc.json b/kubejs/data/minecraft/trim_material/emerald_tfc.json new file mode 100644 index 000000000..96d24cefb --- /dev/null +++ b/kubejs/data/minecraft/trim_material/emerald_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "emerald_tfc", + "description": { + "color": "#11c254", + "translate": "trim_material.tfc.emerald_tfc" + }, + "ingredient": "gtceu:exquisite_emerald_gem", + "item_model_index": 0.17 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/fluix_tfc.json b/kubejs/data/minecraft/trim_material/fluix_tfc.json new file mode 100644 index 000000000..f4bd67e09 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/fluix_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "fluix_tfc", + "description": { + "color": "#53458d", + "translate": "trim_material.tfc.fluix_tfc" + }, + "ingredient": "tfg:exquisite_fluix_gem", + "item_model_index": 0.162 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/glass_tfc.json b/kubejs/data/minecraft/trim_material/glass_tfc.json new file mode 100644 index 000000000..386f866a6 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/glass_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "glass_tfc", + "description": { + "color": "#c2c2c6", + "translate": "trim_material.tfc.glass_tfc" + }, + "ingredient": "gtceu:exquisite_glass_gem", + "item_model_index": 0.189 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/gold.json b/kubejs/data/minecraft/trim_material/gold.json deleted file mode 100644 index 61d5d90e4..000000000 --- a/kubejs/data/minecraft/trim_material/gold.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "gold_tfc", - "description": { - "color": "#DEB12D", - "translate": "trim_material.tfc.gold" - }, - "ingredient": "minecraft:gold_ingot", - "item_model_index": 0.9 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/gold_tfc.json b/kubejs/data/minecraft/trim_material/gold_tfc.json new file mode 100644 index 000000000..b06fccfbd --- /dev/null +++ b/kubejs/data/minecraft/trim_material/gold_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "gold_tfc", + "description": { + "color": "#ede65b", + "translate": "trim_material.tfc.gold_tfc" + }, + "ingredient": "create:golden_sheet", + "item_model_index": 0.164 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/green_sapphire_tfc.json b/kubejs/data/minecraft/trim_material/green_sapphire_tfc.json new file mode 100644 index 000000000..c6376abdd --- /dev/null +++ b/kubejs/data/minecraft/trim_material/green_sapphire_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "green_sapphire_tfc", + "description": { + "color": "#75af89", + "translate": "trim_material.tfc.green_sapphire_tfc" + }, + "ingredient": "gtceu:exquisite_green_sapphire_gem", + "item_model_index": 0.18 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/grossular_tfc.json b/kubejs/data/minecraft/trim_material/grossular_tfc.json new file mode 100644 index 000000000..9b84af334 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/grossular_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "grossular_tfc", + "description": { + "color": "#c28b5c", + "translate": "trim_material.tfc.grossular_tfc" + }, + "ingredient": "gtceu:exquisite_grossular_gem", + "item_model_index": 0.19 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/lapis.json b/kubejs/data/minecraft/trim_material/lapis.json deleted file mode 100644 index cf00d9059..000000000 --- a/kubejs/data/minecraft/trim_material/lapis.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "lapis", - "description": { - "color": "#416E97", - "translate": "trim_material.minecraft.lapis" - }, - "ingredient": "tfc:gem/lapis_lazuli", - "item_model_index": 0.9 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/lapis_lazuli.json b/kubejs/data/minecraft/trim_material/lapis_lazuli.json deleted file mode 100644 index e44b3674e..000000000 --- a/kubejs/data/minecraft/trim_material/lapis_lazuli.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "lapis_lazuli_tfc", - "description": { - "color": "#416E97", - "translate": "trim_material.tfc.lapis_lazuli" - }, - "ingredient": "minecraft:lapis_lazuli", - "item_model_index": 0.3 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/lapis_tfc.json b/kubejs/data/minecraft/trim_material/lapis_tfc.json new file mode 100644 index 000000000..b7144c86d --- /dev/null +++ b/kubejs/data/minecraft/trim_material/lapis_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "lapis_tfc", + "description": { + "color": "#6581c6", + "translate": "trim_material.tfc.lapis_tfc" + }, + "ingredient": "gtceu:exquisite_lapis_gem", + "item_model_index": 0.175 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/lazurite_tfc.json b/kubejs/data/minecraft/trim_material/lazurite_tfc.json new file mode 100644 index 000000000..7033e6d65 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/lazurite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "lazurite_tfc", + "description": { + "color": "#1e29bb", + "translate": "trim_material.tfc.lazurite_tfc" + }, + "ingredient": "gtceu:exquisite_lazurite_gem", + "item_model_index": 0.192 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/malachite_tfc.json b/kubejs/data/minecraft/trim_material/malachite_tfc.json new file mode 100644 index 000000000..5a3c59abb --- /dev/null +++ b/kubejs/data/minecraft/trim_material/malachite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "malachite_tfc", + "description": { + "color": "#00b789", + "translate": "trim_material.tfc.malachite_tfc" + }, + "ingredient": "gtceu:exquisite_malachite_gem", + "item_model_index": 0.188 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/monazite_tfc.json b/kubejs/data/minecraft/trim_material/monazite_tfc.json new file mode 100644 index 000000000..643bc21c4 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/monazite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "monazite_tfc", + "description": { + "color": "#9eb576", + "translate": "trim_material.tfc.monazite_tfc" + }, + "ingredient": "gtceu:exquisite_monazite_gem", + "item_model_index": 0.179 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/nether_quartz_tfc.json b/kubejs/data/minecraft/trim_material/nether_quartz_tfc.json new file mode 100644 index 000000000..e7c4a4a33 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/nether_quartz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "nether_quartz_tfc", + "description": { + "color": "#bdb6b0", + "translate": "trim_material.tfc.nether_quartz_tfc" + }, + "ingredient": "gtceu:exquisite_nether_quartz_gem", + "item_model_index": 0.184 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/neutronium_tfc.json b/kubejs/data/minecraft/trim_material/neutronium_tfc.json new file mode 100644 index 000000000..ca16c6a4c --- /dev/null +++ b/kubejs/data/minecraft/trim_material/neutronium_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "neutronium_tfc", + "description": { + "color": "#d7d7db", + "translate": "trim_material.tfc.neutronium_tfc" + }, + "ingredient": "gtceu:neutronium_plate", + "item_model_index": 0.151 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/nickel_tfc.json b/kubejs/data/minecraft/trim_material/nickel_tfc.json new file mode 100644 index 000000000..f246aa44d --- /dev/null +++ b/kubejs/data/minecraft/trim_material/nickel_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "nickel_tfc", + "description": { + "color": "#bfd1ea", + "translate": "trim_material.tfc.nickel_tfc" + }, + "ingredient": "vintageimprovements:nickel_sheet", + "item_model_index": 0.166 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/olivine_tfc.json b/kubejs/data/minecraft/trim_material/olivine_tfc.json new file mode 100644 index 000000000..1a61ba733 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/olivine_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "olivine_tfc", + "description": { + "color": "#7fad03", + "translate": "trim_material.tfc.olivine_tfc" + }, + "ingredient": "gtceu:exquisite_olivine_gem", + "item_model_index": 0.171 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/opal.json b/kubejs/data/minecraft/trim_material/opal.json deleted file mode 100644 index 86c8e32cc..000000000 --- a/kubejs/data/minecraft/trim_material/opal.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "opal_tfc", - "description": { - "color": "#75e7eb", - "translate": "trim_material.tfc.opal" - }, - "ingredient": "gtceu:opal_gem", - "item_model_index": 0.4 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/opal_tfc.json b/kubejs/data/minecraft/trim_material/opal_tfc.json new file mode 100644 index 000000000..0c4f6b673 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/opal_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "opal_tfc", + "description": { + "color": "#bdadb6", + "translate": "trim_material.tfc.opal_tfc" + }, + "ingredient": "gtceu:exquisite_opal_gem", + "item_model_index": 0.172 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/platinum_tfc.json b/kubejs/data/minecraft/trim_material/platinum_tfc.json new file mode 100644 index 000000000..0384f408c --- /dev/null +++ b/kubejs/data/minecraft/trim_material/platinum_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "platinum_tfc", + "description": { + "color": "#d8cea1", + "translate": "trim_material.tfc.platinum_tfc" + }, + "ingredient": "vintageimprovements:platinum_sheet", + "item_model_index": 0.167 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/pyrite.json b/kubejs/data/minecraft/trim_material/pyrite.json deleted file mode 100644 index c1b699a37..000000000 --- a/kubejs/data/minecraft/trim_material/pyrite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "pyrite_tfc", - "description": { - "color": "#e6c44c", - "translate": "trim_material.tfc.pyrite" - }, - "ingredient": "gtceu:raw_pyrite", - "item_model_index": 0.4 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/pyrite_tfc.json b/kubejs/data/minecraft/trim_material/pyrite_tfc.json new file mode 100644 index 000000000..79b64479f --- /dev/null +++ b/kubejs/data/minecraft/trim_material/pyrite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "pyrite_tfc", + "description": { + "color": "#a75e10", + "translate": "trim_material.tfc.pyrite_tfc" + }, + "ingredient": "gtceu:rich_raw_pyrite", + "item_model_index": 0.152 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/pyrope_tfc.json b/kubejs/data/minecraft/trim_material/pyrope_tfc.json new file mode 100644 index 000000000..c8d120759 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/pyrope_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "pyrope_tfc", + "description": { + "color": "#b11344", + "translate": "trim_material.tfc.pyrope_tfc" + }, + "ingredient": "gtceu:exquisite_pyrope_gem", + "item_model_index": 0.193 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/quartzite_tfc.json b/kubejs/data/minecraft/trim_material/quartzite_tfc.json new file mode 100644 index 000000000..10a554e72 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/quartzite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "quartzite_tfc", + "description": { + "color": "#b8bab8", + "translate": "trim_material.tfc.quartzite_tfc" + }, + "ingredient": "gtceu:exquisite_quartzite_gem", + "item_model_index": 0.186 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/realgar_tfc.json b/kubejs/data/minecraft/trim_material/realgar_tfc.json new file mode 100644 index 000000000..e9a71df6c --- /dev/null +++ b/kubejs/data/minecraft/trim_material/realgar_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "realgar_tfc", + "description": { + "color": "#c22e28", + "translate": "trim_material.tfc.realgar_tfc" + }, + "ingredient": "gtceu:exquisite_realgar_gem", + "item_model_index": 0.187 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/red_garnet_tfc.json b/kubejs/data/minecraft/trim_material/red_garnet_tfc.json new file mode 100644 index 000000000..18b5b94cd --- /dev/null +++ b/kubejs/data/minecraft/trim_material/red_garnet_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "red_garnet_tfc", + "description": { + "color": "#710910", + "translate": "trim_material.tfc.red_garnet_tfc" + }, + "ingredient": "gtceu:exquisite_red_garnet_gem", + "item_model_index": 0.177 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/redx_tfc.json b/kubejs/data/minecraft/trim_material/redx_tfc.json new file mode 100644 index 000000000..05e2bac11 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/redx_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "redx_tfc", + "description": { + "color": "#a06156", + "translate": "trim_material.tfc.redx_tfc" + }, + "ingredient": "morered:red_alloy_wire", + "item_model_index": 0.153 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/rock_salt_tfc.json b/kubejs/data/minecraft/trim_material/rock_salt_tfc.json new file mode 100644 index 000000000..3dd505eeb --- /dev/null +++ b/kubejs/data/minecraft/trim_material/rock_salt_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rock_salt_tfc", + "description": { + "color": "#c2b2af", + "translate": "trim_material.tfc.rock_salt_tfc" + }, + "ingredient": "gtceu:exquisite_rock_salt_gem", + "item_model_index": 0.194 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/rose_gold.json b/kubejs/data/minecraft/trim_material/rose_gold.json deleted file mode 100644 index a00816ab4..000000000 --- a/kubejs/data/minecraft/trim_material/rose_gold.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "rose_gold_tfc", - "description": { - "color": "#fcdd86", - "translate": "trim_material.tfc.rose_gold" - }, - "ingredient": "gtceu:rose_gold_ingot", - "item_model_index": 0.95 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/rose_gold_tfc.json b/kubejs/data/minecraft/trim_material/rose_gold_tfc.json new file mode 100644 index 000000000..80827c61c --- /dev/null +++ b/kubejs/data/minecraft/trim_material/rose_gold_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rose_gold_tfc", + "description": { + "color": "#eddedb", + "translate": "trim_material.tfc.rose_gold_tfc" + }, + "ingredient": "vintageimprovements:rose_gold_sheet", + "item_model_index": 0.165 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/rose_quartz_tfc.json b/kubejs/data/minecraft/trim_material/rose_quartz_tfc.json new file mode 100644 index 000000000..28d2d8250 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/rose_quartz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rose_quartz_tfc", + "description": { + "color": "#ba3458", + "translate": "trim_material.tfc.rose_quartz_tfc" + }, + "ingredient": "gtceu:exquisite_rose_quartz_gem", + "item_model_index": 0.161 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/ruby.json b/kubejs/data/minecraft/trim_material/ruby.json deleted file mode 100644 index 02729ff7d..000000000 --- a/kubejs/data/minecraft/trim_material/ruby.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "ruby_tfc", - "description": { - "color": "#971607", - "translate": "trim_material.tfc.ruby" - }, - "ingredient": "gtceu:ruby_gem", - "item_model_index": 0.5 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/ruby_tfc.json b/kubejs/data/minecraft/trim_material/ruby_tfc.json new file mode 100644 index 000000000..5428d1c88 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/ruby_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "ruby_tfc", + "description": { + "color": "#a41b0c", + "translate": "trim_material.tfc.ruby_tfc" + }, + "ingredient": "gtceu:exquisite_ruby_gem", + "item_model_index": 0.195 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/rutile_tfc.json b/kubejs/data/minecraft/trim_material/rutile_tfc.json new file mode 100644 index 000000000..cec9c58a1 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/rutile_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rutile_tfc", + "description": { + "color": "#681c05", + "translate": "trim_material.tfc.rutile_tfc" + }, + "ingredient": "gtceu:exquisite_rutile_gem", + "item_model_index": 0.191 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/salt_tfc.json b/kubejs/data/minecraft/trim_material/salt_tfc.json new file mode 100644 index 000000000..78c876ba8 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/salt_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "salt_tfc", + "description": { + "color": "#bebec2", + "translate": "trim_material.tfc.salt_tfc" + }, + "ingredient": "gtceu:exquisite_salt_gem", + "item_model_index": 0.196 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/sapphire.json b/kubejs/data/minecraft/trim_material/sapphire.json deleted file mode 100644 index 4d7661b8a..000000000 --- a/kubejs/data/minecraft/trim_material/sapphire.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "sapphire_tfc", - "description": { - "color": "#183dde", - "translate": "trim_material.tfc.sapphire" - }, - "ingredient": "gtceu:sapphire_gem", - "item_model_index": 0.6 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/sapphire_tfc.json b/kubejs/data/minecraft/trim_material/sapphire_tfc.json new file mode 100644 index 000000000..a15fb6664 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/sapphire_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "sapphire_tfc", + "description": { + "color": "#2628b0", + "translate": "trim_material.tfc.sapphire_tfc" + }, + "ingredient": "gtceu:exquisite_sapphire_gem", + "item_model_index": 0.197 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/silver.json b/kubejs/data/minecraft/trim_material/silver.json deleted file mode 100644 index bea687bed..000000000 --- a/kubejs/data/minecraft/trim_material/silver.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "silver_tfc", - "description": { - "color": "#edeadf", - "translate": "trim_material.tfc.silver" - }, - "ingredient": "gtceu:silver_ingot", - "item_model_index": 0.8 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/silver_tfc.json b/kubejs/data/minecraft/trim_material/silver_tfc.json new file mode 100644 index 000000000..52be79ddb --- /dev/null +++ b/kubejs/data/minecraft/trim_material/silver_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "silver_tfc", + "description": { + "color": "#d8d8f4", + "translate": "trim_material.tfc.silver_tfc" + }, + "ingredient": "vintageimprovements:silver_sheet", + "item_model_index": 0.162 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/sodalite_tfc.json b/kubejs/data/minecraft/trim_material/sodalite_tfc.json new file mode 100644 index 000000000..f0b18fac9 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/sodalite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "sodalite_tfc", + "description": { + "color": "#2e40c6", + "translate": "trim_material.tfc.sodalite_tfc" + }, + "ingredient": "gtceu:exquisite_sodalite_gem", + "item_model_index": 0.198 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/spessartine_tfc.json b/kubejs/data/minecraft/trim_material/spessartine_tfc.json new file mode 100644 index 000000000..161014529 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/spessartine_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "spessartine_tfc", + "description": { + "color": "#c28017", + "translate": "trim_material.tfc.spessartine_tfc" + }, + "ingredient": "gtceu:exquisite_spessartine_gem", + "item_model_index": 0.181 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/sterling_silver.json b/kubejs/data/minecraft/trim_material/sterling_silver.json deleted file mode 100644 index de8d2dd4d..000000000 --- a/kubejs/data/minecraft/trim_material/sterling_silver.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "sterling_silver_tfc", - "description": { - "color": "#ccc7b6", - "translate": "trim_material.tfc.sterling_silver" - }, - "ingredient": "gtceu:sterling_silver_ingot", - "item_model_index": 0.85 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/sterling_silver_tfc.json b/kubejs/data/minecraft/trim_material/sterling_silver_tfc.json new file mode 100644 index 000000000..91eeff03c --- /dev/null +++ b/kubejs/data/minecraft/trim_material/sterling_silver_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "sterling_silver_tfc", + "description": { + "color": "#eae5d3", + "translate": "trim_material.tfc.sterling_silver_tfc" + }, + "ingredient": "gtceu:sterling_silver_plate", + "item_model_index": 0.163 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/titanium_tfc.json b/kubejs/data/minecraft/trim_material/titanium_tfc.json new file mode 100644 index 000000000..6f4f0fda9 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/titanium_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "titanium_tfc", + "description": { + "color": "#c496d8", + "translate": "trim_material.tfc.titanium_tfc" + }, + "ingredient": "gtceu:titanium_plate", + "item_model_index": 0.168 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/topaz.json b/kubejs/data/minecraft/trim_material/topaz.json deleted file mode 100644 index 5438319e3..000000000 --- a/kubejs/data/minecraft/trim_material/topaz.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "topaz_tfc", - "description": { - "color": "#c27a0e", - "translate": "trim_material.tfc.topaz" - }, - "ingredient": "gtceu:topaz_gem", - "item_model_index": 0.7 -} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/topaz_tfc.json b/kubejs/data/minecraft/trim_material/topaz_tfc.json new file mode 100644 index 000000000..bbdd3a171 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/topaz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "topaz_tfc", + "description": { + "color": "#b1a42d", + "translate": "trim_material.tfc.topaz_tfc" + }, + "ingredient": "gtceu:exquisite_topaz_gem", + "item_model_index": 0.182 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/uvarovite_tfc.json b/kubejs/data/minecraft/trim_material/uvarovite_tfc.json new file mode 100644 index 000000000..4d3fe567a --- /dev/null +++ b/kubejs/data/minecraft/trim_material/uvarovite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "uvarovite_tfc", + "description": { + "color": "#22b43b", + "translate": "trim_material.tfc.uvarovite_tfc" + }, + "ingredient": "gtceu:exquisite_uvarovite_gem", + "item_model_index": 0.183 +} \ No newline at end of file diff --git a/kubejs/data/minecraft/trim_material/yellow_garnet_tfc.json b/kubejs/data/minecraft/trim_material/yellow_garnet_tfc.json new file mode 100644 index 000000000..b60053f89 --- /dev/null +++ b/kubejs/data/minecraft/trim_material/yellow_garnet_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "yellow_garnet_tfc", + "description": { + "color": "#bbc207", + "translate": "trim_material.tfc.yellow_garnet_tfc" + }, + "ingredient": "gtceu:exquisite_yellow_garnet_gem", + "item_model_index": 0.178 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/almandine_tfc.json b/kubejs/data/tfc/trim_material/almandine_tfc.json new file mode 100644 index 000000000..f9b9d4d11 --- /dev/null +++ b/kubejs/data/tfc/trim_material/almandine_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "almandine_tfc", + "description": { + "color": "#7b1112", + "translate": "trim_material.tfc.almandine_tfc" + }, + "ingredient": "gtceu:exquisite_almandine_gem", + "item_model_index": 0.11 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/amethyst.json b/kubejs/data/tfc/trim_material/amethyst.json deleted file mode 100644 index 85226bf80..000000000 --- a/kubejs/data/tfc/trim_material/amethyst.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "amethyst_tfc", - "description": { - "color": "#9A5CC6", - "translate": "trim_material.tfc.amethyst" - }, - "ingredient": "minecraft:amethyst_shard", - "item_model_index": 0 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/amethyst_tfc.json b/kubejs/data/tfc/trim_material/amethyst_tfc.json new file mode 100644 index 000000000..9b9ef38fe --- /dev/null +++ b/kubejs/data/tfc/trim_material/amethyst_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "amethyst_tfc", + "description": { + "color": "#9b78ba", + "translate": "trim_material.tfc.amethyst_tfc" + }, + "ingredient": "gtceu:exquisite_amethyst_gem", + "item_model_index": 0.173 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/andradite_tfc.json b/kubejs/data/tfc/trim_material/andradite_tfc.json new file mode 100644 index 000000000..883afd1e6 --- /dev/null +++ b/kubejs/data/tfc/trim_material/andradite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "andradite_tfc", + "description": { + "color": "#c29d1e", + "translate": "trim_material.tfc.andradite_tfc" + }, + "ingredient": "gtceu:exquisite_andradite_gem", + "item_model_index": 0.12 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/apatite_tfc.json b/kubejs/data/tfc/trim_material/apatite_tfc.json new file mode 100644 index 000000000..dda16ce60 --- /dev/null +++ b/kubejs/data/tfc/trim_material/apatite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "apatite_tfc", + "description": { + "color": "#059cbb", + "translate": "trim_material.tfc.apatite_tfc" + }, + "ingredient": "gtceu:exquisite_apatite_gem", + "item_model_index": 0.176 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/bismuth.json b/kubejs/data/tfc/trim_material/bismuth.json deleted file mode 100644 index 3bda00884..000000000 --- a/kubejs/data/tfc/trim_material/bismuth.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "bismuth_tfc", - "description": { - "color": "#8bbbc4", - "translate": "trim_material.tfc.bismuth" - }, - "ingredient": "gtceu:bismuth_ingot", - "item_model_index": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/bismuth_tfc.json b/kubejs/data/tfc/trim_material/bismuth_tfc.json new file mode 100644 index 000000000..c89508e0a --- /dev/null +++ b/kubejs/data/tfc/trim_material/bismuth_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "bismuth_tfc", + "description": { + "color": "#607c79", + "translate": "trim_material.tfc.bismuth_tfc" + }, + "ingredient": "gtceu:bismuth_plate", + "item_model_index": 0.169 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/blue_topaz_tfc.json b/kubejs/data/tfc/trim_material/blue_topaz_tfc.json new file mode 100644 index 000000000..face409f2 --- /dev/null +++ b/kubejs/data/tfc/trim_material/blue_topaz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "blue_topaz_tfc", + "description": { + "color": "#a7c1c6", + "translate": "trim_material.tfc.blue_topaz_tfc" + }, + "ingredient": "gtceu:exquisite_blue_topaz_gem", + "item_model_index": 0.13 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/certus_quartz_tfc.json b/kubejs/data/tfc/trim_material/certus_quartz_tfc.json new file mode 100644 index 000000000..b52467ddd --- /dev/null +++ b/kubejs/data/tfc/trim_material/certus_quartz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "certus_quartz_tfc", + "description": { + "color": "#8ca4c4", + "translate": "trim_material.tfc.certus_quartz_tfc" + }, + "ingredient": "gtceu:exquisite_certus_quartz_gem", + "item_model_index": 0.185 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/cinnabar_tfc.json b/kubejs/data/tfc/trim_material/cinnabar_tfc.json new file mode 100644 index 000000000..dd129e8a1 --- /dev/null +++ b/kubejs/data/tfc/trim_material/cinnabar_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "cinnabar_tfc", + "description": { + "color": "#c2274a", + "translate": "trim_material.tfc.cinnabar_tfc" + }, + "ingredient": "gtceu:exquisite_cinnabar_gem", + "item_model_index": 0.14 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/coal_tfc.json b/kubejs/data/tfc/trim_material/coal_tfc.json new file mode 100644 index 000000000..ed5679753 --- /dev/null +++ b/kubejs/data/tfc/trim_material/coal_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "coal_tfc", + "description": { + "color": "#2b2f32", + "translate": "trim_material.tfc.coal_tfc" + }, + "ingredient": "gtceu:exquisite_coal_gem", + "item_model_index": 0.15 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/coke_tfc.json b/kubejs/data/tfc/trim_material/coke_tfc.json new file mode 100644 index 000000000..f66488835 --- /dev/null +++ b/kubejs/data/tfc/trim_material/coke_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "coke_tfc", + "description": { + "color": "#424847", + "translate": "trim_material.tfc.coke_tfc" + }, + "ingredient": "gtceu:exquisite_coke_gem", + "item_model_index": 0.199 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/diamond.json b/kubejs/data/tfc/trim_material/diamond.json deleted file mode 100644 index c2b9a7a78..000000000 --- a/kubejs/data/tfc/trim_material/diamond.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "diamond_tfc", - "description": { - "color": "#6EECD2", - "translate": "trim_material.tfc.diamond" - }, - "ingredient": "minecraft:diamond", - "item_model_index": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/diamond_tfc.json b/kubejs/data/tfc/trim_material/diamond_tfc.json new file mode 100644 index 000000000..53bcfa0ad --- /dev/null +++ b/kubejs/data/tfc/trim_material/diamond_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "diamond_tfc", + "description": { + "color": "#98c2c6", + "translate": "trim_material.tfc.diamond_tfc" + }, + "ingredient": "gtceu:exquisite_diamond_gem", + "item_model_index": 0.16 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/emerald.json b/kubejs/data/tfc/trim_material/emerald.json deleted file mode 100644 index f068f749c..000000000 --- a/kubejs/data/tfc/trim_material/emerald.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "emerald_tfc", - "description": { - "color": "#11A036", - "translate": "trim_material.tfc.emerald" - }, - "ingredient": "minecraft:emerald", - "item_model_index": 0.2 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/emerald_tfc.json b/kubejs/data/tfc/trim_material/emerald_tfc.json new file mode 100644 index 000000000..96d24cefb --- /dev/null +++ b/kubejs/data/tfc/trim_material/emerald_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "emerald_tfc", + "description": { + "color": "#11c254", + "translate": "trim_material.tfc.emerald_tfc" + }, + "ingredient": "gtceu:exquisite_emerald_gem", + "item_model_index": 0.17 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/fluix_tfc.json b/kubejs/data/tfc/trim_material/fluix_tfc.json new file mode 100644 index 000000000..f4bd67e09 --- /dev/null +++ b/kubejs/data/tfc/trim_material/fluix_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "fluix_tfc", + "description": { + "color": "#53458d", + "translate": "trim_material.tfc.fluix_tfc" + }, + "ingredient": "tfg:exquisite_fluix_gem", + "item_model_index": 0.162 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/glass_tfc.json b/kubejs/data/tfc/trim_material/glass_tfc.json new file mode 100644 index 000000000..386f866a6 --- /dev/null +++ b/kubejs/data/tfc/trim_material/glass_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "glass_tfc", + "description": { + "color": "#c2c2c6", + "translate": "trim_material.tfc.glass_tfc" + }, + "ingredient": "gtceu:exquisite_glass_gem", + "item_model_index": 0.189 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/gold.json b/kubejs/data/tfc/trim_material/gold.json deleted file mode 100644 index 61d5d90e4..000000000 --- a/kubejs/data/tfc/trim_material/gold.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "gold_tfc", - "description": { - "color": "#DEB12D", - "translate": "trim_material.tfc.gold" - }, - "ingredient": "minecraft:gold_ingot", - "item_model_index": 0.9 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/gold_tfc.json b/kubejs/data/tfc/trim_material/gold_tfc.json new file mode 100644 index 000000000..b06fccfbd --- /dev/null +++ b/kubejs/data/tfc/trim_material/gold_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "gold_tfc", + "description": { + "color": "#ede65b", + "translate": "trim_material.tfc.gold_tfc" + }, + "ingredient": "create:golden_sheet", + "item_model_index": 0.164 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/green_sapphire_tfc.json b/kubejs/data/tfc/trim_material/green_sapphire_tfc.json new file mode 100644 index 000000000..c6376abdd --- /dev/null +++ b/kubejs/data/tfc/trim_material/green_sapphire_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "green_sapphire_tfc", + "description": { + "color": "#75af89", + "translate": "trim_material.tfc.green_sapphire_tfc" + }, + "ingredient": "gtceu:exquisite_green_sapphire_gem", + "item_model_index": 0.18 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/grossular_tfc.json b/kubejs/data/tfc/trim_material/grossular_tfc.json new file mode 100644 index 000000000..9b84af334 --- /dev/null +++ b/kubejs/data/tfc/trim_material/grossular_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "grossular_tfc", + "description": { + "color": "#c28b5c", + "translate": "trim_material.tfc.grossular_tfc" + }, + "ingredient": "gtceu:exquisite_grossular_gem", + "item_model_index": 0.19 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/lapis_lazuli.json b/kubejs/data/tfc/trim_material/lapis_lazuli.json deleted file mode 100644 index e44b3674e..000000000 --- a/kubejs/data/tfc/trim_material/lapis_lazuli.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "lapis_lazuli_tfc", - "description": { - "color": "#416E97", - "translate": "trim_material.tfc.lapis_lazuli" - }, - "ingredient": "minecraft:lapis_lazuli", - "item_model_index": 0.3 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/lapis_tfc.json b/kubejs/data/tfc/trim_material/lapis_tfc.json new file mode 100644 index 000000000..b7144c86d --- /dev/null +++ b/kubejs/data/tfc/trim_material/lapis_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "lapis_tfc", + "description": { + "color": "#6581c6", + "translate": "trim_material.tfc.lapis_tfc" + }, + "ingredient": "gtceu:exquisite_lapis_gem", + "item_model_index": 0.175 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/lazurite_tfc.json b/kubejs/data/tfc/trim_material/lazurite_tfc.json new file mode 100644 index 000000000..7033e6d65 --- /dev/null +++ b/kubejs/data/tfc/trim_material/lazurite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "lazurite_tfc", + "description": { + "color": "#1e29bb", + "translate": "trim_material.tfc.lazurite_tfc" + }, + "ingredient": "gtceu:exquisite_lazurite_gem", + "item_model_index": 0.192 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/malachite_tfc.json b/kubejs/data/tfc/trim_material/malachite_tfc.json new file mode 100644 index 000000000..5a3c59abb --- /dev/null +++ b/kubejs/data/tfc/trim_material/malachite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "malachite_tfc", + "description": { + "color": "#00b789", + "translate": "trim_material.tfc.malachite_tfc" + }, + "ingredient": "gtceu:exquisite_malachite_gem", + "item_model_index": 0.188 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/monazite_tfc.json b/kubejs/data/tfc/trim_material/monazite_tfc.json new file mode 100644 index 000000000..643bc21c4 --- /dev/null +++ b/kubejs/data/tfc/trim_material/monazite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "monazite_tfc", + "description": { + "color": "#9eb576", + "translate": "trim_material.tfc.monazite_tfc" + }, + "ingredient": "gtceu:exquisite_monazite_gem", + "item_model_index": 0.179 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/nether_quartz_tfc.json b/kubejs/data/tfc/trim_material/nether_quartz_tfc.json new file mode 100644 index 000000000..e7c4a4a33 --- /dev/null +++ b/kubejs/data/tfc/trim_material/nether_quartz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "nether_quartz_tfc", + "description": { + "color": "#bdb6b0", + "translate": "trim_material.tfc.nether_quartz_tfc" + }, + "ingredient": "gtceu:exquisite_nether_quartz_gem", + "item_model_index": 0.184 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/neutronium_tfc.json b/kubejs/data/tfc/trim_material/neutronium_tfc.json new file mode 100644 index 000000000..ca16c6a4c --- /dev/null +++ b/kubejs/data/tfc/trim_material/neutronium_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "neutronium_tfc", + "description": { + "color": "#d7d7db", + "translate": "trim_material.tfc.neutronium_tfc" + }, + "ingredient": "gtceu:neutronium_plate", + "item_model_index": 0.151 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/nickel_tfc.json b/kubejs/data/tfc/trim_material/nickel_tfc.json new file mode 100644 index 000000000..f246aa44d --- /dev/null +++ b/kubejs/data/tfc/trim_material/nickel_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "nickel_tfc", + "description": { + "color": "#bfd1ea", + "translate": "trim_material.tfc.nickel_tfc" + }, + "ingredient": "vintageimprovements:nickel_sheet", + "item_model_index": 0.166 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/olivine_tfc.json b/kubejs/data/tfc/trim_material/olivine_tfc.json new file mode 100644 index 000000000..1a61ba733 --- /dev/null +++ b/kubejs/data/tfc/trim_material/olivine_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "olivine_tfc", + "description": { + "color": "#7fad03", + "translate": "trim_material.tfc.olivine_tfc" + }, + "ingredient": "gtceu:exquisite_olivine_gem", + "item_model_index": 0.171 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/opal.json b/kubejs/data/tfc/trim_material/opal.json deleted file mode 100644 index 86c8e32cc..000000000 --- a/kubejs/data/tfc/trim_material/opal.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "opal_tfc", - "description": { - "color": "#75e7eb", - "translate": "trim_material.tfc.opal" - }, - "ingredient": "gtceu:opal_gem", - "item_model_index": 0.4 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/opal_tfc.json b/kubejs/data/tfc/trim_material/opal_tfc.json new file mode 100644 index 000000000..0c4f6b673 --- /dev/null +++ b/kubejs/data/tfc/trim_material/opal_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "opal_tfc", + "description": { + "color": "#bdadb6", + "translate": "trim_material.tfc.opal_tfc" + }, + "ingredient": "gtceu:exquisite_opal_gem", + "item_model_index": 0.172 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/platinum_tfc.json b/kubejs/data/tfc/trim_material/platinum_tfc.json new file mode 100644 index 000000000..0384f408c --- /dev/null +++ b/kubejs/data/tfc/trim_material/platinum_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "platinum_tfc", + "description": { + "color": "#d8cea1", + "translate": "trim_material.tfc.platinum_tfc" + }, + "ingredient": "vintageimprovements:platinum_sheet", + "item_model_index": 0.167 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/pyrite.json b/kubejs/data/tfc/trim_material/pyrite.json deleted file mode 100644 index c1b699a37..000000000 --- a/kubejs/data/tfc/trim_material/pyrite.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "pyrite_tfc", - "description": { - "color": "#e6c44c", - "translate": "trim_material.tfc.pyrite" - }, - "ingredient": "gtceu:raw_pyrite", - "item_model_index": 0.4 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/pyrite_tfc.json b/kubejs/data/tfc/trim_material/pyrite_tfc.json new file mode 100644 index 000000000..79b64479f --- /dev/null +++ b/kubejs/data/tfc/trim_material/pyrite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "pyrite_tfc", + "description": { + "color": "#a75e10", + "translate": "trim_material.tfc.pyrite_tfc" + }, + "ingredient": "gtceu:rich_raw_pyrite", + "item_model_index": 0.152 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/pyrope_tfc.json b/kubejs/data/tfc/trim_material/pyrope_tfc.json new file mode 100644 index 000000000..c8d120759 --- /dev/null +++ b/kubejs/data/tfc/trim_material/pyrope_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "pyrope_tfc", + "description": { + "color": "#b11344", + "translate": "trim_material.tfc.pyrope_tfc" + }, + "ingredient": "gtceu:exquisite_pyrope_gem", + "item_model_index": 0.193 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/quartzite_tfc.json b/kubejs/data/tfc/trim_material/quartzite_tfc.json new file mode 100644 index 000000000..10a554e72 --- /dev/null +++ b/kubejs/data/tfc/trim_material/quartzite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "quartzite_tfc", + "description": { + "color": "#b8bab8", + "translate": "trim_material.tfc.quartzite_tfc" + }, + "ingredient": "gtceu:exquisite_quartzite_gem", + "item_model_index": 0.186 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/realgar_tfc.json b/kubejs/data/tfc/trim_material/realgar_tfc.json new file mode 100644 index 000000000..e9a71df6c --- /dev/null +++ b/kubejs/data/tfc/trim_material/realgar_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "realgar_tfc", + "description": { + "color": "#c22e28", + "translate": "trim_material.tfc.realgar_tfc" + }, + "ingredient": "gtceu:exquisite_realgar_gem", + "item_model_index": 0.187 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/red_garnet_tfc.json b/kubejs/data/tfc/trim_material/red_garnet_tfc.json new file mode 100644 index 000000000..18b5b94cd --- /dev/null +++ b/kubejs/data/tfc/trim_material/red_garnet_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "red_garnet_tfc", + "description": { + "color": "#710910", + "translate": "trim_material.tfc.red_garnet_tfc" + }, + "ingredient": "gtceu:exquisite_red_garnet_gem", + "item_model_index": 0.177 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/redx_tfc.json b/kubejs/data/tfc/trim_material/redx_tfc.json new file mode 100644 index 000000000..05e2bac11 --- /dev/null +++ b/kubejs/data/tfc/trim_material/redx_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "redx_tfc", + "description": { + "color": "#a06156", + "translate": "trim_material.tfc.redx_tfc" + }, + "ingredient": "morered:red_alloy_wire", + "item_model_index": 0.153 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/rock_salt_tfc.json b/kubejs/data/tfc/trim_material/rock_salt_tfc.json new file mode 100644 index 000000000..3dd505eeb --- /dev/null +++ b/kubejs/data/tfc/trim_material/rock_salt_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rock_salt_tfc", + "description": { + "color": "#c2b2af", + "translate": "trim_material.tfc.rock_salt_tfc" + }, + "ingredient": "gtceu:exquisite_rock_salt_gem", + "item_model_index": 0.194 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/rose_gold.json b/kubejs/data/tfc/trim_material/rose_gold.json deleted file mode 100644 index a00816ab4..000000000 --- a/kubejs/data/tfc/trim_material/rose_gold.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "rose_gold_tfc", - "description": { - "color": "#fcdd86", - "translate": "trim_material.tfc.rose_gold" - }, - "ingredient": "gtceu:rose_gold_ingot", - "item_model_index": 0.95 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/rose_gold_tfc.json b/kubejs/data/tfc/trim_material/rose_gold_tfc.json new file mode 100644 index 000000000..80827c61c --- /dev/null +++ b/kubejs/data/tfc/trim_material/rose_gold_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rose_gold_tfc", + "description": { + "color": "#eddedb", + "translate": "trim_material.tfc.rose_gold_tfc" + }, + "ingredient": "vintageimprovements:rose_gold_sheet", + "item_model_index": 0.165 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/rose_quartz_tfc.json b/kubejs/data/tfc/trim_material/rose_quartz_tfc.json new file mode 100644 index 000000000..28d2d8250 --- /dev/null +++ b/kubejs/data/tfc/trim_material/rose_quartz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rose_quartz_tfc", + "description": { + "color": "#ba3458", + "translate": "trim_material.tfc.rose_quartz_tfc" + }, + "ingredient": "gtceu:exquisite_rose_quartz_gem", + "item_model_index": 0.161 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/ruby.json b/kubejs/data/tfc/trim_material/ruby.json deleted file mode 100644 index 02729ff7d..000000000 --- a/kubejs/data/tfc/trim_material/ruby.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "ruby_tfc", - "description": { - "color": "#971607", - "translate": "trim_material.tfc.ruby" - }, - "ingredient": "gtceu:ruby_gem", - "item_model_index": 0.5 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/ruby_tfc.json b/kubejs/data/tfc/trim_material/ruby_tfc.json new file mode 100644 index 000000000..5428d1c88 --- /dev/null +++ b/kubejs/data/tfc/trim_material/ruby_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "ruby_tfc", + "description": { + "color": "#a41b0c", + "translate": "trim_material.tfc.ruby_tfc" + }, + "ingredient": "gtceu:exquisite_ruby_gem", + "item_model_index": 0.195 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/rutile_tfc.json b/kubejs/data/tfc/trim_material/rutile_tfc.json new file mode 100644 index 000000000..cec9c58a1 --- /dev/null +++ b/kubejs/data/tfc/trim_material/rutile_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "rutile_tfc", + "description": { + "color": "#681c05", + "translate": "trim_material.tfc.rutile_tfc" + }, + "ingredient": "gtceu:exquisite_rutile_gem", + "item_model_index": 0.191 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/salt_tfc.json b/kubejs/data/tfc/trim_material/salt_tfc.json new file mode 100644 index 000000000..78c876ba8 --- /dev/null +++ b/kubejs/data/tfc/trim_material/salt_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "salt_tfc", + "description": { + "color": "#bebec2", + "translate": "trim_material.tfc.salt_tfc" + }, + "ingredient": "gtceu:exquisite_salt_gem", + "item_model_index": 0.196 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/sapphire.json b/kubejs/data/tfc/trim_material/sapphire.json deleted file mode 100644 index 4d7661b8a..000000000 --- a/kubejs/data/tfc/trim_material/sapphire.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "sapphire_tfc", - "description": { - "color": "#183dde", - "translate": "trim_material.tfc.sapphire" - }, - "ingredient": "gtceu:sapphire_gem", - "item_model_index": 0.6 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/sapphire_tfc.json b/kubejs/data/tfc/trim_material/sapphire_tfc.json new file mode 100644 index 000000000..a15fb6664 --- /dev/null +++ b/kubejs/data/tfc/trim_material/sapphire_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "sapphire_tfc", + "description": { + "color": "#2628b0", + "translate": "trim_material.tfc.sapphire_tfc" + }, + "ingredient": "gtceu:exquisite_sapphire_gem", + "item_model_index": 0.197 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/silver.json b/kubejs/data/tfc/trim_material/silver.json deleted file mode 100644 index bea687bed..000000000 --- a/kubejs/data/tfc/trim_material/silver.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "silver_tfc", - "description": { - "color": "#edeadf", - "translate": "trim_material.tfc.silver" - }, - "ingredient": "gtceu:silver_ingot", - "item_model_index": 0.8 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/silver_tfc.json b/kubejs/data/tfc/trim_material/silver_tfc.json new file mode 100644 index 000000000..52be79ddb --- /dev/null +++ b/kubejs/data/tfc/trim_material/silver_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "silver_tfc", + "description": { + "color": "#d8d8f4", + "translate": "trim_material.tfc.silver_tfc" + }, + "ingredient": "vintageimprovements:silver_sheet", + "item_model_index": 0.162 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/sodalite_tfc.json b/kubejs/data/tfc/trim_material/sodalite_tfc.json new file mode 100644 index 000000000..f0b18fac9 --- /dev/null +++ b/kubejs/data/tfc/trim_material/sodalite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "sodalite_tfc", + "description": { + "color": "#2e40c6", + "translate": "trim_material.tfc.sodalite_tfc" + }, + "ingredient": "gtceu:exquisite_sodalite_gem", + "item_model_index": 0.198 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/spessartine_tfc.json b/kubejs/data/tfc/trim_material/spessartine_tfc.json new file mode 100644 index 000000000..161014529 --- /dev/null +++ b/kubejs/data/tfc/trim_material/spessartine_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "spessartine_tfc", + "description": { + "color": "#c28017", + "translate": "trim_material.tfc.spessartine_tfc" + }, + "ingredient": "gtceu:exquisite_spessartine_gem", + "item_model_index": 0.181 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/sterling_silver.json b/kubejs/data/tfc/trim_material/sterling_silver.json deleted file mode 100644 index de8d2dd4d..000000000 --- a/kubejs/data/tfc/trim_material/sterling_silver.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "sterling_silver_tfc", - "description": { - "color": "#ccc7b6", - "translate": "trim_material.tfc.sterling_silver" - }, - "ingredient": "gtceu:sterling_silver_ingot", - "item_model_index": 0.85 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/sterling_silver_tfc.json b/kubejs/data/tfc/trim_material/sterling_silver_tfc.json new file mode 100644 index 000000000..91eeff03c --- /dev/null +++ b/kubejs/data/tfc/trim_material/sterling_silver_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "sterling_silver_tfc", + "description": { + "color": "#eae5d3", + "translate": "trim_material.tfc.sterling_silver_tfc" + }, + "ingredient": "gtceu:sterling_silver_plate", + "item_model_index": 0.163 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/titanium_tfc.json b/kubejs/data/tfc/trim_material/titanium_tfc.json new file mode 100644 index 000000000..6f4f0fda9 --- /dev/null +++ b/kubejs/data/tfc/trim_material/titanium_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "titanium_tfc", + "description": { + "color": "#c496d8", + "translate": "trim_material.tfc.titanium_tfc" + }, + "ingredient": "gtceu:titanium_plate", + "item_model_index": 0.168 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/topaz.json b/kubejs/data/tfc/trim_material/topaz.json deleted file mode 100644 index 5438319e3..000000000 --- a/kubejs/data/tfc/trim_material/topaz.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "asset_name": "topaz_tfc", - "description": { - "color": "#c27a0e", - "translate": "trim_material.tfc.topaz" - }, - "ingredient": "gtceu:topaz_gem", - "item_model_index": 0.7 -} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/topaz_tfc.json b/kubejs/data/tfc/trim_material/topaz_tfc.json new file mode 100644 index 000000000..bbdd3a171 --- /dev/null +++ b/kubejs/data/tfc/trim_material/topaz_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "topaz_tfc", + "description": { + "color": "#b1a42d", + "translate": "trim_material.tfc.topaz_tfc" + }, + "ingredient": "gtceu:exquisite_topaz_gem", + "item_model_index": 0.182 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/uvarovite_tfc.json b/kubejs/data/tfc/trim_material/uvarovite_tfc.json new file mode 100644 index 000000000..4d3fe567a --- /dev/null +++ b/kubejs/data/tfc/trim_material/uvarovite_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "uvarovite_tfc", + "description": { + "color": "#22b43b", + "translate": "trim_material.tfc.uvarovite_tfc" + }, + "ingredient": "gtceu:exquisite_uvarovite_gem", + "item_model_index": 0.183 +} \ No newline at end of file diff --git a/kubejs/data/tfc/trim_material/yellow_garnet_tfc.json b/kubejs/data/tfc/trim_material/yellow_garnet_tfc.json new file mode 100644 index 000000000..b60053f89 --- /dev/null +++ b/kubejs/data/tfc/trim_material/yellow_garnet_tfc.json @@ -0,0 +1,9 @@ +{ + "asset_name": "yellow_garnet_tfc", + "description": { + "color": "#bbc207", + "translate": "trim_material.tfc.yellow_garnet_tfc" + }, + "ingredient": "gtceu:exquisite_yellow_garnet_gem", + "item_model_index": 0.178 +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_amethyst.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_amethyst.json index bec605558..e5d1ef6e0 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_amethyst.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_amethyst.json @@ -1,493 +1,494 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 230, - "density": 0.25, - "min_y": -64, - "max_y": 26, - "size": 40, - "random_name": "deep_garnet_amethyst", - "height": 8, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:quartzite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:quartzite_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:quartzite_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:slate_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:slate_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:slate_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:phyllite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:phyllite_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:phyllite_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:schist_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:schist_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:schist_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:gneiss_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:gneiss_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:gneiss_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:marble_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:marble_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:marble_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:shale_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:shale_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:shale_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:claystone_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:claystone_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:claystone_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:limestone_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:limestone_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:limestone_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:conglomerate_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:conglomerate_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:conglomerate_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:dolomite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:dolomite_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:dolomite_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:chert_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:chert_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:chert_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:chalk_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:chalk_amethyst_ore", - "weight": 65 - }, - { - "block": "gtceu:chalk_opal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 20, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:red_garnet_bud_indicator", - "weight": 5 - }, - { - "block": "gtceu:yellow_garnet_bud_indicator", - "weight": 15 - }, - { - "block": "gtceu:amethyst_bud_indicator", - "weight": 65 - }, - { - "block": "gtceu:opal_bud_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 8, + "size": 40, + "rarity": 230, + "density": 0.25, + "min_y": -64, + "max_y": 26, + "random_name": "deep_garnet_amethyst", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:quartzite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:quartzite_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:slate_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:slate_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:slate_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:phyllite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:phyllite_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:schist_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:schist_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:schist_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:gneiss_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:gneiss_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:marble_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:marble_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:marble_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:shale_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:shale_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:shale_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:claystone_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:claystone_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:limestone_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:limestone_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:conglomerate_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:conglomerate_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:dolomite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:dolomite_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:chert_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:chert_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:chert_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:chalk_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_amethyst_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:chalk_opal_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:red_garnet_bud_indicator", + "weight": 5 + }, + { + "block": "gtceu:yellow_garnet_bud_indicator", + "weight": 15 + }, + { + "block": "gtceu:amethyst_bud_indicator", + "weight": 65 + }, + { + "block": "gtceu:opal_bud_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_opal.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_opal.json index afad3f078..2e91fad6c 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_opal.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_garnet_opal.json @@ -1,283 +1,285 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 220, - "density": 0.35, - "min_y": -64, - "max_y": 62, - "size": 26, - "random_name": "deep_garnet_opal", - "height": 6, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:rhyolite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:rhyolite_amethyst_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_opal_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_amethyst_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_opal_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:andesite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:andesite_amethyst_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_opal_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:dacite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:dacite_amethyst_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_opal_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:granite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_amethyst_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_opal_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:diorite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_amethyst_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_opal_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:gabbro_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_amethyst_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_opal_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 1 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 20, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:red_garnet_bud_indicator", - "weight": 5 - }, - { - "block": "gtceu:yellow_garnet_bud_indicator", - "weight": 15 - }, - { - "block": "gtceu:amethyst_bud_indicator", - "weight": 25 - }, - { - "block": "gtceu:opal_bud_indicator", - "weight": 55 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 6, + "size": 26, + "rarity": 220, + "density": 0.35, + "min_y": -64, + "max_y": 62, + "random_name": "deep_garnet_opal", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_amethyst_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_opal_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_amethyst_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_opal_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_amethyst_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_opal_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_amethyst_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_opal_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:granite_amethyst_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 1 + }, + { + "block": "gtceu:granite_opal_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_amethyst_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_opal_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_red_garnet_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_amethyst_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_opal_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:red_garnet_bud_indicator", + "weight": 5 + }, + { + "block": "gtceu:yellow_garnet_bud_indicator", + "weight": 15 + }, + { + "block": "gtceu:amethyst_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:opal_bud_indicator", + "weight": 55 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_gold.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_gold.json index da21f3756..24d21b7ae 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_gold.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_gold.json @@ -1,254 +1,256 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 260, - "density": 0.45, - "min_y": -64, - "max_y": 30, - "size": 32, - "random_name": "deep_gold", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:rhyolite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:rhyolite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:rhyolite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:andesite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:andesite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:andesite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:dacite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:dacite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:dacite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:granite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:granite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:diorite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:diorite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:gabbro_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:gabbro_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:goethite_indicator", - "weight": 5 - }, - { - "block": "tfc:ore/small_limonite", - "weight": 5 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 15 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 75 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 32, + "rarity": 260, + "density": 0.45, + "min_y": -64, + "max_y": 30, + "random_name": "deep_gold", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 5 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 5 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 15 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 75 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_hematite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_hematite.json index 884a10789..dbbcb2f17 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_hematite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_hematite.json @@ -1,197 +1,199 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.35, - "min_y": -64, - "max_y": 30, - "size": 30, - "random_name": "deep_hematite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:rhyolite_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:rhyolite_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:rhyolite_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:andesite_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:andesite_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:andesite_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:dacite_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:dacite_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:dacite_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:goethite_indicator", - "weight": 25 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 35 - }, - { - "block": "tfc:ore/small_limonite", - "weight": 15 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 5 - }, - { - "block": "gtceu:ruby_bud_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 30, + "rarity": 220, + "density": 0.35, + "min_y": -64, + "max_y": 30, + "random_name": "deep_hematite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:rhyolite_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 2 + }, + { + "block": "gtceu:rhyolite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:andesite_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 2 + }, + { + "block": "gtceu:andesite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 2 + }, + { + "block": "gtceu:dacite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 25 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 35 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 5 + }, + { + "block": "gtceu:ruby_bud_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_limonite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_limonite.json index 79d881616..c1e381ceb 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_limonite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_limonite.json @@ -1,119 +1,100 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 240, - "density": 0.35, - "min_y": -64, - "max_y": 30, - "size": 32, - "random_name": "deep_limonite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_goethite_ore", - "weight": 50 - }, - { - "block": "gtceu:marble_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:marble_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:marble_malachite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_malachite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_goethite_ore", - "weight": 50 - }, - { - "block": "gtceu:limestone_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:limestone_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:limestone_malachite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_malachite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:goethite_indicator", - "weight": 50 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 15 - }, - { - "block": "tfc:ore/small_limonite", - "weight": 15 - }, - { - "block": "tfc:ore/small_malachite", - "weight": 10 - }, - { - "block": "gtceu:malachite_bud_indicator", - "weight": 10 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 32, + "rarity": 240, + "density": 0.35, + "min_y": -64, + "max_y": 30, + "random_name": "deep_limonite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_goethite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 2 + }, + { + "block": "gtceu:marble_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:marble_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:marble_malachite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_malachite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_goethite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 2 + }, + { + "block": "gtceu:limestone_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_malachite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_malachite_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 50 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 15 + }, + { + "block": "tfc:ore/small_malachite", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json index c2e4e5e78..b1342e537 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_magnetite.json @@ -1,258 +1,259 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 205, - "density": 0.3, - "min_y": -64, - "max_y": 30, - "size": 34, - "random_name": "deep_magnetite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:shale_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:shale_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:shale_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:shale_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:claystone_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:claystone_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:claystone_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:claystone_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:limestone_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:limestone_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:limestone_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:limestone_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:conglomerate_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:conglomerate_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:conglomerate_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:conglomerate_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:dolomite_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:dolomite_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:dolomite_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:dolomite_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:chert_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:chert_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:chert_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:chert_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:chalk_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:chalk_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:chalk_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:chalk_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_magnetite", - "weight": 5 - }, - { - "block": "gtceu:vanadium_magnetite_indicator", - "weight": 15 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 15 - }, - { - "block": "firmalife:ore/small_chromite", - "weight": 60 - }, - { - "block": "gtceu:sapphire_bud_indicator", - "weight": 5 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 34, + "rarity": 205, + "density": 0.3, + "min_y": -64, + "max_y": 30, + "random_name": "deep_magnetite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:shale_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:claystone_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:limestone_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:conglomerate_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:conglomerate_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:conglomerate_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:dolomite_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:dolomite_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:dolomite_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:chert_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:chert_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:chalk_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_gold_ore", + "weight": 15 + }, + { + "block": "gtceu:chalk_sapphire_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_magnetite", + "weight": 5 + }, + { + "block": "gtceu:vanadium_magnetite_indicator", + "weight": 15 + }, + { + "block": "firmalife:ore/small_chromite", + "weight": 60 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 15 + }, + { + "block": "gtceu:sapphire_bud_indicator", + "weight": 5 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_molybdenum.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_molybdenum.json index 8d6340468..ab0c0b22d 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_molybdenum.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_molybdenum.json @@ -1,254 +1,256 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 245, - "density": 0.45, - "min_y": -64, - "max_y": 10, - "size": 26, - "random_name": "deep_molybdenum", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:rhyolite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:rhyolite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:rhyolite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:basalt_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:basalt_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:andesite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:andesite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:andesite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:dacite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:dacite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:dacite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:granite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:granite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:diorite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:diorite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:gabbro_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:gabbro_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:wulfenite_indicator", - "weight": 40 - }, - { - "block": "gtceu:molybdenite_indicator", - "weight": 30 - }, - { - "block": "gtceu:molybdenum_indicator", - "weight": 15 - }, - { - "block": "gtceu:powellite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 26, + "rarity": 245, + "density": 0.45, + "min_y": -64, + "max_y": 10, + "random_name": "deep_molybdenum", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:rhyolite_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:andesite_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_powellite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:wulfenite_indicator", + "weight": 40 + }, + { + "block": "gtceu:molybdenite_indicator", + "weight": 30 + }, + { + "block": "gtceu:molybdenum_indicator", + "weight": 15 + }, + { + "block": "gtceu:powellite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json index 2bf49d480..0465b213c 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_pitchblende.json @@ -1,236 +1,237 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.45, - "min_y": -64, - "max_y": -20, - "size": 24, - "random_name": "deep_pitchblende", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:granite_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:diorite_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:gabbro_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:quartzite_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:slate_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:phyllite_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:gneiss_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:marble_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:pitchblende_indicator", - "weight": 50 - }, - { - "block": "gtceu:uraninite_indicator", - "weight": 50 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 24, + "rarity": 220, + "density": 0.45, + "min_y": -64, + "max_y": -20, + "random_name": "deep_pitchblende", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:granite_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:slate_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:schist_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:marble_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:pitchblende_indicator", + "weight": 50 + }, + { + "block": "gtceu:uraninite_indicator", + "weight": 50 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json index 09514546f..31bfc9eb2 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sapphire.json @@ -1,162 +1,164 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 180, - "density": 0.35, - "min_y": -64, - "max_y": 26, - "size": 28, - "random_name": "deep_sapphire", - "height": 8, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:rhyolite_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:rhyolite_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:andesite_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:andesite_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:dacite_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:dacite_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:almandine_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:pyrope_bud_indicator", - "weight": 25 - }, - { - "block": "gtceu:sapphire_bud_indicator", - "weight": 15 - }, - { - "block": "gtceu:green_sapphire_bud_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 8, + "size": 28, + "rarity": 180, + "density": 0.35, + "min_y": -64, + "max_y": 26, + "random_name": "deep_sapphire", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:rhyolite_green_sapphire_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_green_sapphire_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:andesite_green_sapphire_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_green_sapphire_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:almandine_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:pyrope_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:sapphire_bud_indicator", + "weight": 15 + }, + { + "block": "gtceu:green_sapphire_bud_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_scheelite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_scheelite.json index d59749bf5..177deef3f 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_scheelite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_scheelite.json @@ -1,114 +1,115 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.35, - "min_y": -64, - "max_y": 0, - "size": 20, - "random_name": "deep_scheelite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:granite_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:diorite_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:gabbro_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:scheelite_indicator", - "weight": 45 - }, - { - "block": "gtceu:tungstate_indicator", - "weight": 35 - }, - { - "block": "gtceu:lithium_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 20, + "rarity": 220, + "density": 0.35, + "min_y": -64, + "max_y": 0, + "random_name": "deep_scheelite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:granite_lithium_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_lithium_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_lithium_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:scheelite_indicator", + "weight": 45 + }, + { + "block": "gtceu:tungstate_indicator", + "weight": 35 + }, + { + "block": "gtceu:lithium_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sheldonite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sheldonite.json index 49373b66b..86b5b4fd1 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sheldonite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_sheldonite.json @@ -1,247 +1,248 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 300, - "density": 0.3, - "min_y": -64, - "max_y": 0, - "size": 30, - "random_name": "deep_sheldonite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:quartzite_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:slate_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:phyllite_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:marble_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:bornite_indicator", - "weight": 35 - }, - { - "block": "gtceu:cooperite_indicator", - "weight": 25 - }, - { - "block": "gtceu:platinum_indicator", - "weight": 25 - }, - { - "block": "gtceu:palladium_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 30, + "rarity": 300, + "density": 0.3, + "min_y": -64, + "max_y": 0, + "random_name": "deep_sheldonite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:slate_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:slate_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:slate_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:schist_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:marble_palladium_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:bornite_indicator", + "weight": 35 + }, + { + "block": "gtceu:cooperite_indicator", + "weight": 25 + }, + { + "block": "gtceu:platinum_indicator", + "weight": 25 + }, + { + "block": "gtceu:palladium_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_topaz.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_topaz.json index d1ec86244..9d0986083 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_topaz.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/deep_topaz.json @@ -1,248 +1,249 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 260, - "density": 0.3, - "min_y": -64, - "max_y": 26, - "size": 28, - "random_name": "deep_topaz", - "height": 7, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:quartzite_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:slate_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:phyllite_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:marble_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:chalcocite_indicator", - "weight": 25 - }, - { - "block": "gtceu:bornite_indicator", - "weight": 15 - }, - { - "block": "gtceu:blue_topaz_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:topaz_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 7, + "size": 28, + "rarity": 260, + "density": 0.3, + "min_y": -64, + "max_y": 26, + "random_name": "deep_topaz", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:slate_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:slate_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:slate_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:schist_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:schist_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:marble_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:marble_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_bornite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:blue_topaz_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:topaz_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:chalcocite_indicator", + "weight": 25 + }, + { + "block": "gtceu:bornite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json index 192f337a9..4696daff8 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_apatite.json @@ -1,240 +1,241 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.25, - "min_y": -32, - "max_y": 60, - "size": 34, - "random_name": "normal_apatite_", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:granite_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:diorite_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:gabbro_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:quartzite_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:quartzite_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:slate_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:slate_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:phyllite_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:phyllite_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:gneiss_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:marble_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:marble_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:tricalcium_phosphate_indicator", - "weight": 35 - }, - { - "block": "gtceu:pyrochlore_indicator", - "weight": 15 - }, - { - "block": "gtceu:apatite_bud_indicator", - "weight": 50 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 34, + "rarity": 220, + "density": 0.25, + "min_y": -32, + "max_y": 60, + "random_name": "normal_apatite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:granite_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:diorite_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:gabbro_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:quartzite_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:slate_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:slate_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:phyllite_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:schist_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:gneiss_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:marble_pyrochlore_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:apatite_bud_indicator", + "weight": 50 + }, + { + "block": "gtceu:tricalcium_phosphate_indicator", + "weight": 35 + }, + { + "block": "gtceu:pyrochlore_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_basaltic_sands.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_basaltic_sands.json index 4ce2a92ac..b5cc3d0bd 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_basaltic_sands.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_basaltic_sands.json @@ -1,13 +1,14 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "type": "tfc:disc_vein", "config": { + "height": 9, + "size": 48, "rarity": 160, "density": 0.3, "min_y": -32, "max_y": 60, - "size": 48, "random_name": "normal_basaltic_sands", - "height": 9, "blocks": [ { "replace": [ @@ -34,6 +35,7 @@ }, { "replace": [ + "minecraft:basalt", "tfc:rock/raw/basalt" ], "with": [ @@ -56,7 +58,7 @@ ] } ], - "indicator": { + "indicator": { "rarity": 15, "depth": 20, "underground_rarity": 40, @@ -66,15 +68,15 @@ "block": "gtceu:basaltic_mineral_sand_indicator", "weight": 35 }, - { + { "block": "gtceu:granitic_mineral_sand_indicator", "weight": 25 }, - { + { "block": "gtceu:fullers_earth_indicator", "weight": 25 }, - { + { "block": "gtceu:gypsum_indicator", "weight": 15 } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bauxite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bauxite.json index 99a6a92fa..002dcb3f7 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bauxite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bauxite.json @@ -1,166 +1,167 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 185, - "density": 0.3, - "min_y": -32, - "max_y": 60, - "size": 40, - "random_name": "normal_bauxite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:shale_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:shale_aluminium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:claystone_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:claystone_aluminium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:limestone_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:limestone_aluminium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:conglomerate_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:conglomerate_aluminium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:dolomite_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:dolomite_aluminium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:chert_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:chert_aluminium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:chalk_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:chalk_aluminium_ore", - "weight": 25 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:bauxite_indicator", - "weight": 45 - }, - { - "block": "gtceu:ilmenite_indicator", - "weight": 30 - }, - { - "block": "gtceu:aluminium_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 185, + "density": 0.3, + "min_y": -32, + "max_y": 60, + "random_name": "normal_bauxite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:shale_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:shale_aluminium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:claystone_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:claystone_aluminium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:limestone_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:limestone_aluminium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:conglomerate_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:conglomerate_aluminium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:dolomite_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:dolomite_aluminium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:chert_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:chert_aluminium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:chalk_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:chalk_aluminium_ore", + "weight": 25 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:bauxite_indicator", + "weight": 45 + }, + { + "block": "gtceu:ilmenite_indicator", + "weight": 30 + }, + { + "block": "gtceu:aluminium_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_beryllium.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_beryllium.json index 9c9b1156b..1f76cc062 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_beryllium.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_beryllium.json @@ -1,115 +1,117 @@ { - "type": "tfc:pipe_vein", - "config": { - "rarity": 180, - "density": 0.35, - "min_y": -32, - "max_y": 50, - "random_name": "normal_beryllium", - "min_skew": 6, - "max_skew": 18, - "min_slant": 0, - "max_slant": 4, - "sign": 0, - "height": 60, - "radius": 10, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:rhyolite_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:rhyolite_thorium_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:basalt_thorium_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:andesite_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:andesite_thorium_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:dacite_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:dacite_thorium_ore", - "weight": 15 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:beryllium_indicator", - "weight": 35 - }, - { - "block": "gtceu:thorium_indicator", - "weight": 15 - }, - { - "block": "gtceu:emerald_bud_indicator", - "weight": 50 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:pipe_vein", + "config": { + "height": 60, + "radius": 10, + "min_skew": 6, + "max_skew": 18, + "min_slant": 0, + "max_slant": 4, + "sign": 0, + "rarity": 250, + "density": 0.35, + "min_y": -32, + "max_y": 50, + "random_name": "normal_beryllium", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:rhyolite_thorium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:basalt_thorium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:andesite_thorium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:dacite_thorium_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:beryllium_indicator", + "weight": 35 + }, + { + "block": "gtceu:emerald_bud_indicator", + "weight": 50 + }, + { + "block": "gtceu:thorium_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json index b1b6cceb8..8dfaed1bf 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_bismuthinite.json @@ -1,223 +1,224 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_bismuthinite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:granite_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:granite_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:diorite_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:diorite_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:gabbro_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:gabbro_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:shale_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:shale_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:claystone_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:claystone_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:limestone_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:limestone_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:conglomerate_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:conglomerate_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:dolomite_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:dolomite_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:chert_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:chert_lead_ore", - "weight": 11 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_bismuth_ore", - "weight": 80 - }, - { - "block": "gtceu:chalk_sulfur_ore", - "weight": 9 - }, - { - "block": "gtceu:chalk_lead_ore", - "weight": 11 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 40, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_bismuthinite", - "weight": 80 - }, - { - "block": "gtceu:sulfur_indicator", - "weight": 9 - }, - { - "block": "gtceu:lead_indicator", - "weight": 11 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 170, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_bismuthinite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:granite_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:granite_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:diorite_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:diorite_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:gabbro_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:gabbro_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:shale_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:shale_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:claystone_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:claystone_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:limestone_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:limestone_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:conglomerate_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:conglomerate_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:dolomite_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:dolomite_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:chert_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:chert_lead_ore", + "weight": 11 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_bismuth_ore", + "weight": 80 + }, + { + "block": "gtceu:chalk_sulfur_ore", + "weight": 9 + }, + { + "block": "gtceu:chalk_lead_ore", + "weight": 11 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_bismuthinite", + "weight": 80 + }, + { + "block": "gtceu:sulfur_indicator", + "weight": 9 + }, + { + "block": "gtceu:lead_indicator", + "weight": 11 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json index 62952272e..89a719d27 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_cassiterite.json @@ -1,94 +1,95 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_cassiterite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:granite_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:diorite_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:gabbro_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_cassiterite", - "weight": 100 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 170, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_cassiterite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_cassiterite", + "weight": 100 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json index 6276d069b..59a041a82 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_coal.json @@ -1,134 +1,135 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 215, - "density": 0.55, - "min_y": 0, - "max_y": 210, - "size": 60, - "random_name": "normal_coal", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_coal_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_coal_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_coal_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_coal_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_coal_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_coal_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_coal_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_coal_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_coal_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_coal_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_coal_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_coal_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_coal_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_coal_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:coal_indicator", - "weight": 95 - }, - { - "block": "gtceu:coal_bud_indicator", - "weight": 5 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 60, + "rarity": 215, + "density": 0.55, + "min_y": 0, + "max_y": 210, + "random_name": "normal_coal", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_coal_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_coal_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_coal_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_coal_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_coal_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_coal_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_coal_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_coal_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 50, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:coal_indicator", + "weight": 95 + }, + { + "block": "gtceu:coal_bud_indicator", + "weight": 5 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_copper.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_copper.json index b93f9ea45..7d27df5ef 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_copper.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_copper.json @@ -1,145 +1,147 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_copper", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:rhyolite_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:rhyolite_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:rhyolite_copper_ore", - "weight": 65 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:basalt_copper_ore", - "weight": 65 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:andesite_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:andesite_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:andesite_copper_ore", - "weight": 65 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:dacite_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:dacite_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:dacite_copper_ore", - "weight": 65 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 85, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:chalcopyrite_indicator", - "weight": 20 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 5 - }, - { - "block": "gtceu:pyrite_indicator", - "weight": 10 - }, - { - "block": "tfc:ore/small_native_copper", - "weight": 65 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 170, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_copper", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:rhyolite_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:rhyolite_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:basalt_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:andesite_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:andesite_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:dacite_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 85, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:chalcopyrite_indicator", + "weight": 20 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 10 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 65 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnet_tin.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnet_tin.json index 3ab7ead90..f8a3b27d5 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnet_tin.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnet_tin.json @@ -1,497 +1,499 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 270, - "density": 0.25, - "min_y": -40, - "max_y": 64, - "size": 40, - "random_name": "normal_garnet_tin", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:rhyolite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:andesite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:dacite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:quartzite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:slate_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:phyllite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:marble_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:shale_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:shale_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:shale_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:claystone_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:claystone_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:claystone_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:limestone_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:limestone_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:limestone_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:conglomerate_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:conglomerate_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:conglomerate_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:dolomite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:dolomite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:dolomite_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:chert_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:chert_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:chert_diatomite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:chalk_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:chalk_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:chalk_diatomite_ore", - "weight": 15 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_cassiterite", - "weight": 35 - }, - { - "block": "gtceu:garnet_sand_indicator", - "weight": 25 - }, - { - "block": "gtceu:asbestos_indicator", - "weight": 25 - }, - { - "block": "gtceu:diatomite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 270, + "density": 0.25, + "min_y": -40, + "max_y": 64, + "random_name": "normal_garnet_tin", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:rhyolite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:rhyolite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:andesite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:andesite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:granite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:diorite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:gabbro_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:quartzite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:quartzite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:quartzite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:slate_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:slate_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:slate_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:phyllite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:phyllite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:phyllite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:schist_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:schist_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:schist_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:gneiss_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:gneiss_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:gneiss_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:marble_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:marble_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:marble_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:shale_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:claystone_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:limestone_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:conglomerate_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:dolomite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:chert_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:chalk_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_diatomite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_cassiterite", + "weight": 35 + }, + { + "block": "gtceu:garnet_sand_indicator", + "weight": 25 + }, + { + "block": "gtceu:asbestos_indicator", + "weight": 25 + }, + { + "block": "gtceu:diatomite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnierite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnierite.json index c0b63d678..73786ebeb 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnierite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_garnierite.json @@ -1,99 +1,100 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 160, - "density": 0.4, - "min_y": -32, - "max_y": 60, - "size": 40, - "random_name": "normal_garnierite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_garnierite_ore", - "weight": 30 - }, - { - "block": "gtceu:gabbro_nickel_ore", - "weight": 10 - }, - { - "block": "gtceu:gabbro_cobaltite_ore", - "weight": 20 - }, - { - "block": "gtceu:gabbro_pentlandite_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_cobalt_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_garnierite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_garnierite_ore", - "weight": 30 - }, - { - "block": "gtceu:diorite_nickel_ore", - "weight": 10 - }, - { - "block": "gtceu:diorite_cobaltite_ore", - "weight": 20 - }, - { - "block": "gtceu:diorite_pentlandite_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_cobalt_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_garnierite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 70, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_garnierite", - "weight": 55 - }, - { - "block": "gtceu:cobaltite_indicator", - "weight": 20 - }, - { - "block": "gtceu:pentlandite_indicator", - "weight": 10 - }, - { - "block": "gtceu:cobalt_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 160, + "density": 0.4, + "min_y": -32, + "max_y": 60, + "random_name": "normal_garnierite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_garnierite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_nickel_ore", + "weight": 10 + }, + { + "block": "gtceu:gabbro_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_pentlandite_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_cobalt_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_garnierite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_nickel_ore", + "weight": 10 + }, + { + "block": "gtceu:diorite_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_pentlandite_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_cobalt_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 70, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_garnierite", + "weight": 55 + }, + { + "block": "gtceu:cobaltite_indicator", + "weight": 20 + }, + { + "block": "gtceu:pentlandite_indicator", + "weight": 10 + }, + { + "block": "gtceu:cobalt_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_gold.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_gold.json index aedce6b14..dace25d0e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_gold.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_gold.json @@ -1,227 +1,229 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 170, - "density": 0.4, - "min_y": -32, - "max_y": 60, - "size": 40, - "random_name": "normal_gold", - "height": 12, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:rhyolite_yellow_limonite_ore", - "weight": 20 - }, - { - "block": "gtceu:rhyolite_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:rhyolite_gold_ore", - "weight": 55 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_yellow_limonite_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_gold_ore", - "weight": 55 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:andesite_yellow_limonite_ore", - "weight": 20 - }, - { - "block": "gtceu:andesite_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:andesite_gold_ore", - "weight": 55 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:dacite_yellow_limonite_ore", - "weight": 20 - }, - { - "block": "gtceu:dacite_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:dacite_gold_ore", - "weight": 55 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:granite_yellow_limonite_ore", - "weight": 20 - }, - { - "block": "gtceu:granite_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:granite_gold_ore", - "weight": 55 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:diorite_yellow_limonite_ore", - "weight": 20 - }, - { - "block": "gtceu:diorite_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:diorite_gold_ore", - "weight": 55 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:gabbro_yellow_limonite_ore", - "weight": 20 - }, - { - "block": "gtceu:gabbro_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:gabbro_gold_ore", - "weight": 55 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_limonite", - "weight": 20 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 20 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 55 - }, - { - "block": "gtceu:goethite_indicator", - "weight": 5 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 12, + "size": 40, + "rarity": 170, + "density": 0.4, + "min_y": -32, + "max_y": 60, + "random_name": "normal_gold", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_yellow_limonite_ore", + "weight": 20 + }, + { + "block": "gtceu:rhyolite_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:rhyolite_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_yellow_limonite_ore", + "weight": 20 + }, + { + "block": "gtceu:andesite_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:andesite_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_yellow_limonite_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_yellow_limonite_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_yellow_limonite_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_yellow_limonite_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_gold_ore", + "weight": 55 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 5 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 20 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 20 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 55 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json index 685bd52f7..6b74d783e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_graphite.json @@ -1,414 +1,416 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 80, - "density": 0.4, - "min_y": -64, - "max_y": -16, - "size": 16, - "random_name": "normal_graphite", - "height": 6, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:gabbro_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:granite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:diorite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:schist_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:gneiss_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:quartzite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:phyllite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:slate_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:marble_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:dacite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:rhyolite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:andesite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:basalt_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:shale_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:shale_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:claystone_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:claystone_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:limestone_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:limestone_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:conglomerate_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:conglomerate_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:dolomite_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:dolomite_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:chert_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:chert_coal_ore", - "weight": 30 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:chalk_diamond_ore", - "weight": 25 - }, - { - "block": "gtceu:chalk_coal_ore", - "weight": 30 - } - ] - } - ], - "indicator": { - "rarity": 10, - "depth": 80, - "underground_rarity": 30, - "underground_count": 400, - "blocks": [ - { - "block": "gtceu:graphite_indicator", - "weight": 45 - }, - { - "block": "gtceu:coal_indicator", - "weight": 30 - }, - { - "block": "gtceu:diamond_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 6, + "size": 16, + "rarity": 80, + "density": 0.4, + "min_y": -64, + "max_y": -16, + "random_name": "normal_graphite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:gabbro_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:granite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:diorite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:schist_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:schist_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:gneiss_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:gneiss_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:quartzite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:quartzite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:phyllite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:phyllite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:slate_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:slate_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:marble_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:marble_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:dacite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:rhyolite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:rhyolite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:andesite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:andesite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:basalt_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:shale_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:claystone_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:limestone_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:conglomerate_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:dolomite_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:chert_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_coal_ore", + "weight": 30 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:chalk_diamond_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_coal_ore", + "weight": 30 + } + ] + } + ], + "indicator": { + "rarity": 10, + "depth": 20, + "underground_rarity": 30, + "underground_count": 400, + "blocks": [ + { + "block": "gtceu:graphite_indicator", + "weight": 45 + }, + { + "block": "gtceu:coal_indicator", + "weight": 30 + }, + { + "block": "gtceu:diamond_bud_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_hematite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_hematite.json index 56e9b3498..492ec069d 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_hematite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_hematite.json @@ -1,145 +1,147 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 210, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_hematite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_goethite_ore", - "weight": 15 - }, - { - "block": "gtceu:rhyolite_yellow_limonite_ore", - "weight": 30 - }, - { - "block": "gtceu:rhyolite_hematite_ore", - "weight": 50 - }, - { - "block": "gtceu:rhyolite_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_goethite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_yellow_limonite_ore", - "weight": 30 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 50 - }, - { - "block": "gtceu:basalt_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_goethite_ore", - "weight": 15 - }, - { - "block": "gtceu:andesite_yellow_limonite_ore", - "weight": 30 - }, - { - "block": "gtceu:andesite_hematite_ore", - "weight": 50 - }, - { - "block": "gtceu:andesite_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_goethite_ore", - "weight": 15 - }, - { - "block": "gtceu:dacite_yellow_limonite_ore", - "weight": 30 - }, - { - "block": "gtceu:dacite_hematite_ore", - "weight": 50 - }, - { - "block": "gtceu:dacite_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 50, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_hematite", - "weight": 50 - }, - { - "block": "tfc:ore/small_limonite", - "weight": 30 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 5 - }, - { - "block": "gtceu:goethite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 210, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_hematite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:rhyolite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:rhyolite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_gold_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:andesite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:andesite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_gold_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_yellow_limonite_ore", + "weight": 30 + }, + { + "block": "gtceu:dacite_hematite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_gold_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 50, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 30 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 50 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 5 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lapis.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lapis.json index 844c715e3..ff8ee05f3 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lapis.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lapis.json @@ -1,175 +1,176 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.25, - "min_y": -60, - "max_y": 10, - "size": 50, - "random_name": "normal_lapis", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:quartzite_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:quartzite_calcite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:slate_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:slate_calcite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:phyllite_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:phyllite_calcite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_calcite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_calcite_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:marble_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:marble_calcite_ore", - "weight": 15 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:calcite_indicator", - "weight": 15 - }, - { - "block": "gtceu:lazurite_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:sodalite_bud_indicator", - "weight": 25 - }, - { - "block": "gtceu:lapis_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 170, + "density": 0.25, + "min_y": -60, + "max_y": 10, + "random_name": "normal_lapis", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:quartzite_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:quartzite_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:quartzite_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:slate_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:slate_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:slate_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:phyllite_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:phyllite_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:phyllite_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:schist_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:schist_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:schist_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:gneiss_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:gneiss_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:gneiss_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:marble_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:marble_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:marble_calcite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:lazurite_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:sodalite_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:lapis_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:calcite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_limonite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_limonite.json index cc6796943..a06e3e613 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_limonite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_limonite.json @@ -1,91 +1,92 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 190, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_limonite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_goethite_ore", - "weight": 15 - }, - { - "block": "gtceu:marble_yellow_limonite_ore", - "weight": 50 - }, - { - "block": "gtceu:marble_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:marble_malachite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_goethite_ore", - "weight": 15 - }, - { - "block": "gtceu:limestone_yellow_limonite_ore", - "weight": 50 - }, - { - "block": "gtceu:limestone_hematite_ore", - "weight": 20 - }, - { - "block": "gtceu:limestone_malachite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 50, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_limonite", - "weight": 50 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 20 - }, - { - "block": "tfc:ore/small_malachite", - "weight": 15 - }, - { - "block": "gtceu:goethite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 190, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_limonite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:marble_yellow_limonite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_yellow_limonite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:marble_malachite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_goethite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_yellow_limonite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_yellow_limonite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_hematite_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_malachite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 50, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 50 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 20 + }, + { + "block": "tfc:ore/small_malachite", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lubricant.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lubricant.json index 26e2a2ff2..e3eddfce0 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lubricant.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_lubricant.json @@ -1,11 +1,12 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "type": "tfc:cluster_vein", "config": { + "size": 36, "rarity": 190, "density": 0.25, "min_y": -40, "max_y": 56, - "size": 36, "random_name": "normal_lubricant", "blocks": [ { @@ -90,7 +91,7 @@ ] } ], - "indicator": { + "indicator": { "rarity": 15, "depth": 20, "underground_rarity": 40, @@ -100,19 +101,19 @@ "block": "gtceu:soapstone_indicator", "weight": 30 }, - { + { "block": "gtceu:talc_indicator", "weight": 20 }, - { + { "block": "gtceu:glauconite_sand_indicator", "weight": 25 }, - { + { "block": "gtceu:pentlandite_indicator", "weight": 15 }, - { + { "block": "gtceu:trona_indicator", "weight": 10 } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_magnetite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_magnetite.json index 3fc955d5b..78e3a0a70 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_magnetite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_magnetite.json @@ -1,226 +1,227 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 200, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_magnetite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_magnetite_ore", - "weight": 70 - }, - { - "block": "gtceu:shale_vanadium_magnetite_ore", - "weight": 25 - }, - { - "block": "gtceu:shale_gold_ore", - "weight": 10 - }, - { - "block": "gtceu:shale_chromite_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_magnetite_ore", - "weight": 70 - }, - { - "block": "gtceu:claystone_vanadium_magnetite_ore", - "weight": 25 - }, - { - "block": "gtceu:claystone_gold_ore", - "weight": 10 - }, - { - "block": "gtceu:claystone_chromite_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_magnetite_ore", - "weight": 70 - }, - { - "block": "gtceu:limestone_vanadium_magnetite_ore", - "weight": 25 - }, - { - "block": "gtceu:limestone_gold_ore", - "weight": 10 - }, - { - "block": "gtceu:limestone_chromite_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_magnetite_ore", - "weight": 70 - }, - { - "block": "gtceu:conglomerate_vanadium_magnetite_ore", - "weight": 25 - }, - { - "block": "gtceu:conglomerate_gold_ore", - "weight": 10 - }, - { - "block": "gtceu:conglomerate_chromite_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_magnetite_ore", - "weight": 70 - }, - { - "block": "gtceu:dolomite_vanadium_magnetite_ore", - "weight": 25 - }, - { - "block": "gtceu:dolomite_gold_ore", - "weight": 10 - }, - { - "block": "gtceu:dolomite_chromite_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_magnetite_ore", - "weight": 70 - }, - { - "block": "gtceu:chert_vanadium_magnetite_ore", - "weight": 25 - }, - { - "block": "gtceu:chert_gold_ore", - "weight": 10 - }, - { - "block": "gtceu:chert_chromite_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_magnetite_ore", - "weight": 70 - }, - { - "block": "gtceu:chalk_vanadium_magnetite_ore", - "weight": 25 - }, - { - "block": "gtceu:chalk_gold_ore", - "weight": 10 - }, - { - "block": "gtceu:chalk_chromite_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_magnetite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 35, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_magnetite", - "weight": 70 - }, - { - "block": "gtceu:vanadium_magnetite_indicator", - "weight": 25 - }, - { - "block": "firmalife:ore/small_chromite", - "weight": 5 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 10 - } - ] - } - } -} + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 200, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_magnetite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_magnetite_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_vanadium_magnetite_ore", + "weight": 25 + }, + { + "block": "gtceu:shale_gold_ore", + "weight": 10 + }, + { + "block": "gtceu:shale_chromite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_magnetite_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_vanadium_magnetite_ore", + "weight": 25 + }, + { + "block": "gtceu:claystone_gold_ore", + "weight": 10 + }, + { + "block": "gtceu:claystone_chromite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_magnetite_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_vanadium_magnetite_ore", + "weight": 25 + }, + { + "block": "gtceu:limestone_gold_ore", + "weight": 10 + }, + { + "block": "gtceu:limestone_chromite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_magnetite_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:conglomerate_vanadium_magnetite_ore", + "weight": 25 + }, + { + "block": "gtceu:conglomerate_gold_ore", + "weight": 10 + }, + { + "block": "gtceu:conglomerate_chromite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_magnetite_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:dolomite_vanadium_magnetite_ore", + "weight": 25 + }, + { + "block": "gtceu:dolomite_gold_ore", + "weight": 10 + }, + { + "block": "gtceu:dolomite_chromite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_magnetite_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:chert_vanadium_magnetite_ore", + "weight": 25 + }, + { + "block": "gtceu:chert_gold_ore", + "weight": 10 + }, + { + "block": "gtceu:chert_chromite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_magnetite_ore", + "weight": 70 + }, + { + "block": "gtceu:raw_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:chalk_vanadium_magnetite_ore", + "weight": 25 + }, + { + "block": "gtceu:chalk_gold_ore", + "weight": 10 + }, + { + "block": "gtceu:chalk_chromite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 50, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_magnetite", + "weight": 70 + }, + { + "block": "gtceu:vanadium_magnetite_indicator", + "weight": 25 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 10 + }, + { + "block": "firmalife:ore/small_chromite", + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_manganese.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_manganese.json index f5c779765..7cf8b5eec 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_manganese.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_manganese.json @@ -1,290 +1,292 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 195, - "density": 0.3, - "min_y": -32, - "max_y": 60, - "size": 40, - "random_name": "normal_manganese", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:rhyolite_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:rhyolite_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:rhyolite_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:basalt_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:andesite_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:andesite_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:andesite_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:dacite_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:dacite_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:dacite_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:shale_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:shale_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:shale_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:claystone_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:claystone_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:claystone_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:limestone_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:limestone_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:limestone_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:conglomerate_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:conglomerate_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:conglomerate_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:dolomite_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:dolomite_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:dolomite_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:chert_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:chert_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:chert_tantalite_ore", - "weight": 10 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:chalk_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:chalk_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:chalk_tantalite_ore", - "weight": 10 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:pyrolusite_indicator", - "weight": 20 - }, - { - "block": "gtceu:tantalite_indicator", - "weight": 10 - }, - { - "block": "gtceu:grossular_bud_indicator", - "weight": 30 - }, - { - "block": "gtceu:spessartine_bud_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 195, + "density": 0.3, + "min_y": -32, + "max_y": 60, + "random_name": "normal_manganese", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:rhyolite_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:rhyolite_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:rhyolite_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:basalt_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:basalt_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:andesite_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:andesite_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:andesite_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:dacite_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:dacite_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:shale_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:shale_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:claystone_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:claystone_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:limestone_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:limestone_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:conglomerate_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:conglomerate_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:dolomite_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:dolomite_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:chert_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:chert_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:chalk_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:chalk_tantalite_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:grossular_bud_indicator", + "weight": 30 + }, + { + "block": "gtceu:spessartine_bud_indicator", + "weight": 20 + }, + { + "block": "gtceu:pyrolusite_indicator", + "weight": 20 + }, + { + "block": "gtceu:tantalite_indicator", + "weight": 10 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json index c3475dbc6..cc11da4db 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_mica.json @@ -1,11 +1,12 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "type": "tfc:cluster_vein", "config": { + "size": 36, "rarity": 190, "density": 0.25, "min_y": 0, "max_y": 210, - "size": 36, "random_name": "normal_mica", "blocks": [ { @@ -216,7 +217,7 @@ ] } ], - "indicator": { + "indicator": { "rarity": 15, "depth": 20, "underground_rarity": 40, @@ -226,15 +227,15 @@ "block": "gtceu:kyanite_indicator", "weight": 35 }, - { + { "block": "gtceu:mica_indicator", "weight": 25 }, - { + { "block": "gtceu:bauxite_indicator", "weight": 25 }, - { + { "block": "gtceu:pollucite_indicator", "weight": 15 } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_monazite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_monazite.json index 4c001e8d2..9dc75d202 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_monazite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_monazite.json @@ -1,90 +1,91 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 185, - "density": 0.25, - "min_y": -32, - "max_y": 50, - "size": 40, - "random_name": "normal_monazite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:granite_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_neodymium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:diorite_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_neodymium_ore", - "weight": 25 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:gabbro_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_neodymium_ore", - "weight": 25 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:bastnasite_indicator", - "weight": 50 - }, - { - "block": "gtceu:neodymium_indicator", - "weight": 25 - }, - { - "block": "gtceu:monazite_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 185, + "density": 0.25, + "min_y": -32, + "max_y": 50, + "random_name": "normal_monazite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:granite_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_neodymium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:diorite_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_neodymium_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:gabbro_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_neodymium_ore", + "weight": 25 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:bastnasite_indicator", + "weight": 50 + }, + { + "block": "gtceu:monazite_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:neodymium_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_oilsands.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_oilsands.json index 926d32187..5ec1ce356 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_oilsands.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_oilsands.json @@ -1,130 +1,131 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 185, - "density": 0.20, - "min_y": 0, - "max_y": 70, - "size": 55, - "random_name": "normal_oilsands", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_oilsands_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_oilsands_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_oilsands_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_oilsands_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_oilsands_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_oilsands_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_oilsands_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_oilsands_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_oilsands_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_oilsands_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_oilsands_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_oilsands_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_oilsands_ore", - "weight": 100 - }, - { - "block": "gtceu:raw_oilsands_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:oilsands_indicator", - "weight": 100 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 55, + "rarity": 185, + "density": 0.2, + "min_y": 0, + "max_y": 70, + "random_name": "normal_oilsands", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_oilsands_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_oilsands_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_oilsands_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_oilsands_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_oilsands_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_oilsands_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_oilsands_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_oilsands_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_oilsands_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_oilsands_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_oilsands_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_oilsands_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_oilsands_ore", + "weight": 100 + }, + { + "block": "gtceu:raw_oilsands_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:oilsands_indicator", + "weight": 100 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_olivine.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_olivine.json index ab6a0ba4b..98d8a9584 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_olivine.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_olivine.json @@ -1,198 +1,200 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 180, - "density": 0.25, - "min_y": -40, - "max_y": 30, - "size": 26, - "random_name": "normal_olivine", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:rhyolite_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:rhyolite_glauconite_sand_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_glauconite_sand_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:andesite_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:andesite_glauconite_sand_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:dacite_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:dacite_glauconite_sand_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_glauconite_sand_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_glauconite_sand_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_glauconite_sand_ore", - "weight": 15 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:bentonite_indicator", - "weight": 35 - }, - { - "block": "gtceu:magnesite_indicator", - "weight": 25 - }, - { - "block": "gtceu:glauconite_sand_indicator", - "weight": 15 - }, - { - "block": "gtceu:olivine_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 26, + "rarity": 180, + "density": 0.25, + "min_y": -40, + "max_y": 30, + "random_name": "normal_olivine", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:rhyolite_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:rhyolite_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:basalt_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:andesite_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:andesite_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:dacite_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:granite_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:granite_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:diorite_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:diorite_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:gabbro_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:gabbro_glauconite_sand_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:bentonite_indicator", + "weight": 35 + }, + { + "block": "gtceu:magnesite_indicator", + "weight": 25 + }, + { + "block": "gtceu:olivine_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:glauconite_sand_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_quartz.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_quartz.json index d2e54f224..b45d00c8c 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_quartz.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_quartz.json @@ -1,125 +1,126 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 150, - "density": 0.3, - "min_y": -32, - "max_y": 100, - "size": 40, - "random_name": "normal_quartz", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_quartzite_ore", - "weight": 65 - }, - { - "block": "gtceu:shale_certus_quartz_ore", - "weight": 30 - }, - { - "block": "gtceu:shale_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_quartzite_ore", - "weight": 65 - }, - { - "block": "gtceu:quartzite_certus_quartz_ore", - "weight": 30 - }, - { - "block": "gtceu:quartzite_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_quartzite_ore", - "weight": 65 - }, - { - "block": "gtceu:schist_certus_quartz_ore", - "weight": 30 - }, - { - "block": "gtceu:schist_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_quartzite_ore", - "weight": 65 - }, - { - "block": "gtceu:gneiss_certus_quartz_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 40, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:barite_indicator", - "weight": 25 - }, - { - "block": "gtceu:certus_quartz_bud_indicator", - "weight": 30 - }, - { - "block": "gtceu:quartzite_bud_indicator", - "weight": 65 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 150, + "density": 0.3, + "min_y": -32, + "max_y": 100, + "random_name": "normal_quartz", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_quartzite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:shale_certus_quartz_ore", + "weight": 30 + }, + { + "block": "gtceu:shale_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_quartzite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_certus_quartz_ore", + "weight": 30 + }, + { + "block": "gtceu:quartzite_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_quartzite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_certus_quartz_ore", + "weight": 30 + }, + { + "block": "gtceu:schist_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_quartzite_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_certus_quartz_ore", + "weight": 30 + }, + { + "block": "gtceu:gneiss_barite_ore", + "weight": 25 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:quartzite_bud_indicator", + "weight": 65 + }, + { + "block": "gtceu:certus_quartz_bud_indicator", + "weight": 30 + }, + { + "block": "gtceu:barite_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_redstone.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_redstone.json index 15db11f32..5d2fbc602 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_redstone.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_redstone.json @@ -1,56 +1,57 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 160, - "density": 0.4, - "min_y": -32, - "max_y": 100, - "size": 40, - "random_name": "normal_redstone", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_redstone_ore", - "weight": 45 - }, - { - "block": "gtceu:granite_ruby_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_cinnabar_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_redstone_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:redstone_indicator", - "weight": 45 - }, - { - "block": "gtceu:ruby_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:cinnabar_bud_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 160, + "density": 0.4, + "min_y": -32, + "max_y": 100, + "random_name": "normal_redstone", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:granite_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:granite_cinnabar_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:redstone_indicator", + "weight": 45 + }, + { + "block": "gtceu:ruby_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:cinnabar_bud_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_salt.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_salt.json index b985a898a..dd570e236 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_salt.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_salt.json @@ -1,139 +1,132 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 175, - "density": 0.4, - "min_y": 30, - "max_y": 70, - "size": 40, - "random_name": "normal_salt", - "height": 4, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_rock_salt_ore", - "weight": 40 - }, - { - "block": "gtceu:shale_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:shale_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:shale_borax_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_rock_salt_block", - "weight": 1 - }, - { - "block": "gtceu:raw_salt_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_rock_salt_ore", - "weight": 40 - }, - { - "block": "gtceu:claystone_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:claystone_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:claystone_borax_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_rock_salt_block", - "weight": 1 - }, - { - "block": "gtceu:raw_salt_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_rock_salt_ore", - "weight": 40 - }, - { - "block": "gtceu:limestone_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:limestone_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:limestone_borax_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_rock_salt_block", - "weight": 1 - }, - { - "block": "gtceu:raw_salt_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:rock_salt_bud_indicator", - "weight": 20 - }, - { - "block": "gtceu:rock_salt_indicator", - "weight": 20 - }, - { - "block": "gtceu:salt_bud_indicator", - "weight": 15 - }, - { - "block": "gtceu:salt_indicator", - "weight": 15 - }, - { - "block": "gtceu:lepidolite_indicator", - "weight": 15 - }, - { - "block": "gtceu:borax_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 4, + "size": 40, + "rarity": 175, + "density": 0.4, + "min_y": 30, + "max_y": 70, + "random_name": "normal_salt", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_rock_salt_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:shale_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:shale_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:shale_borax_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_rock_salt_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:claystone_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:claystone_borax_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_rock_salt_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_rock_salt_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_salt_block", + "weight": 1 + }, + { + "block": "gtceu:limestone_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:limestone_borax_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:rock_salt_indicator", + "weight": 40 + }, + { + "block": "gtceu:salt_indicator", + "weight": 30 + }, + { + "block": "gtceu:lepidolite_indicator", + "weight": 15 + }, + { + "block": "gtceu:borax_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_saltpeter.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_saltpeter.json index ac2d1a261..4422bdf31 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_saltpeter.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_saltpeter.json @@ -1,11 +1,12 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "type": "tfc:cluster_vein", "config": { + "size": 50, "rarity": 210, "density": 0.3, "min_y": -32, "max_y": 60, - "size": 50, "random_name": "normal_saltpeter", "blocks": [ { @@ -216,7 +217,7 @@ ] } ], - "indicator": { + "indicator": { "rarity": 15, "depth": 20, "underground_rarity": 40, @@ -226,15 +227,15 @@ "block": "gtceu:saltpeter_indicator", "weight": 35 }, - { + { "block": "gtceu:diatomite_indicator", "weight": 25 }, - { + { "block": "gtceu:electrotine_indicator", "weight": 25 }, - { + { "block": "gtceu:alunite_indicator", "weight": 15 } diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_silver.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_silver.json index bd1a59147..ae468cea7 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_silver.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_silver.json @@ -1,79 +1,80 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 160, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_silver", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_galena_ore", - "weight": 30 - }, - { - "block": "gtceu:granite_silver_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_lead_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_lead_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_galena_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_silver_ore", - "weight": 15 - }, - { - "block": "gtceu:gneiss_lead_ore", - "weight": 55 - }, - { - "block": "gtceu:raw_lead_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_native_silver", - "weight": 70 - }, - { - "block": "gtceu:galena_indicator", - "weight": 10 - }, - { - "block": "gtceu:lead_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 160, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_silver", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:granite_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_lead_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_lead_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:gneiss_silver_ore", + "weight": 15 + }, + { + "block": "gtceu:gneiss_lead_ore", + "weight": 55 + }, + { + "block": "gtceu:raw_lead_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:galena_indicator", + "weight": 30 + }, + { + "block": "tfc:ore/small_native_silver", + "weight": 15 + }, + { + "block": "gtceu:lead_indicator", + "weight": 55 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sphalerite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sphalerite.json index dce296c6f..81af3111e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sphalerite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sphalerite.json @@ -1,263 +1,265 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_sphalerite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:rhyolite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:rhyolite_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:basalt_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:andesite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:andesite_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:dacite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:dacite_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:quartzite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:quartzite_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:slate_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:slate_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:phyllite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:phyllite_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:schist_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:gneiss_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:marble_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:marble_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_sphalerite", - "weight": 70 - }, - { - "block": "gtceu:sulfur_indicator", - "weight": 20 - }, - { - "block": "gtceu:pyrite_indicator", - "weight": 10 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 170, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_sphalerite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:quartzite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:slate_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:slate_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:phyllite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:schist_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:gneiss_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_pyrite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:marble_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_pyrite_ore", + "weight": 25 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:sulfur_indicator", + "weight": 35 + }, + { + "block": "tfc:ore/small_sphalerite", + "weight": 40 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_spodumene.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_spodumene.json index fdba9d793..69d9b581a 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_spodumene.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_spodumene.json @@ -1,253 +1,246 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 180, - "density": 0.375, - "min_y": 20, - "max_y": 60, - "size": 35, - "random_name": "normal_spodumene", - "height": 6, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:granite_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:granite_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:diorite_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:diorite_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:gabbro_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:gabbro_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:quartzite_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:quartzite_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:quartzite_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:slate_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:slate_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:slate_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:phyllite_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:phyllite_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:phyllite_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:schist_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:schist_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:schist_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:gneiss_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:gneiss_spodumene_ore", - "weight": 35 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_rock_salt_ore", - "weight": 20 - }, - { - "block": "gtceu:marble_salt_ore", - "weight": 30 - }, - { - "block": "gtceu:marble_lepidolite_ore", - "weight": 15 - }, - { - "block": "gtceu:marble_spodumene_ore", - "weight": 35 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:rock_salt_indicator", - "weight": 10 - }, - { - "block": "gtceu:rock_salt_bud_indicator", - "weight": 10 - }, - { - "block": "gtceu:salt_indicator", - "weight": 15 - }, - { - "block": "gtceu:salt_bud_indicator", - "weight": 15 - }, - { - "block": "gtceu:lepidolite_indicator", - "weight": 15 - }, - { - "block": "gtceu:spodumene_indicator", - "weight": 35 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 6, + "size": 35, + "rarity": 180, + "density": 0.375, + "min_y": 20, + "max_y": 60, + "random_name": "normal_spodumene", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:granite_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:granite_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:diorite_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:diorite_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:gabbro_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:gabbro_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:quartzite_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:quartzite_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:quartzite_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:slate_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:slate_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:slate_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:phyllite_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:phyllite_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:phyllite_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:schist_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:schist_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:schist_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:gneiss_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:gneiss_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:gneiss_spodumene_ore", + "weight": 35 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_rock_salt_ore", + "weight": 20 + }, + { + "block": "gtceu:marble_salt_ore", + "weight": 30 + }, + { + "block": "gtceu:marble_lepidolite_ore", + "weight": 15 + }, + { + "block": "gtceu:marble_spodumene_ore", + "weight": 35 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:rock_salt_indicator", + "weight": 20 + }, + { + "block": "gtceu:salt_indicator", + "weight": 30 + }, + { + "block": "gtceu:lepidolite_indicator", + "weight": 15 + }, + { + "block": "gtceu:spodumene_indicator", + "weight": 35 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sulfur.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sulfur.json index 340bdc3c2..8f99aadaa 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sulfur.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_sulfur.json @@ -1,125 +1,127 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 165, - "density": 0.2, - "min_y": 0, - "max_y": 210, - "size": 45, - "random_name": "normal_sulfur", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:rhyolite_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:rhyolite_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:basalt_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:andesite_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:andesite_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:dacite_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:dacite_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 20, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:sulfur_indicator", - "weight": 50 - }, - { - "block": "gtceu:pyrite_indicator", - "weight": 35 - }, - { - "block": "tfc:ore/small_sphalerite", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 165, + "density": 0.2, + "min_y": 0, + "max_y": 210, + "random_name": "normal_sulfur", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:rhyolite_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:rhyolite_sphalerite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:andesite_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:andesite_sphalerite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:dacite_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:dacite_sphalerite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 40, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:sulfur_indicator", + "weight": 50 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 35 + }, + { + "block": "tfc:ore/small_sphalerite", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_tetrahedrite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_tetrahedrite.json index 166e92be2..e66d29801 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_tetrahedrite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/normal_tetrahedrite.json @@ -1,171 +1,172 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.4, - "min_y": -32, - "max_y": 75, - "size": 40, - "random_name": "normal_tetrahedrite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:quartzite_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:quartzite_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:slate_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:slate_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:phyllite_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:phyllite_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:schist_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:gneiss_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:marble_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:marble_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "tfc:ore/small_tetrahedrite", - "weight": 60 - }, - { - "block": "tfc:ore/small_native_copper", - "weight": 30 - }, - { - "block": "gtceu:stibnite_indicator", - "weight": 10 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 170, + "density": 0.4, + "min_y": -32, + "max_y": 75, + "random_name": "normal_tetrahedrite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:quartzite_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:quartzite_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:slate_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:slate_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:phyllite_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:phyllite_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:schist_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:gneiss_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 1 + }, + { + "block": "gtceu:marble_copper_ore", + "weight": 30 + }, + { + "block": "gtceu:marble_stibnite_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "tfc:ore/small_tetrahedrite", + "weight": 50 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 30 + }, + { + "block": "gtceu:stibnite_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json index 297ac4853..7e3973619 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_bismuthinite.json @@ -1,223 +1,224 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 140, - "density": 0.25, - "min_y": 60, - "max_y": 210, - "size": 50, - "random_name": "surface_bismuthinite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:granite_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:granite_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:diorite_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:diorite_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:gabbro_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:gabbro_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/shale" - ], - "with": [ - { - "block": "gtceu:shale_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:shale_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:shale_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/claystone" - ], - "with": [ - { - "block": "gtceu:claystone_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:claystone_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:claystone_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/limestone" - ], - "with": [ - { - "block": "gtceu:limestone_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:limestone_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:limestone_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/conglomerate" - ], - "with": [ - { - "block": "gtceu:conglomerate_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:conglomerate_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:conglomerate_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dolomite" - ], - "with": [ - { - "block": "gtceu:dolomite_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:dolomite_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:dolomite_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chert" - ], - "with": [ - { - "block": "gtceu:chert_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:chert_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:chert_lead_ore", - "weight": 7 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/chalk" - ], - "with": [ - { - "block": "gtceu:chalk_bismuth_ore", - "weight": 90 - }, - { - "block": "gtceu:chalk_sulfur_ore", - "weight": 3 - }, - { - "block": "gtceu:chalk_lead_ore", - "weight": 7 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 1, - "underground_count": 0, - "blocks": [ - { - "block": "tfc:ore/small_bismuthinite", - "weight": 90 - }, - { - "block": "gtceu:sulfur_indicator", - "weight": 3 - }, - { - "block": "gtceu:lead_indicator", - "weight": 7 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 140, + "density": 0.25, + "min_y": 60, + "max_y": 210, + "random_name": "surface_bismuthinite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:granite_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:granite_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:diorite_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:diorite_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:gabbro_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:gabbro_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/shale" + ], + "with": [ + { + "block": "gtceu:shale_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:shale_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:shale_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/claystone" + ], + "with": [ + { + "block": "gtceu:claystone_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:claystone_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:claystone_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/limestone" + ], + "with": [ + { + "block": "gtceu:limestone_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:limestone_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:limestone_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/conglomerate" + ], + "with": [ + { + "block": "gtceu:conglomerate_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:conglomerate_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:conglomerate_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dolomite" + ], + "with": [ + { + "block": "gtceu:dolomite_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:dolomite_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:dolomite_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chert" + ], + "with": [ + { + "block": "gtceu:chert_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:chert_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:chert_lead_ore", + "weight": 7 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/chalk" + ], + "with": [ + { + "block": "gtceu:chalk_bismuth_ore", + "weight": 90 + }, + { + "block": "gtceu:chalk_sulfur_ore", + "weight": 3 + }, + { + "block": "gtceu:chalk_lead_ore", + "weight": 7 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "tfc:ore/small_bismuthinite", + "weight": 90 + }, + { + "block": "gtceu:sulfur_indicator", + "weight": 3 + }, + { + "block": "gtceu:lead_indicator", + "weight": 7 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json index 4f93ee411..3ce8220f8 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_cassiterite.json @@ -1,11 +1,12 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "type": "tfc:cluster_vein", "config": { + "size": 50, "rarity": 135, "density": 0.25, "min_y": 60, "max_y": 210, - "size": 50, "random_name": "surface_cassiterite", "blocks": [ { @@ -58,7 +59,7 @@ "rarity": 12, "depth": 60, "underground_rarity": 1, - "underground_count": 0, + "underground_count": 1, "blocks": [ { "block": "tfc:ore/small_cassiterite", diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json index acf58049c..f66f372cf 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_copper.json @@ -1,129 +1,131 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 200, - "density": 0.25, - "min_y": 20, - "max_y": 217, - "size": 50, - "random_name": "surface_copper", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_chalcopyrite_ore", - "weight": 55 - }, - { - "block": "gtceu:rhyolite_zeolite_ore", - "weight": 15 - }, - { - "block": "gtceu:rhyolite_cassiterite_ore", - "weight": 5 - }, - { - "block": "gtceu:rhyolite_realgar_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_chalcopyrite_ore", - "weight": 55 - }, - { - "block": "gtceu:basalt_zeolite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_cassiterite_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_realgar_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_chalcopyrite_ore", - "weight": 55 - }, - { - "block": "gtceu:andesite_zeolite_ore", - "weight": 15 - }, - { - "block": "gtceu:andesite_cassiterite_ore", - "weight": 5 - }, - { - "block": "gtceu:andesite_realgar_ore", - "weight": 15 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_chalcopyrite_ore", - "weight": 55 - }, - { - "block": "gtceu:dacite_zeolite_ore", - "weight": 15 - }, - { - "block": "gtceu:dacite_cassiterite_ore", - "weight": 5 - }, - { - "block": "gtceu:dacite_realgar_ore", - "weight": 15 - } - ] - } - ], - "indicator": { - "rarity": 8, - "depth": 60, - "underground_rarity": 1, - "underground_count": 0, - "blocks": [ - { - "block": "gtceu:chalcopyrite_indicator", - "weight": 60 - }, - { - "block": "gtceu:zeolite_indicator", - "weight": 10 - }, - { - "block": "tfc:ore/small_cassiterite", - "weight": 20 - }, - { - "block": "gtceu:realgar_bud_indicator", - "weight": 10 - } - ] - } - } -} + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 200, + "density": 0.25, + "min_y": 20, + "max_y": 217, + "random_name": "surface_copper", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_chalcopyrite_ore", + "weight": 55 + }, + { + "block": "gtceu:rhyolite_zeolite_ore", + "weight": 15 + }, + { + "block": "gtceu:rhyolite_cassiterite_ore", + "weight": 5 + }, + { + "block": "gtceu:rhyolite_realgar_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_chalcopyrite_ore", + "weight": 55 + }, + { + "block": "gtceu:basalt_zeolite_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_cassiterite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_realgar_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_chalcopyrite_ore", + "weight": 55 + }, + { + "block": "gtceu:andesite_zeolite_ore", + "weight": 15 + }, + { + "block": "gtceu:andesite_cassiterite_ore", + "weight": 5 + }, + { + "block": "gtceu:andesite_realgar_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_chalcopyrite_ore", + "weight": 55 + }, + { + "block": "gtceu:dacite_zeolite_ore", + "weight": 15 + }, + { + "block": "gtceu:dacite_cassiterite_ore", + "weight": 5 + }, + { + "block": "gtceu:dacite_realgar_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 8, + "depth": 60, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "gtceu:chalcopyrite_indicator", + "weight": 55 + }, + { + "block": "gtceu:zeolite_indicator", + "weight": 15 + }, + { + "block": "tfc:ore/small_cassiterite", + "weight": 5 + }, + { + "block": "gtceu:realgar_bud_indicator", + "weight": 15 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json index fa39c3f2e..a1d76e307 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_sphalerite.json @@ -1,223 +1,225 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 145, - "density": 0.25, - "min_y": 60, - "max_y": 210, - "size": 50, - "random_name": "surface_sphalerite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/rhyolite" - ], - "with": [ - { - "block": "gtceu:rhyolite_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:rhyolite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:rhyolite_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:basalt_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:basalt_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/andesite" - ], - "with": [ - { - "block": "gtceu:andesite_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:andesite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:andesite_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/dacite" - ], - "with": [ - { - "block": "gtceu:dacite_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:dacite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:dacite_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:quartzite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:quartzite_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:slate_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:slate_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:phyllite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:phyllite_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:schist_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:schist_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:gneiss_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:gneiss_pyrite_ore", - "weight": 5 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_sulfur_ore", - "weight": 55 - }, - { - "block": "gtceu:marble_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:marble_pyrite_ore", - "weight": 5 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 1, - "underground_count": 0, - "blocks": [ - { - "block": "tfc:ore/small_sphalerite", - "weight": 55 - }, - { - "block": "gtceu:sulfur_indicator", - "weight": 40 - }, - { - "block": "gtceu:pyrite_indicator", - "weight": 5 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 145, + "density": 0.25, + "min_y": 60, + "max_y": 210, + "random_name": "surface_sphalerite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/rhyolite" + ], + "with": [ + { + "block": "gtceu:rhyolite_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:rhyolite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:rhyolite_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/andesite" + ], + "with": [ + { + "block": "gtceu:andesite_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:andesite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:andesite_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/dacite" + ], + "with": [ + { + "block": "gtceu:dacite_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:dacite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:dacite_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:quartzite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:quartzite_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:slate_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:slate_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:phyllite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:phyllite_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:schist_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:schist_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:gneiss_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:gneiss_pyrite_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_sulfur_ore", + "weight": 55 + }, + { + "block": "gtceu:marble_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:marble_pyrite_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "gtceu:sulfur_indicator", + "weight": 55 + }, + { + "block": "tfc:ore/small_sphalerite", + "weight": 40 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 5 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json index ed883d7f1..220ceb0c8 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/earth/vein/surface_tetrahedrite.json @@ -1,147 +1,148 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 140, - "density": 0.25, - "min_y": 60, - "max_y": 210, - "size": 50, - "random_name": "surface_tetrahedrite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/quartzite" - ], - "with": [ - { - "block": "gtceu:quartzite_tetrahedrite_ore", - "weight": 60 - }, - { - "block": "gtceu:quartzite_copper_ore", - "weight": 20 - }, - { - "block": "gtceu:quartzite_stibnite_ore", - "weight": 20 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/slate" - ], - "with": [ - { - "block": "gtceu:slate_tetrahedrite_ore", - "weight": 60 - }, - { - "block": "gtceu:slate_copper_ore", - "weight": 20 - }, - { - "block": "gtceu:slate_stibnite_ore", - "weight": 20 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/phyllite" - ], - "with": [ - { - "block": "gtceu:phyllite_tetrahedrite_ore", - "weight": 60 - }, - { - "block": "gtceu:phyllite_copper_ore", - "weight": 20 - }, - { - "block": "gtceu:phyllite_stibnite_ore", - "weight": 20 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_tetrahedrite_ore", - "weight": 60 - }, - { - "block": "gtceu:schist_copper_ore", - "weight": 20 - }, - { - "block": "gtceu:schist_stibnite_ore", - "weight": 20 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_tetrahedrite_ore", - "weight": 60 - }, - { - "block": "gtceu:gneiss_copper_ore", - "weight": 20 - }, - { - "block": "gtceu:gneiss_stibnite_ore", - "weight": 20 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/marble" - ], - "with": [ - { - "block": "gtceu:marble_tetrahedrite_ore", - "weight": 60 - }, - { - "block": "gtceu:marble_copper_ore", - "weight": 20 - }, - { - "block": "gtceu:marble_stibnite_ore", - "weight": 20 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 60, - "underground_rarity": 1, - "underground_count": 0, - "blocks": [ - { - "block": "tfc:ore/small_tetrahedrite", - "weight": 60 - }, - { - "block": "tfc:ore/small_native_copper", - "weight": 20 - }, - { - "block": "gtceu:stibnite_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 140, + "density": 0.25, + "min_y": 60, + "max_y": 210, + "random_name": "surface_tetrahedrite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/quartzite" + ], + "with": [ + { + "block": "gtceu:quartzite_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:quartzite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:quartzite_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/slate" + ], + "with": [ + { + "block": "gtceu:slate_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:slate_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:slate_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/phyllite" + ], + "with": [ + { + "block": "gtceu:phyllite_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:phyllite_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:phyllite_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:schist_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:schist_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:gneiss_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:gneiss_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/marble" + ], + "with": [ + { + "block": "gtceu:marble_tetrahedrite_ore", + "weight": 60 + }, + { + "block": "gtceu:marble_copper_ore", + "weight": 20 + }, + { + "block": "gtceu:marble_stibnite_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 12, + "depth": 60, + "underground_rarity": 1, + "underground_count": 1, + "blocks": [ + { + "block": "tfc:ore/small_tetrahedrite", + "weight": 60 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 20 + }, + { + "block": "gtceu:stibnite_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_anthracite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_anthracite.json new file mode 100644 index 000000000..229b0e4b7 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_anthracite.json @@ -0,0 +1,44 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 4, + "size": 13, + "rarity": 35, + "density": 0.8, + "min_y": 48, + "max_y": 127, + "random_name": "nether_anthracite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "beneath:ore/nether_cursecoal", + "weight": 100 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 100, + "blocks": [ + { + "block": "gtceu:coal_bud_indicator", + "weight": 100 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_apatite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_apatite.json index c67b95017..4e79709f3 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_apatite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_apatite.json @@ -1,87 +1,88 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.35, - "min_y": 48, - "max_y": 128, - "size": 39, - "random_name": "nether_apatite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tricalcium_phosphate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_apatite_ore", - "weight": 50 - }, - { - "block": "gtceu:gneiss_tricalcium_phosphate_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_pyrochlore_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_apatite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tricalcium_phosphate_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:tricalcium_phosphate_indicator", - "weight": 35 - }, - { - "block": "gtceu:pyrochlore_indicator", - "weight": 15 - }, - { - "block": "gtceu:apatite_bud_indicator", - "weight": 50 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 39, + "rarity": 220, + "density": 0.35, + "min_y": 48, + "max_y": 128, + "random_name": "nether_apatite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 2 + }, + { + "block": "gtceu:schist_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tricalcium_phosphate_block", + "weight": 1 + }, + { + "block": "gtceu:schist_pyrochlore_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_apatite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_apatite_block", + "weight": 2 + }, + { + "block": "gtceu:gneiss_tricalcium_phosphate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tricalcium_phosphate_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_pyrochlore_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:apatite_bud_indicator", + "weight": 50 + }, + { + "block": "gtceu:tricalcium_phosphate_indicator", + "weight": 35 + }, + { + "block": "gtceu:pyrochlore_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_basaltic_sands.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_basaltic_sands.json index aa8b1e78d..09470d9cf 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_basaltic_sands.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_basaltic_sands.json @@ -1,109 +1,110 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 160, - "density": 0.4, - "min_y": 48, - "max_y": 128, - "size": 48, - "random_name": "nether_basaltic_sands", - "height": 9, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_basaltic_mineral_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_granitic_mineral_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_fullers_earth_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_gypsum_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_basaltic_mineral_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_granitic_mineral_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_fullers_earth_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_basaltic_mineral_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_granitic_mineral_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_fullers_earth_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_gypsum_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_basaltic_mineral_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_granitic_mineral_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_fullers_earth_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:basaltic_mineral_sand_indicator", - "weight": 35 - }, - { - "block": "gtceu:granitic_mineral_sand_indicator", - "weight": 25 - }, - { - "block": "gtceu:fullers_earth_indicator", - "weight": 25 - }, - { - "block": "gtceu:gypsum_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 9, + "size": 48, + "rarity": 160, + "density": 0.4, + "min_y": 48, + "max_y": 128, + "random_name": "nether_basaltic_sands", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_basaltic_mineral_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_basaltic_mineral_sand_block", + "weight": 1 + }, + { + "block": "gtceu:granite_granitic_mineral_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_granitic_mineral_sand_block", + "weight": 1 + }, + { + "block": "gtceu:granite_fullers_earth_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_fullers_earth_block", + "weight": 1 + }, + { + "block": "gtceu:granite_gypsum_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_basaltic_mineral_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_basaltic_mineral_sand_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_granitic_mineral_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_granitic_mineral_sand_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_fullers_earth_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_fullers_earth_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_gypsum_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:basaltic_mineral_sand_indicator", + "weight": 35 + }, + { + "block": "gtceu:granitic_mineral_sand_indicator", + "weight": 25 + }, + { + "block": "gtceu:fullers_earth_indicator", + "weight": 25 + }, + { + "block": "gtceu:gypsum_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_bauxite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_bauxite.json index 0590d88f4..d296d1750 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_bauxite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_bauxite.json @@ -1,165 +1,166 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 185, - "density": 0.4, - "min_y": 32, - "max_y": 128, - "size": 45, - "random_name": "nether_bauxite", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:deepslate_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:deepslate_aluminium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_ilmenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_aluminium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:pyroxenite_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_aluminium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_ilmenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_aluminium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:basalt_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:basalt_aluminium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_ilmenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_aluminium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_bauxite_ore", - "weight": 45 - }, - { - "block": "gtceu:dripstone_ilmenite_ore", - "weight": 30 - }, - { - "block": "gtceu:dripstone_aluminium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_ilmenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_aluminium_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:bauxite_indicator", - "weight": 45 - }, - { - "block": "gtceu:ilmenite_indicator", - "weight": 30 - }, - { - "block": "gtceu:aluminium_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 185, + "density": 0.4, + "min_y": 32, + "max_y": 128, + "random_name": "nether_bauxite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 2 + }, + { + "block": "gtceu:deepslate_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_ilmenite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_aluminium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_aluminium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_ilmenite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_aluminium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_aluminium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_ilmenite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_aluminium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_aluminium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_bauxite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 2 + }, + { + "block": "gtceu:dripstone_ilmenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_ilmenite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_aluminium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_aluminium_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:bauxite_indicator", + "weight": 45 + }, + { + "block": "gtceu:ilmenite_indicator", + "weight": 30 + }, + { + "block": "gtceu:aluminium_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_beryllium.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_beryllium.json index b28759af1..26a43e8ce 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_beryllium.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_beryllium.json @@ -1,155 +1,156 @@ { - "type": "tfc:pipe_vein", - "config": { - "rarity": 250, - "density": 0.45, - "min_y": 32, - "max_y": 128, - "random_name": "nether_beryllium", - "min_skew": 6, - "max_skew": 18, - "min_slant": 0, - "max_slant": 4, - "sign": 0, - "height": 60, - "radius": 12, - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:deepslate_thorium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_beryllium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_emerald_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:pyroxenite_thorium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_beryllium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_emerald_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:basalt_thorium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_beryllium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_emerald_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_beryllium_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_emerald_ore", - "weight": 50 - }, - { - "block": "gtceu:dripstone_thorium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_beryllium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_emerald_block", - "weight": 2 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:beryllium_indicator", - "weight": 35 - }, - { - "block": "gtceu:thorium_indicator", - "weight": 15 - }, - { - "block": "gtceu:emerald_bud_indicator", - "weight": 50 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:pipe_vein", + "config": { + "height": 60, + "radius": 12, + "min_skew": 6, + "max_skew": 18, + "min_slant": 0, + "max_slant": 4, + "sign": 0, + "rarity": 250, + "density": 0.45, + "min_y": 32, + "max_y": 128, + "random_name": "nether_beryllium", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_beryllium_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_emerald_block", + "weight": 2 + }, + { + "block": "gtceu:deepslate_thorium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_beryllium_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_emerald_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_thorium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_beryllium_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_emerald_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_thorium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_beryllium_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_beryllium_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_emerald_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_emerald_block", + "weight": 2 + }, + { + "block": "gtceu:dripstone_thorium_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:beryllium_indicator", + "weight": 35 + }, + { + "block": "gtceu:emerald_bud_indicator", + "weight": 50 + }, + { + "block": "gtceu:thorium_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json index 8a8e027af..d08470054 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_cassiterite.json @@ -1,164 +1,165 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.5, - "min_y": 32, - "max_y": 128, - "size": 45, - "random_name": "nether_cassiterite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:granite_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:diorite_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:gabbro_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:gneiss_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:schist_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_cassiterite_ore", - "weight": 40 - }, - { - "block": "gtceu:pyroxenite_tin_ore", - "weight": 60 - }, - { - "block": "gtceu:raw_cassiterite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_tin_block", - "weight": 2 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_cassiterite", - "weight": 100 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 170, + "density": 0.5, + "min_y": 32, + "max_y": 128, + "random_name": "nether_cassiterite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 2 + }, + { + "block": "gtceu:granite_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 2 + }, + { + "block": "gtceu:diorite_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 2 + }, + { + "block": "gtceu:gabbro_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 2 + }, + { + "block": "gtceu:gneiss_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 2 + }, + { + "block": "gtceu:schist_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_cassiterite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_cassiterite_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_tin_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_tin_block", + "weight": 2 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "tfc:ore/small_cassiterite", + "weight": 100 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_copper.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_copper.json index 67e263d40..d6975cd48 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_copper.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_copper.json @@ -1,185 +1,186 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.5, - "min_y": 32, - "max_y": 128, - "size": 45, - "random_name": "nether_copper", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:deepslate_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:deepslate_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:deepslate_copper_ore", - "weight": 65 - }, - { - "block": "gtceu:raw_chalcopyrite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:pyroxenite_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:pyroxenite_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:pyroxenite_copper_ore", - "weight": 65 - }, - { - "block": "gtceu:raw_chalcopyrite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:basalt_copper_ore", - "weight": 65 - }, - { - "block": "gtceu:raw_chalcopyrite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_chalcopyrite_ore", - "weight": 20 - }, - { - "block": "gtceu:dripstone_hematite_ore", - "weight": 5 - }, - { - "block": "gtceu:dripstone_pyrite_ore", - "weight": 10 - }, - { - "block": "gtceu:dripstone_copper_ore", - "weight": 65 - }, - { - "block": "gtceu:raw_chalcopyrite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 2 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:chalcopyrite_indicator", - "weight": 20 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 5 - }, - { - "block": "gtceu:pyrite_indicator", - "weight": 10 - }, - { - "block": "tfc:ore/small_native_copper", - "weight": 65 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 170, + "density": 0.5, + "min_y": 32, + "max_y": 128, + "random_name": "nether_copper", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:deepslate_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:pyroxenite_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_chalcopyrite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_chalcopyrite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_hematite_ore", + "weight": 5 + }, + { + "block": "gtceu:dripstone_pyrite_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_copper_ore", + "weight": 65 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 2 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:chalcopyrite_indicator", + "weight": 20 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 5 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 10 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 65 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet.json index 93a491c5d..0dbc417eb 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet.json @@ -1,202 +1,203 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 230, - "density": 0.35, - "min_y": 0, - "max_y": 128, - "size": 45, - "random_name": "nether_garnet", - "height": 8, - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_red_garnet_ore", - "weight": 10 - }, - { - "block": "gtceu:deepslate_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:deepslate_amethyst_ore", - "weight": 40 - }, - { - "block": "gtceu:deepslate_opal_ore", - "weight": 40 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - }, - { - "block": "gtceu:raw_red_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:pyroxenite_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_amethyst_ore", - "weight": 40 - }, - { - "block": "gtceu:pyroxenite_opal_ore", - "weight": 40 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - }, - { - "block": "gtceu:raw_red_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_amethyst_ore", - "weight": 40 - }, - { - "block": "gtceu:basalt_opal_ore", - "weight": 40 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - }, - { - "block": "gtceu:raw_red_garnet_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_red_garnet_ore", - "weight": 5 - }, - { - "block": "gtceu:dripstone_yellow_garnet_ore", - "weight": 15 - }, - { - "block": "gtceu:dripstone_amethyst_ore", - "weight": 40 - }, - { - "block": "gtceu:dripstone_opal_ore", - "weight": 40 - }, - { - "block": "gtceu:raw_amethyst_block", - "weight": 2 - }, - { - "block": "gtceu:raw_opal_block", - "weight": 2 - }, - { - "block": "gtceu:raw_yellow_garnet_block", - "weight": 1 - }, - { - "block": "gtceu:raw_red_garnet_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 20, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:amethyst_bud_indicator", - "weight": 40 - }, - { - "block": "gtceu:red_garnet_bud_indicator", - "weight": 5 - }, - { - "block": "gtceu:yellow_garnet_bud_indicator", - "weight": 15 - }, - { - "block": "gtceu:opal_bud_indicator", - "weight": 40 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 8, + "size": 45, + "rarity": 230, + "density": 0.35, + "min_y": 0, + "max_y": 128, + "random_name": "nether_garnet", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_red_garnet_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_red_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_amethyst_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:deepslate_opal_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_red_garnet_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_red_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_amethyst_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_opal_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_red_garnet_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_red_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_amethyst_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_opal_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_red_garnet_ore", + "weight": 10 + }, + { + "block": "gtceu:raw_red_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_yellow_garnet_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_garnet_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_amethyst_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_amethyst_block", + "weight": 2 + }, + { + "block": "gtceu:dripstone_opal_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_opal_block", + "weight": 2 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:red_garnet_bud_indicator", + "weight": 10 + }, + { + "block": "gtceu:yellow_garnet_bud_indicator", + "weight": 15 + }, + { + "block": "gtceu:amethyst_bud_indicator", + "weight": 40 + }, + { + "block": "gtceu:opal_bud_indicator", + "weight": 40 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet_tin.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet_tin.json index 29b513713..1ae4fac3e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet_tin.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnet_tin.json @@ -1,324 +1,325 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 270, - "density": 0.35, - "min_y": 24, - "max_y": 128, - "size": 45, - "random_name": "nether_garnet_tin", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_cassiterite_sand_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_garnet_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_asbestos_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_diatomite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_cassiterite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_garnet_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_asbestos_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_cassiterite", - "weight": 35 - }, - { - "block": "gtceu:garnet_sand_indicator", - "weight": 25 - }, - { - "block": "gtceu:asbestos_indicator", - "weight": 25 - }, - { - "block": "gtceu:diatomite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 270, + "density": 0.35, + "min_y": 24, + "max_y": 128, + "random_name": "nether_garnet_tin", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:granite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:granite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:granite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:schist_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:schist_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:schist_diatomite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_cassiterite_sand_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_cassiterite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_garnet_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_garnet_sand_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_asbestos_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_asbestos_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_diatomite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "tfc:ore/small_cassiterite", + "weight": 35 + }, + { + "block": "gtceu:garnet_sand_indicator", + "weight": 25 + }, + { + "block": "gtceu:asbestos_indicator", + "weight": 25 + }, + { + "block": "gtceu:diatomite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnierite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnierite.json index ef8a963c9..1d8e11e84 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnierite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_garnierite.json @@ -1,155 +1,160 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 160, - "density": 0.5, - "min_y": 16, - "max_y": 128, - "size": 45, - "random_name": "nether_garnierite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_garnierite_ore", - "weight": 30 - }, - { - "block": "gtceu:gabbro_nickel_ore", - "weight": 10 - }, - { - "block": "gtceu:gabbro_cobaltite_ore", - "weight": 20 - }, - { - "block": "gtceu:gabbro_pentlandite_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_cobalt_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_garnierite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cobaltite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_garnierite_ore", - "weight": 30 - }, - { - "block": "gtceu:diorite_nickel_ore", - "weight": 10 - }, - { - "block": "gtceu:diorite_cobaltite_ore", - "weight": 20 - }, - { - "block": "gtceu:diorite_pentlandite_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_cobalt_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_garnierite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cobaltite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_garnierite_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_nickel_ore", - "weight": 10 - }, - { - "block": "gtceu:pyroxenite_cobaltite_ore", - "weight": 20 - }, - { - "block": "gtceu:pyroxenite_pentlandite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_cobalt_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_garnierite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cobaltite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_garnierite", - "weight": 40 - }, - { - "block": "gtceu:pentlandite_indicator", - "weight": 25 - }, - { - "block": "gtceu:cobaltite_indicator", - "weight": 20 - }, - { - "block": "gtceu:cobalt_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 160, + "density": 0.5, + "min_y": 16, + "max_y": 128, + "random_name": "nether_garnierite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_garnierite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_nickel_ore", + "weight": 10 + }, + { + "block": "gtceu:gabbro_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_cobaltite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_pentlandite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_cobalt_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_garnierite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_nickel_ore", + "weight": 10 + }, + { + "block": "gtceu:diorite_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_cobaltite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_pentlandite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_cobalt_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_garnierite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_garnierite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_nickel_ore", + "weight": 10 + }, + { + "block": "gtceu:pyroxenite_cobaltite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_cobaltite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_pentlandite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_cobalt_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "tfc:ore/small_garnierite", + "weight": 30 + }, + { + "block": "tfc:ore/small_garnierite", + "weight": 10 + }, + { + "block": "gtceu:cobaltite_indicator", + "weight": 20 + }, + { + "block": "gtceu:pentlandite_indicator", + "weight": 25 + }, + { + "block": "gtceu:cobalt_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_goethite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_goethite.json new file mode 100644 index 000000000..da563d976 --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_goethite.json @@ -0,0 +1,202 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 37, + "rarity": 240, + "density": 0.45, + "min_y": 0, + "max_y": 128, + "random_name": "nether_goethite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_goethite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 3 + }, + { + "block": "gtceu:deepslate_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_limonite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_malachite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_malachite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_goethite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 3 + }, + { + "block": "gtceu:pyroxenite_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_limonite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_malachite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_malachite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_goethite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 3 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_limonite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_malachite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_malachite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_goethite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 3 + }, + { + "block": "gtceu:dripstone_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_yellow_limonite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_malachite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_malachite_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 50 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 15 + }, + { + "block": "tfc:ore/small_malachite", + "weight": 20 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_gold.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_gold.json index ce1f21bf1..b1e1dad54 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_gold.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_gold.json @@ -1,224 +1,225 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 260, - "density": 0.55, - "min_y": 0, - "max_y": 128, - "size": 37, - "random_name": "nether_gold", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:gabbro_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:gabbro_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:diorite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:diorite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:gneiss_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:gneiss_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:gneiss_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:granite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:granite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:schist_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:schist_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:schist_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_goethite_ore", - "weight": 5 - }, - { - "block": "gtceu:pyroxenite_yellow_limonite_ore", - "weight": 5 - }, - { - "block": "gtceu:pyroxenite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_gold_ore", - "weight": 75 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 2 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_limonite", - "weight": 5 - }, - { - "block": "tfc:ore/small_hematite", - "weight": 15 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 75 - }, - { - "block": "gtceu:goethite_indicator", - "weight": 5 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 37, + "rarity": 260, + "density": 0.55, + "min_y": 0, + "max_y": 128, + "random_name": "nether_gold", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:gabbro_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:diorite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:gneiss_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:gneiss_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:granite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:schist_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:schist_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_goethite_ore", + "weight": 5 + }, + { + "block": "gtceu:pyroxenite_yellow_limonite_ore", + "weight": 5 + }, + { + "block": "gtceu:pyroxenite_hematite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_gold_ore", + "weight": 75 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 2 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 5 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 5 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 15 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 75 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_graphite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_graphite.json index ca52f0077..fcb099213 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_graphite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_graphite.json @@ -1,202 +1,203 @@ { - "type": "tfc:pipe_vein", - "config": { - "rarity": 120, - "density": 0.35, - "min_y": 0, - "max_y": 128, - "random_name": "nether_graphite", - "min_skew": 6, - "max_skew": 18, - "min_slant": 0, - "max_slant": 5, - "sign": 0, - "height": 60, - "radius": 12, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:gabbro_diamond_ore", - "weight": 40 - }, - { - "block": "gtceu:gabbro_coal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_graphite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diamond_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:gneiss_diamond_ore", - "weight": 40 - }, - { - "block": "gtceu:gneiss_coal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_graphite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diamond_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:diorite_diamond_ore", - "weight": 40 - }, - { - "block": "gtceu:diorite_coal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_graphite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diamond_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:schist_diamond_ore", - "weight": 40 - }, - { - "block": "gtceu:schist_coal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_graphite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diamond_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:granite_diamond_ore", - "weight": 40 - }, - { - "block": "gtceu:granite_coal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_graphite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diamond_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_graphite_ore", - "weight": 45 - }, - { - "block": "gtceu:pyroxenite_diamond_ore", - "weight": 40 - }, - { - "block": "gtceu:pyroxenite_coal_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_graphite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diamond_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 10, - "depth": 1, - "underground_rarity": 40, - "underground_count": 200, - "blocks": [ - { - "block": "gtceu:graphite_indicator", - "weight": 45 - }, - { - "block": "gtceu:coal_indicator", - "weight": 15 - }, - { - "block": "gtceu:diamond_bud_indicator", - "weight": 40 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:pipe_vein", + "config": { + "height": 60, + "radius": 12, + "min_skew": 6, + "max_skew": 18, + "min_slant": 0, + "max_slant": 5, + "sign": 0, + "rarity": 120, + "density": 0.35, + "min_y": 0, + "max_y": 128, + "random_name": "nether_graphite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_graphite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_diamond_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_diamond_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_coal_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_graphite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_diamond_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_diamond_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_coal_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_graphite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_diamond_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_diamond_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_coal_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_graphite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_diamond_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_diamond_block", + "weight": 1 + }, + { + "block": "gtceu:schist_coal_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_graphite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_diamond_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_diamond_block", + "weight": 1 + }, + { + "block": "gtceu:granite_coal_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_graphite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_graphite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_diamond_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_diamond_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_coal_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "gtceu:graphite_indicator", + "weight": 45 + }, + { + "block": "gtceu:coal_bud_indicator", + "weight": 15 + }, + { + "block": "gtceu:diamond_bud_indicator", + "weight": 40 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_hematite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_hematite.json index 5b5edd376..48b653d6c 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_hematite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_hematite.json @@ -1,205 +1,206 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.45, - "min_y": 0, - "max_y": 128, - "size": 35, - "random_name": "nether_hematite", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:deepslate_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:deepslate_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:pyroxenite_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_goethite_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:dripstone_hematite_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_gold_ore", - "weight": 5 - }, - { - "block": "gtceu:dripstone_ruby_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_hematite", - "weight": 35 - }, - { - "block": "tfc:ore/small_limonite", - "weight": 15 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 5 - }, - { - "block": "gtceu:ruby_bud_indicator", - "weight": 20 - }, - { - "block": "gtceu:goethite_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 35, + "rarity": 220, + "density": 0.45, + "min_y": 0, + "max_y": 128, + "random_name": "nether_hematite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:deepslate_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 3 + }, + { + "block": "gtceu:deepslate_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:deepslate_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:pyroxenite_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 3 + }, + { + "block": "gtceu:pyroxenite_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:pyroxenite_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:basalt_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 3 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_goethite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_goethite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_yellow_limonite_ore", + "weight": 15 + }, + { + "block": "gtceu:dripstone_hematite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_hematite_block", + "weight": 3 + }, + { + "block": "gtceu:dripstone_gold_ore", + "weight": 5 + }, + { + "block": "gtceu:dripstone_ruby_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:goethite_indicator", + "weight": 25 + }, + { + "block": "tfc:ore/small_limonite", + "weight": 15 + }, + { + "block": "tfc:ore/small_hematite", + "weight": 35 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 5 + }, + { + "block": "gtceu:ruby_bud_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lapis.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lapis.json index 0c2867ce2..60a675e80 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lapis.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lapis.json @@ -1,149 +1,150 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.35, - "min_y": 32, - "max_y": 128, - "size": 40, - "random_name": "nether_lapis", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_calcite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_lazurite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sodalite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_lapis_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_calcite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_lazurite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sodalite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_lapis_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_lazurite_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_sodalite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_lapis_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_calcite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_lazurite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sodalite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_lapis_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:calcite_indicator", - "weight": 15 - }, - { - "block": "gtceu:lazurite_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:sodalite_bud_indicator", - "weight": 25 - }, - { - "block": "gtceu:lapis_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 40, + "rarity": 220, + "density": 0.35, + "min_y": 32, + "max_y": 128, + "random_name": "nether_lapis", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_lazurite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_sodalite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_lapis_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_lazurite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_sodalite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_lapis_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_calcite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_lazurite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_lazurite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_sodalite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_sodalite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_lapis_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_lapis_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_calcite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:lazurite_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:sodalite_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:lapis_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:calcite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_limonite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_limonite.json deleted file mode 100644 index 5b6835b86..000000000 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_limonite.json +++ /dev/null @@ -1,205 +0,0 @@ -{ - "type": "tfc:cluster_vein", - "config": { - "rarity": 240, - "density": 0.45, - "min_y": 0, - "max_y": 128, - "size": 37, - "random_name": "nether_limonite", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_goethite_ore", - "weight": 50 - }, - { - "block": "gtceu:deepslate_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:deepslate_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:deepslate_malachite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_malachite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_goethite_ore", - "weight": 50 - }, - { - "block": "gtceu:pyroxenite_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_malachite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_malachite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_goethite_ore", - "weight": 50 - }, - { - "block": "gtceu:basalt_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_malachite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_malachite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_goethite_ore", - "weight": 50 - }, - { - "block": "gtceu:dripstone_yellow_limonite_ore", - "weight": 15 - }, - { - "block": "gtceu:dripstone_hematite_ore", - "weight": 15 - }, - { - "block": "gtceu:dripstone_malachite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_yellow_limonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_goethite_block", - "weight": 3 - }, - { - "block": "gtceu:raw_malachite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_hematite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_hematite", - "weight": 15 - }, - { - "block": "tfc:ore/small_limonite", - "weight": 15 - }, - { - "block": "tfc:ore/small_malachite", - "weight": 10 - }, - { - "block": "gtceu:goethite_indicator", - "weight": 50 - }, - { - "block": "gtceu:malachite_bud_indicator", - "weight": 10 - } - ] - } - } -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lubricant.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lubricant.json index 3a961cb8a..392803c26 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lubricant.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_lubricant.json @@ -1,300 +1,301 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 250, - "density": 0.35, - "min_y": 32, - "max_y": 128, - "size": 41, - "random_name": "nether_lubricant", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_soapstone_ore", - "weight": 30 - }, - { - "block": "gtceu:granite_talc_ore", - "weight": 20 - }, - { - "block": "gtceu:granite_glauconite_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_pentlandite_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_trona_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_soapstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_talc_block", - "weight": 1 - }, - { - "block": "gtceu:raw_glauconite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_soapstone_ore", - "weight": 30 - }, - { - "block": "gtceu:diorite_talc_ore", - "weight": 20 - }, - { - "block": "gtceu:diorite_glauconite_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_pentlandite_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_trona_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_soapstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_talc_block", - "weight": 1 - }, - { - "block": "gtceu:raw_glauconite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_soapstone_ore", - "weight": 30 - }, - { - "block": "gtceu:gabbro_talc_ore", - "weight": 20 - }, - { - "block": "gtceu:gabbro_glauconite_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_pentlandite_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_trona_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_soapstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_talc_block", - "weight": 1 - }, - { - "block": "gtceu:raw_glauconite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_soapstone_ore", - "weight": 30 - }, - { - "block": "gtceu:schist_talc_ore", - "weight": 20 - }, - { - "block": "gtceu:schist_glauconite_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_pentlandite_ore", - "weight": 15 - }, - { - "block": "gtceu:schist_trona_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_soapstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_talc_block", - "weight": 1 - }, - { - "block": "gtceu:raw_glauconite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_soapstone_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_talc_ore", - "weight": 20 - }, - { - "block": "gtceu:gneiss_glauconite_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_pentlandite_ore", - "weight": 15 - }, - { - "block": "gtceu:gneiss_trona_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_soapstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_talc_block", - "weight": 1 - }, - { - "block": "gtceu:raw_glauconite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_soapstone_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_talc_ore", - "weight": 20 - }, - { - "block": "gtceu:pyroxenite_glauconite_sand_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_pentlandite_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_trona_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_soapstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_talc_block", - "weight": 1 - }, - { - "block": "gtceu:raw_glauconite_sand_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pentlandite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:soapstone_indicator", - "weight": 30 - }, - { - "block": "gtceu:talc_indicator", - "weight": 20 - }, - { - "block": "gtceu:glauconite_sand_indicator", - "weight": 25 - }, - { - "block": "gtceu:pentlandite_indicator", - "weight": 15 - }, - { - "block": "gtceu:trona_indicator", - "weight": 10 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 41, + "rarity": 250, + "density": 0.35, + "min_y": 32, + "max_y": 128, + "random_name": "nether_lubricant", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:granite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_talc_block", + "weight": 1 + }, + { + "block": "gtceu:granite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_glauconite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:granite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_talc_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_glauconite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_talc_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_glauconite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:schist_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_talc_block", + "weight": 1 + }, + { + "block": "gtceu:schist_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_glauconite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:schist_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_talc_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_glauconite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_trona_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_soapstone_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_soapstone_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_talc_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_talc_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_glauconite_sand_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_glauconite_sand_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_pentlandite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pentlandite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_trona_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:soapstone_indicator", + "weight": 30 + }, + { + "block": "gtceu:talc_indicator", + "weight": 20 + }, + { + "block": "gtceu:glauconite_sand_indicator", + "weight": 25 + }, + { + "block": "gtceu:pentlandite_indicator", + "weight": 15 + }, + { + "block": "gtceu:trona_indicator", + "weight": 10 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_magnetite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_magnetite.json index d2c96947e..80eda2ddd 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_magnetite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_magnetite.json @@ -1,205 +1,206 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 205, - "density": 0.4, - "min_y": 0, - "max_y": 128, - "size": 39, - "random_name": "nether_magnetite", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:deepslate_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:deepslate_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:deepslate_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:deepslate_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - }, - { - "block": "gtceu:raw_vanadium_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:pyroxenite_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:pyroxenite_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - }, - { - "block": "gtceu:raw_vanadium_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:basalt_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:basalt_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:basalt_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - }, - { - "block": "gtceu:raw_vanadium_magnetite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_magnetite_ore", - "weight": 5 - }, - { - "block": "gtceu:dripstone_vanadium_magnetite_ore", - "weight": 15 - }, - { - "block": "gtceu:dripstone_chromite_ore", - "weight": 60 - }, - { - "block": "gtceu:dripstone_gold_ore", - "weight": 15 - }, - { - "block": "gtceu:dripstone_sapphire_ore", - "weight": 5 - }, - { - "block": "gtceu:raw_chromite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_gold_block", - "weight": 1 - }, - { - "block": "gtceu:raw_vanadium_magnetite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_magnetite", - "weight": 5 - }, - { - "block": "tfc:ore/small_native_gold", - "weight": 15 - }, - { - "block": "firmalife:ore/small_chromite", - "weight": 60 - }, - { - "block": "gtceu:vanadium_magnetite_indicator", - "weight": 15 - }, - { - "block": "gtceu:sapphire_bud_indicator", - "weight": 5 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 39, + "rarity": 205, + "density": 0.4, + "min_y": 0, + "max_y": 128, + "random_name": "nether_magnetite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:deepslate_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_vanadium_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 2 + }, + { + "block": "gtceu:deepslate_gold_ore", + "weight": 15 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:pyroxenite_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_vanadium_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_gold_ore", + "weight": 15 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:basalt_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_vanadium_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_gold_ore", + "weight": 15 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_sapphire_ore", + "weight": 5 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_magnetite_ore", + "weight": 5 + }, + { + "block": "gtceu:dripstone_vanadium_magnetite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_vanadium_magnetite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_chromite_ore", + "weight": 60 + }, + { + "block": "gtceu:raw_chromite_block", + "weight": 2 + }, + { + "block": "gtceu:dripstone_gold_ore", + "weight": 15 + }, + { + "block": "minecraft:raw_gold_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_sapphire_ore", + "weight": 5 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "tfc:ore/small_magnetite", + "weight": 5 + }, + { + "block": "gtceu:vanadium_magnetite_indicator", + "weight": 15 + }, + { + "block": "firmalife:ore/small_chromite", + "weight": 60 + }, + { + "block": "tfc:ore/small_native_gold", + "weight": 15 + }, + { + "block": "gtceu:sapphire_bud_indicator", + "weight": 5 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_manganese.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_manganese.json index 2d0f70efa..9b2eb3b28 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_manganese.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_manganese.json @@ -1,185 +1,186 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 195, - "density": 0.4, - "min_y": 32, - "max_y": 128, - "size": 45, - "random_name": "nether_manganese", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:deepslate_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:deepslate_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:deepslate_tantalite_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_grossular_block", - "weight": 1 - }, - { - "block": "gtceu:raw_spessartine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrolusite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:basalt_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:basalt_tantalite_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_grossular_block", - "weight": 1 - }, - { - "block": "gtceu:raw_spessartine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrolusite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:pyroxenite_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:pyroxenite_tantalite_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_grossular_block", - "weight": 1 - }, - { - "block": "gtceu:raw_spessartine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrolusite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_grossular_ore", - "weight": 30 - }, - { - "block": "gtceu:dripstone_spessartine_ore", - "weight": 20 - }, - { - "block": "gtceu:dripstone_pyrolusite_ore", - "weight": 20 - }, - { - "block": "gtceu:dripstone_tantalite_ore", - "weight": 10 - }, - { - "block": "gtceu:raw_grossular_block", - "weight": 1 - }, - { - "block": "gtceu:raw_spessartine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrolusite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:pyrolusite_indicator", - "weight": 20 - }, - { - "block": "gtceu:tantalite_indicator", - "weight": 10 - }, - { - "block": "gtceu:grossular_bud_indicator", - "weight": 30 - }, - { - "block": "gtceu:spessartine_bud_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 195, + "density": 0.4, + "min_y": 32, + "max_y": 128, + "random_name": "nether_manganese", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_spessartine_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_pyrolusite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_spessartine_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_pyrolusite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_spessartine_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_pyrolusite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_tantalite_ore", + "weight": 10 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_grossular_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_grossular_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_spessartine_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_spessartine_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_pyrolusite_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_pyrolusite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_tantalite_ore", + "weight": 10 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:grossular_bud_indicator", + "weight": 30 + }, + { + "block": "gtceu:spessartine_bud_indicator", + "weight": 20 + }, + { + "block": "gtceu:pyrolusite_indicator", + "weight": 20 + }, + { + "block": "gtceu:tantalite_indicator", + "weight": 10 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_mica.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_mica.json index b56efb749..4cd20165a 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_mica.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_mica.json @@ -1,272 +1,273 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.35, - "min_y": 32, - "max_y": 128, - "size": 41, - "random_name": "nether_mica", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_kyanite_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_mica_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_bauxite_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_pollucite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_kyanite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_mica_block", - "weight": 1 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pollucite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_kyanite_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_mica_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_bauxite_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_pollucite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_kyanite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_mica_block", - "weight": 1 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pollucite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_kyanite_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_mica_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_bauxite_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_pollucite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_kyanite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_mica_block", - "weight": 1 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pollucite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_kyanite_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_mica_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_bauxite_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_pollucite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_kyanite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_mica_block", - "weight": 1 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pollucite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_kyanite_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_mica_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_bauxite_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_pollucite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_kyanite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_mica_block", - "weight": 1 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pollucite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_kyanite_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_mica_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_bauxite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_pollucite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_kyanite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_mica_block", - "weight": 1 - }, - { - "block": "gtceu:raw_bauxite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pollucite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:kyanite_indicator", - "weight": 35 - }, - { - "block": "gtceu:mica_indicator", - "weight": 25 - }, - { - "block": "gtceu:bauxite_indicator", - "weight": 25 - }, - { - "block": "gtceu:pollucite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 41, + "rarity": 220, + "density": 0.35, + "min_y": 32, + "max_y": 128, + "random_name": "nether_mica", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_kyanite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_kyanite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_mica_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_mica_block", + "weight": 1 + }, + { + "block": "gtceu:granite_bauxite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_pollucite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pollucite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_kyanite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_kyanite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_mica_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_mica_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_bauxite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_pollucite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pollucite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_kyanite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_kyanite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_mica_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_mica_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_bauxite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_pollucite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pollucite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_kyanite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_kyanite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_mica_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_mica_block", + "weight": 1 + }, + { + "block": "gtceu:schist_bauxite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_pollucite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pollucite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_kyanite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_kyanite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_mica_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_mica_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_bauxite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_pollucite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pollucite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_kyanite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_kyanite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_mica_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_mica_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_bauxite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_bauxite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_pollucite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_pollucite_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:kyanite_indicator", + "weight": 35 + }, + { + "block": "gtceu:mica_indicator", + "weight": 25 + }, + { + "block": "gtceu:bauxite_indicator", + "weight": 25 + }, + { + "block": "gtceu:pollucite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_molybdenum.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_molybdenum.json index 3a670bc01..bbc615c42 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_molybdenum.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_molybdenum.json @@ -1,224 +1,225 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 245, - "density": 0.55, - "min_y": 0, - "max_y": 128, - "size": 31, - "random_name": "nether_molybdenum", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:gneiss_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:gneiss_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:schist_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:schist_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:schist_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:granite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:granite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:diorite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:diorite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:gabbro_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:gabbro_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_wulfenite_ore", - "weight": 40 - }, - { - "block": "gtceu:pyroxenite_molybdenite_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_molybdenum_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_powellite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_wulfenite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_molybdenite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:wulfenite_indicator", - "weight": 40 - }, - { - "block": "gtceu:molybdenite_indicator", - "weight": 30 - }, - { - "block": "gtceu:molybdenum_indicator", - "weight": 15 - }, - { - "block": "gtceu:powellite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 31, + "rarity": 245, + "density": 0.55, + "min_y": 0, + "max_y": 128, + "random_name": "nether_molybdenum", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:gneiss_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:schist_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:granite_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:diorite_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:gabbro_powellite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_wulfenite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_wulfenite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_molybdenite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_molybdenite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_molybdenum_ore", + "weight": 15 + }, + { + "block": "gtceu:pyroxenite_powellite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:wulfenite_indicator", + "weight": 40 + }, + { + "block": "gtceu:molybdenite_indicator", + "weight": 30 + }, + { + "block": "gtceu:molybdenum_indicator", + "weight": 15 + }, + { + "block": "gtceu:powellite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_monazite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_monazite.json index a13ec81e0..8c7060843 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_monazite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_monazite.json @@ -1,220 +1,221 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 185, - "density": 0.35, - "min_y": 24, - "max_y": 128, - "size": 45, - "random_name": "nether_monazite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:granite_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_neodymium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bastnasite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_monazite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_neodymium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:diorite_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_neodymium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bastnasite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_monazite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_neodymium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:gabbro_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_neodymium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bastnasite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_monazite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_neodymium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_neodymium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bastnasite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_monazite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_neodymium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:gneiss_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_neodymium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bastnasite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_monazite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_neodymium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_bastnasite_ore", - "weight": 50 - }, - { - "block": "gtceu:pyroxenite_monazite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_neodymium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_bastnasite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_monazite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_neodymium_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:bastnasite_indicator", - "weight": 50 - }, - { - "block": "gtceu:neodymium_indicator", - "weight": 25 - }, - { - "block": "gtceu:monazite_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 185, + "density": 0.35, + "min_y": 24, + "max_y": 128, + "random_name": "nether_monazite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 2 + }, + { + "block": "gtceu:granite_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_monazite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_neodymium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_neodymium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 2 + }, + { + "block": "gtceu:diorite_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_monazite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_neodymium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_neodymium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 2 + }, + { + "block": "gtceu:gabbro_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_monazite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_neodymium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_neodymium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 2 + }, + { + "block": "gtceu:schist_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_monazite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_neodymium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_neodymium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 2 + }, + { + "block": "gtceu:gneiss_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_monazite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_neodymium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_neodymium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_bastnasite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_bastnasite_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_monazite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_monazite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_neodymium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_neodymium_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:bastnasite_indicator", + "weight": 50 + }, + { + "block": "gtceu:monazite_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:neodymium_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_naquadah.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_naquadah.json index e774cbd0c..4f59be363 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_naquadah.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_naquadah.json @@ -1,77 +1,78 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 250, - "density": 0.30, - "min_y": 0, - "max_y": 38, - "size": 32, - "random_name": "nether_naquadah", - "blocks": [ - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_naquadah_ore", - "weight": 75 - }, - { - "block": "gtceu:pyroxenite_plutonium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_naquadah_block", - "weight": 2 - }, - { - "block": "gtceu:raw_plutonium_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_naquadah_ore", - "weight": 75 - }, - { - "block": "gtceu:basalt_plutonium_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_naquadah_block", - "weight": 2 - }, - { - "block": "gtceu:raw_plutonium_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:naquadah_indicator", - "weight": 75 - }, - { - "block": "gtceu:plutonium_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 32, + "rarity": 250, + "density": 0.3, + "min_y": 0, + "max_y": 38, + "random_name": "nether_naquadah", + "blocks": [ + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_naquadah_ore", + "weight": 75 + }, + { + "block": "gtceu:raw_naquadah_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_plutonium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_plutonium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_naquadah_ore", + "weight": 75 + }, + { + "block": "gtceu:raw_naquadah_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_plutonium_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_plutonium_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:naquadah_indicator", + "weight": 75 + }, + { + "block": "gtceu:plutonium_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_olivine.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_olivine.json index 7d79f8af2..5662185ca 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_olivine.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_olivine.json @@ -1,185 +1,186 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 250, - "density": 0.35, - "min_y": 24, - "max_y": 128, - "size": 31, - "random_name": "nether_olivine", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_glauconite_sand_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bentonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_magnesite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_olivine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_glauconite_sand_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bentonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_magnesite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_olivine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_glauconite_sand_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bentonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_magnesite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_olivine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_bentonite_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_magnesite_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_olivine_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_glauconite_sand_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bentonite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_magnesite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_olivine_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:bentonite_indicator", - "weight": 35 - }, - { - "block": "gtceu:magnesite_indicator", - "weight": 25 - }, - { - "block": "gtceu:glauconite_sand_indicator", - "weight": 15 - }, - { - "block": "gtceu:olivine_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 31, + "rarity": 250, + "density": 0.35, + "min_y": 24, + "max_y": 128, + "random_name": "nether_olivine", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bentonite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_magnesite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_olivine_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bentonite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_magnesite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_olivine_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bentonite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_magnesite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_olivine_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_glauconite_sand_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_bentonite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bentonite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_magnesite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_magnesite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_olivine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_olivine_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_glauconite_sand_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:bentonite_indicator", + "weight": 35 + }, + { + "block": "gtceu:magnesite_indicator", + "weight": 25 + }, + { + "block": "gtceu:olivine_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:glauconite_sand_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json index 68888ff38..4f13a1922 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_pitchblende.json @@ -1,168 +1,169 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 220, - "density": 0.55, - "min_y": 0, - "max_y": 128, - "size": 29, - "random_name": "nether_pitchblende", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:granite_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:diorite_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:gabbro_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:gneiss_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_pitchblende_ore", - "weight": 50 - }, - { - "block": "gtceu:pyroxenite_uraninite_ore", - "weight": 50 - }, - { - "block": "gtceu:raw_pitchblende_block", - "weight": 1 - }, - { - "block": "gtceu:raw_uraninite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:pitchblende_indicator", - "weight": 50 - }, - { - "block": "gtceu:uraninite_indicator", - "weight": 50 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 29, + "rarity": 220, + "density": 0.55, + "min_y": 0, + "max_y": 128, + "random_name": "nether_pitchblende", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:granite_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:schist_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_pitchblende_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_pitchblende_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_uraninite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_uraninite_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:pitchblende_indicator", + "weight": 50 + }, + { + "block": "gtceu:uraninite_indicator", + "weight": 50 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_quartz.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_quartz.json index a1fad095e..5b618a691 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_quartz.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_quartz.json @@ -1,230 +1,231 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 150, - "density": 0.4, - "min_y": 0, - "max_y": 128, - "size": 45, - "random_name": "nether_quartz", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_quartzite_ore", - "weight": 30 - }, - { - "block": "gtceu:deepslate_nether_quartz_ore", - "weight": 65 - }, - { - "block": "gtceu:deepslate_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_nether_quartz_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_quartzite_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_nether_quartz_ore", - "weight": 65 - }, - { - "block": "gtceu:pyroxenite_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_nether_quartz_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_quartzite_ore", - "weight": 30 - }, - { - "block": "gtceu:basalt_nether_quartz_ore", - "weight": 65 - }, - { - "block": "gtceu:basalt_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_nether_quartz_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_quartzite_ore", - "weight": 30 - }, - { - "block": "gtceu:dripstone_nether_quartz_ore", - "weight": 65 - }, - { - "block": "gtceu:dripstone_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_nether_quartz_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_quartzite_ore", - "weight": 30 - }, - { - "block": "gtceu:granite_nether_quartz_ore", - "weight": 65 - }, - { - "block": "gtceu:granite_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_nether_quartz_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_quartzite_ore", - "weight": 30 - }, - { - "block": "gtceu:diorite_nether_quartz_ore", - "weight": 65 - }, - { - "block": "gtceu:diorite_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_nether_quartz_block", - "weight": 2 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_quartzite_ore", - "weight": 30 - }, - { - "block": "gtceu:gabbro_nether_quartz_ore", - "weight": 65 - }, - { - "block": "gtceu:gabbro_barite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_quartzite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_nether_quartz_block", - "weight": 2 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:barite_indicator", - "weight": 25 - }, - { - "block": "gtceu:nether_quartz_bud_indicator", - "weight": 65 - }, - { - "block": "gtceu:quartzite_bud_indicator", - "weight": 30 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 150, + "density": 0.4, + "min_y": 0, + "max_y": 128, + "random_name": "nether_quartz", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_quartzite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_nether_quartz_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_nether_quartz_block", + "weight": 2 + }, + { + "block": "gtceu:deepslate_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_quartzite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_nether_quartz_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_nether_quartz_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_quartzite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_nether_quartz_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_nether_quartz_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_quartzite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_nether_quartz_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_nether_quartz_block", + "weight": 2 + }, + { + "block": "gtceu:dripstone_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_quartzite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_nether_quartz_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_nether_quartz_block", + "weight": 2 + }, + { + "block": "gtceu:granite_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_quartzite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_nether_quartz_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_nether_quartz_block", + "weight": 2 + }, + { + "block": "gtceu:diorite_barite_ore", + "weight": 25 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_quartzite_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_quartzite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_nether_quartz_ore", + "weight": 65 + }, + { + "block": "gtceu:raw_nether_quartz_block", + "weight": 2 + }, + { + "block": "gtceu:gabbro_barite_ore", + "weight": 25 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:quartzite_bud_indicator", + "weight": 30 + }, + { + "block": "gtceu:nether_quartz_bud_indicator", + "weight": 65 + }, + { + "block": "gtceu:barite_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_redstone.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_redstone.json index c7aa20d08..34f3756c3 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_redstone.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_redstone.json @@ -1,96 +1,97 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 160, - "density": 0.5, - "min_y": 0, - "max_y": 128, - "size": 45, - "random_name": "nether_redstone", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_redstone_ore", - "weight": 45 - }, - { - "block": "gtceu:granite_ruby_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_cinnabar_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_redstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cinnabar_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_redstone_ore", - "weight": 45 - }, - { - "block": "gtceu:pyroxenite_ruby_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_cinnabar_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_redstone_block", - "weight": 1 - }, - { - "block": "gtceu:raw_ruby_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cinnabar_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:redstone_indicator", - "weight": 45 - }, - { - "block": "gtceu:ruby_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:cinnabar_bud_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 160, + "density": 0.5, + "min_y": 0, + "max_y": 128, + "random_name": "nether_redstone", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:granite_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + }, + { + "block": "gtceu:granite_cinnabar_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_cinnabar_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_redstone_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_redstone_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_ruby_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_ruby_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_cinnabar_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_cinnabar_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:redstone_indicator", + "weight": 45 + }, + { + "block": "gtceu:ruby_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:cinnabar_bud_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_saltpeter.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_saltpeter.json index ce6e2ee08..524a66859 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_saltpeter.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_saltpeter.json @@ -1,248 +1,249 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 210, - "density": 0.4, - "min_y": 32, - "max_y": 128, - "size": 50, - "random_name": "nether_saltpeter", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_saltpeter_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_diatomite_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_electrotine_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_alunite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_saltpeter_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diatomite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_electrotine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_saltpeter_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_diatomite_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_electrotine_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_alunite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_saltpeter_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diatomite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_electrotine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_saltpeter_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_diatomite_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_electrotine_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_alunite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_saltpeter_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diatomite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_electrotine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_saltpeter_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_diatomite_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_electrotine_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_alunite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_saltpeter_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diatomite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_electrotine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_saltpeter_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_diatomite_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_electrotine_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_alunite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_saltpeter_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diatomite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_electrotine_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_saltpeter_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_diatomite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_electrotine_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_alunite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_saltpeter_block", - "weight": 1 - }, - { - "block": "gtceu:raw_diatomite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_electrotine_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:saltpeter_indicator", - "weight": 35 - }, - { - "block": "gtceu:diatomite_indicator", - "weight": 25 - }, - { - "block": "gtceu:electrotine_indicator", - "weight": 25 - }, - { - "block": "gtceu:alunite_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 210, + "density": 0.4, + "min_y": 32, + "max_y": 128, + "random_name": "nether_saltpeter", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_saltpeter_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_saltpeter_block", + "weight": 1 + }, + { + "block": "gtceu:granite_diatomite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_diatomite_block", + "weight": 1 + }, + { + "block": "gtceu:granite_electrotine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_electrotine_block", + "weight": 1 + }, + { + "block": "gtceu:granite_alunite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_saltpeter_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_saltpeter_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_diatomite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_diatomite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_electrotine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_electrotine_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_alunite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_saltpeter_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_saltpeter_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_diatomite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_diatomite_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_electrotine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_electrotine_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_alunite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_saltpeter_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_saltpeter_block", + "weight": 1 + }, + { + "block": "gtceu:schist_diatomite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_diatomite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_electrotine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_electrotine_block", + "weight": 1 + }, + { + "block": "gtceu:schist_alunite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_saltpeter_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_saltpeter_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_diatomite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_diatomite_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_electrotine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_electrotine_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_alunite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_saltpeter_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_saltpeter_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_diatomite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_diatomite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_electrotine_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_electrotine_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_alunite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:saltpeter_indicator", + "weight": 35 + }, + { + "block": "gtceu:diatomite_indicator", + "weight": 25 + }, + { + "block": "gtceu:electrotine_indicator", + "weight": 25 + }, + { + "block": "gtceu:alunite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sapphire.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sapphire.json index d8d40fceb..c68f3a7fe 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sapphire.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sapphire.json @@ -1,273 +1,274 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 180, - "density": 0.45, - "min_y": 0, - "max_y": 128, - "size": 33, - "random_name": "nether_sapphire", - "height": 8, - "blocks": [ - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:gabbro_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:gabbro_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sapphire_block", - "weight": 1 - }, - { - "block": "gtceu:raw_green_sapphire_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:granite_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:granite_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sapphire_block", - "weight": 1 - }, - { - "block": "gtceu:raw_green_sapphire_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:gneiss_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:gneiss_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sapphire_block", - "weight": 1 - }, - { - "block": "gtceu:raw_green_sapphire_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:diorite_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:diorite_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sapphire_block", - "weight": 1 - }, - { - "block": "gtceu:raw_green_sapphire_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:schist_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:schist_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sapphire_block", - "weight": 1 - }, - { - "block": "gtceu:raw_green_sapphire_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_almandine_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_pyrope_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:pyroxenite_green_sapphire_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_almandine_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrope_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sapphire_block", - "weight": 1 - }, - { - "block": "gtceu:raw_green_sapphire_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:almandine_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:pyrope_bud_indicator", - "weight": 25 - }, - { - "block": "gtceu:sapphire_bud_indicator", - "weight": 15 - }, - { - "block": "gtceu:green_sapphire_bud_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 8, + "size": 33, + "rarity": 180, + "density": 0.45, + "min_y": 0, + "max_y": 128, + "random_name": "nether_sapphire", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sapphire_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_green_sapphire_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:granite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:granite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sapphire_block", + "weight": 1 + }, + { + "block": "gtceu:granite_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_green_sapphire_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sapphire_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_green_sapphire_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sapphire_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_green_sapphire_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:schist_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:schist_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sapphire_block", + "weight": 1 + }, + { + "block": "gtceu:schist_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_green_sapphire_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_almandine_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_almandine_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_pyrope_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrope_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sapphire_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_green_sapphire_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_green_sapphire_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:almandine_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:pyrope_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:sapphire_bud_indicator", + "weight": 15 + }, + { + "block": "gtceu:green_sapphire_bud_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_scheelite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_scheelite.json index 955f9e7bb..f931eccbf 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_scheelite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_scheelite.json @@ -1,220 +1,221 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 180, - "density": 0.45, - "min_y": 0, - "max_y": 128, - "size": 25, - "random_name": "nether_scheelite", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:granite_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_lithium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:diorite_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_lithium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gabbro" - ], - "with": [ - { - "block": "gtceu:gabbro_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:gabbro_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:gabbro_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_lithium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:gneiss_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_lithium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:schist_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_lithium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_scheelite_ore", - "weight": 45 - }, - { - "block": "gtceu:pyroxenite_tungstate_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_lithium_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_scheelite_block", - "weight": 2 - }, - { - "block": "gtceu:raw_lithium_block", - "weight": 1 - }, - { - "block": "gtceu:raw_tungstate_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:scheelite_indicator", - "weight": 45 - }, - { - "block": "gtceu:tungstate_indicator", - "weight": 35 - }, - { - "block": "gtceu:lithium_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 25, + "rarity": 180, + "density": 0.45, + "min_y": 0, + "max_y": 128, + "random_name": "nether_scheelite", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 2 + }, + { + "block": "gtceu:granite_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:granite_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_lithium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 2 + }, + { + "block": "gtceu:diorite_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_lithium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gabbro" + ], + "with": [ + { + "block": "gtceu:gabbro_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 2 + }, + { + "block": "gtceu:gabbro_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:gabbro_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_lithium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 2 + }, + { + "block": "gtceu:gneiss_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_lithium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 2 + }, + { + "block": "gtceu:schist_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:schist_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_lithium_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_scheelite_ore", + "weight": 45 + }, + { + "block": "gtceu:raw_scheelite_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_tungstate_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_tungstate_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_lithium_ore", + "weight": 20 + }, + { + "block": "gtceu:raw_lithium_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:scheelite_indicator", + "weight": 45 + }, + { + "block": "gtceu:tungstate_indicator", + "weight": 35 + }, + { + "block": "gtceu:lithium_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sheldonite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sheldonite.json index 3ce9ea59f..0913d43fd 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sheldonite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sheldonite.json @@ -1,185 +1,186 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 250, - "density": 0.4, - "min_y": 0, - "max_y": 128, - "size": 35, - "random_name": "nether_sheldonite", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_bornite_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_cooperite_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_platinum_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_palladium_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_bornite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_cooperite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_platinum_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:bornite_indicator", - "weight": 35 - }, - { - "block": "gtceu:cooperite_indicator", - "weight": 25 - }, - { - "block": "gtceu:platinum_indicator", - "weight": 25 - }, - { - "block": "gtceu:palladium_indicator", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 35, + "rarity": 250, + "density": 0.4, + "min_y": 0, + "max_y": 128, + "random_name": "nether_sheldonite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_palladium_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_bornite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_bornite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_cooperite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_cooperite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_platinum_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_platinum_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_palladium_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:bornite_indicator", + "weight": 35 + }, + { + "block": "gtceu:cooperite_indicator", + "weight": 25 + }, + { + "block": "gtceu:platinum_indicator", + "weight": 25 + }, + { + "block": "gtceu:palladium_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_silver.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_silver.json index 62ab53079..9b37cfbe1 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_silver.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_silver.json @@ -1,127 +1,128 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 160, - "density": 0.5, - "min_y": 24, - "max_y": 128, - "size": 45, - "random_name": "nether_silver", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/granite" - ], - "with": [ - { - "block": "gtceu:granite_galena_ore", - "weight": 30 - }, - { - "block": "gtceu:granite_silver_ore", - "weight": 35 - }, - { - "block": "gtceu:granite_lead_ore", - "weight": 35 - }, - { - "block": "gtceu:raw_galena_block", - "weight": 1 - }, - { - "block": "gtceu:raw_silver_block", - "weight": 1 - }, - { - "block": "gtceu:raw_lead_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_galena_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_silver_ore", - "weight": 35 - }, - { - "block": "gtceu:gneiss_lead_ore", - "weight": 35 - }, - { - "block": "gtceu:raw_galena_block", - "weight": 1 - }, - { - "block": "gtceu:raw_silver_block", - "weight": 1 - }, - { - "block": "gtceu:raw_lead_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_galena_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_silver_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_lead_ore", - "weight": 35 - }, - { - "block": "gtceu:raw_galena_block", - "weight": 1 - }, - { - "block": "gtceu:raw_silver_block", - "weight": 1 - }, - { - "block": "gtceu:raw_lead_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_native_silver", - "weight": 50 - }, - { - "block": "gtceu:galena_indicator", - "weight": 25 - }, - { - "block": "gtceu:lead_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 160, + "density": 0.5, + "min_y": 24, + "max_y": 128, + "random_name": "nether_silver", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/granite" + ], + "with": [ + { + "block": "gtceu:granite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:granite_silver_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_silver_block", + "weight": 1 + }, + { + "block": "gtceu:granite_lead_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_lead_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_silver_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_silver_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_lead_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_lead_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_galena_ore", + "weight": 30 + }, + { + "block": "gtceu:raw_galena_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_silver_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_silver_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_lead_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_lead_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:galena_indicator", + "weight": 30 + }, + { + "block": "tfc:ore/small_native_silver", + "weight": 35 + }, + { + "block": "gtceu:lead_indicator", + "weight": 35 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sphalerite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sphalerite.json index cb06e49dc..974dba7fa 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sphalerite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sphalerite.json @@ -1,165 +1,166 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.5, - "min_y": 32, - "max_y": 128, - "size": 45, - "random_name": "nether_sphalerite", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:deepslate_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:basalt_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:pyroxenite_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_sulfur_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_sphalerite_ore", - "weight": 40 - }, - { - "block": "gtceu:dripstone_pyrite_ore", - "weight": 25 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 1 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_sphalerite", - "weight": 40 - }, - { - "block": "gtceu:sulfur_indicator", - "weight": 35 - }, - { - "block": "gtceu:pyrite_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 170, + "density": 0.5, + "min_y": 32, + "max_y": 128, + "random_name": "nether_sphalerite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_pyrite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_pyrite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_sulfur_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_sphalerite_ore", + "weight": 40 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_pyrite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:sulfur_indicator", + "weight": 35 + }, + { + "block": "tfc:ore/small_sphalerite", + "weight": 40 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 25 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sulfur.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sulfur.json index 65ccb7c54..b6e10b202 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sulfur.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sulfur.json @@ -1,159 +1,160 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 165, - "density": 0.3, - "min_y": 0, - "max_y": 128, - "size": 50, - "random_name": "nether_sulfur", - "blocks": [ - { - "replace": [ - "tfc:rock/raw/diorite" - ], - "with": [ - { - "block": "gtceu:diorite_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:diorite_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:diorite_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 2 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:basalt_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 2 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:pyroxenite_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 2 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_sulfur_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_pyrite_ore", - "weight": 35 - }, - { - "block": "gtceu:schist_sphalerite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_sulfur_block", - "weight": 2 - }, - { - "block": "gtceu:raw_sphalerite_block", - "weight": 1 - }, - { - "block": "gtceu:raw_pyrite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 15, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:sulfur_indicator", - "weight": 50 - }, - { - "block": "gtceu:pyrite_indicator", - "weight": 35 - }, - { - "block": "tfc:ore/small_sphalerite", - "weight": 15 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 50, + "rarity": 165, + "density": 0.3, + "min_y": 0, + "max_y": 128, + "random_name": "nether_sulfur", + "blocks": [ + { + "replace": [ + "tfc:rock/raw/diorite" + ], + "with": [ + { + "block": "gtceu:diorite_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:diorite_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:diorite_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:basalt_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_sulfur_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_sulfur_block", + "weight": 2 + }, + { + "block": "gtceu:schist_pyrite_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_pyrite_block", + "weight": 1 + }, + { + "block": "gtceu:schist_sphalerite_ore", + "weight": 15 + }, + { + "block": "gtceu:raw_sphalerite_block", + "weight": 1 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:sulfur_indicator", + "weight": 50 + }, + { + "block": "gtceu:pyrite_indicator", + "weight": 35 + }, + { + "block": "tfc:ore/small_sphalerite", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sylvite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sylvite.json new file mode 100644 index 000000000..75d8cda4f --- /dev/null +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_sylvite.json @@ -0,0 +1,38 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 17, + "rarity": 75, + "density": 0.6, + "min_y": 0, + "max_y": 64, + "random_name": "nether_sylvite", + "blocks": [ + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "beneath:ore/blackstone_sylvite", + "weight": 100 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 20, + "underground_rarity": 40, + "underground_count": 200, + "blocks": [ + { + "block": "minecraft:air", + "weight": 100 + } + ] + } + } +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_tetrahedrite.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_tetrahedrite.json index 99367db71..2a2e5669e 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_tetrahedrite.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_tetrahedrite.json @@ -1,175 +1,176 @@ { - "type": "tfc:cluster_vein", - "config": { - "rarity": 170, - "density": 0.5, - "min_y": 32, - "max_y": 128, - "size": 45, - "random_name": "nether_tetrahedrite", - "blocks": [ - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:deepslate_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:deepslate_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:dripstone_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:dripstone_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/schist" - ], - "with": [ - { - "block": "gtceu:schist_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:schist_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:schist_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "tfc:rock/raw/gneiss" - ], - "with": [ - { - "block": "gtceu:gneiss_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:gneiss_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:gneiss_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_tetrahedrite_ore", - "weight": 50 - }, - { - "block": "gtceu:pyroxenite_copper_ore", - "weight": 30 - }, - { - "block": "gtceu:pyroxenite_stibnite_ore", - "weight": 20 - }, - { - "block": "gtceu:raw_tetrahedrite_block", - "weight": 2 - }, - { - "block": "minecraft:raw_copper_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "tfc:ore/small_tetrahedrite", - "weight": 50 - }, - { - "block": "tfc:ore/small_native_copper", - "weight": 30 - }, - { - "block": "gtceu:stibnite_indicator", - "weight": 20 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:cluster_vein", + "config": { + "size": 45, + "rarity": 170, + "density": 0.5, + "min_y": 32, + "max_y": 128, + "random_name": "nether_tetrahedrite", + "blocks": [ + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 2 + }, + { + "block": "gtceu:deepslate_copper_ore", + "weight": 30 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 2 + }, + { + "block": "gtceu:dripstone_copper_ore", + "weight": 30 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/schist" + ], + "with": [ + { + "block": "gtceu:schist_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 2 + }, + { + "block": "gtceu:schist_copper_ore", + "weight": 30 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + }, + { + "block": "gtceu:schist_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "tfc:rock/raw/gneiss" + ], + "with": [ + { + "block": "gtceu:gneiss_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 2 + }, + { + "block": "gtceu:gneiss_copper_ore", + "weight": 30 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + }, + { + "block": "gtceu:gneiss_stibnite_ore", + "weight": 20 + } + ] + }, + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_tetrahedrite_ore", + "weight": 50 + }, + { + "block": "gtceu:raw_tetrahedrite_block", + "weight": 2 + }, + { + "block": "gtceu:pyroxenite_copper_ore", + "weight": 30 + }, + { + "block": "minecraft:raw_copper_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_stibnite_ore", + "weight": 20 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "tfc:ore/small_tetrahedrite", + "weight": 50 + }, + { + "block": "tfc:ore/small_native_copper", + "weight": 30 + }, + { + "block": "gtceu:stibnite_indicator", + "weight": 20 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_topaz.json b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_topaz.json index 423abd93d..64607724c 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_topaz.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/vein/nether_topaz.json @@ -1,186 +1,187 @@ { - "type": "tfc:disc_vein", - "config": { - "rarity": 180, - "density": 0.4, - "min_y": 0, - "max_y": 128, - "size": 33, - "random_name": "nether_topaz", - "height": 7, - "blocks": [ - { - "replace": [ - "minecraft:blackstone", - "minecraft:magma_block" - ], - "with": [ - { - "block": "gtceu:pyroxenite_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:pyroxenite_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:pyroxenite_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:deepslate", - "tfc:mud/silty_loam", - "beneath:soul_clay", - "tfc:dirt/loam", - "tfc:mud/loam", - "tfc:peat", - "tfc:dirt/silty_loam" - ], - "with": [ - { - "block": "gtceu:deepslate_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:deepslate_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:deepslate_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:basalt", - "tfc:rock/raw/basalt" - ], - "with": [ - { - "block": "gtceu:basalt_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:basalt_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:basalt_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - }, - { - "replace": [ - "minecraft:dripstone_block" - ], - "with": [ - { - "block": "gtceu:dripstone_blue_topaz_ore", - "weight": 35 - }, - { - "block": "gtceu:dripstone_topaz_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_chalcocite_ore", - "weight": 25 - }, - { - "block": "gtceu:dripstone_bornite_ore", - "weight": 15 - }, - { - "block": "gtceu:raw_blue_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_topaz_block", - "weight": 1 - }, - { - "block": "gtceu:raw_chalcocite_block", - "weight": 1 - } - ] - } - ], - "indicator": { - "rarity": 12, - "depth": 1, - "underground_rarity": 40, - "underground_count": 150, - "blocks": [ - { - "block": "gtceu:chalcocite_indicator", - "weight": 25 - }, - { - "block": "gtceu:bornite_indicator", - "weight": 15 - }, - { - "block": "gtceu:blue_topaz_bud_indicator", - "weight": 35 - }, - { - "block": "gtceu:topaz_bud_indicator", - "weight": 25 - } - ] - } - } + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "type": "tfc:disc_vein", + "config": { + "height": 7, + "size": 33, + "rarity": 180, + "density": 0.4, + "min_y": 0, + "max_y": 128, + "random_name": "nether_topaz", + "blocks": [ + { + "replace": [ + "minecraft:blackstone", + "minecraft:magma_block" + ], + "with": [ + { + "block": "gtceu:pyroxenite_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:pyroxenite_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:deepslate", + "tfc:mud/silty_loam", + "beneath:soul_clay", + "tfc:dirt/loam", + "tfc:mud/loam", + "tfc:peat", + "tfc:dirt/silty_loam" + ], + "with": [ + { + "block": "gtceu:deepslate_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:deepslate_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:basalt", + "tfc:rock/raw/basalt" + ], + "with": [ + { + "block": "gtceu:basalt_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:basalt_bornite_ore", + "weight": 15 + } + ] + }, + { + "replace": [ + "minecraft:dripstone_block" + ], + "with": [ + { + "block": "gtceu:dripstone_blue_topaz_ore", + "weight": 35 + }, + { + "block": "gtceu:raw_blue_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_topaz_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_topaz_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_chalcocite_ore", + "weight": 25 + }, + { + "block": "gtceu:raw_chalcocite_block", + "weight": 1 + }, + { + "block": "gtceu:dripstone_bornite_ore", + "weight": 15 + } + ] + } + ], + "indicator": { + "rarity": 15, + "depth": 1, + "underground_rarity": 40, + "underground_count": 150, + "blocks": [ + { + "block": "gtceu:blue_topaz_bud_indicator", + "weight": 35 + }, + { + "block": "gtceu:topaz_bud_indicator", + "weight": 25 + }, + { + "block": "gtceu:chalcocite_indicator", + "weight": 25 + }, + { + "block": "gtceu:bornite_indicator", + "weight": 15 + } + ] + } + } } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_amethyst.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_amethyst.json index 5ff7dcef4..12cf023fe 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_amethyst.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_amethyst.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/deep_garnet_amethyst", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/deep_garnet_amethyst", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_opal.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_opal.json index f32debd24..d4637c686 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_opal.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_garnet_opal.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_garnet_opal", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_gold.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_gold.json index 48564e60d..8e7191034 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_gold.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_gold.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_gold", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_hematite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_hematite.json index 22d7e4855..6b96a7ba4 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_hematite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_hematite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_hematite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_limonite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_limonite.json index 60eaa2a4b..8e9fb43fb 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_limonite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_limonite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_limonite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_magnetite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_magnetite.json index 6c36e5182..56d1e989f 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_magnetite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_magnetite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_magnetite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_molybdenum.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_molybdenum.json index 6f2fd1540..a025e08f2 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_molybdenum.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_molybdenum.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_molybdenum", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_pitchblende.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_pitchblende.json index cc6616c88..8f78f714f 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_pitchblende.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_pitchblende.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_pitchblende", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sapphire.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sapphire.json index 7dcbe02ba..de6572699 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sapphire.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sapphire.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_sapphire", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_scheelite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_scheelite.json index cede1289a..d1ce1a428 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_scheelite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_scheelite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_scheelite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sheldonite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sheldonite.json index e57739e25..2704c34e0 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sheldonite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_sheldonite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_sheldonite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_topaz.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_topaz.json index 4d80cfc9f..89cd4fbbe 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_topaz.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/deep_topaz.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/deep_topaz", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_apatite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_apatite.json index b8e65f709..01770aca2 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_apatite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_apatite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_apatite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_basaltic_sands.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_basaltic_sands.json index 2d8b4220d..eaae7ccbb 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_basaltic_sands.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_basaltic_sands.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_basaltic_sands", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bauxite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bauxite.json index c2d333cc0..291490b92 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bauxite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bauxite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_bauxite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_beryllium.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_beryllium.json index 7a8b0ea25..1aefe2ba5 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_beryllium.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_beryllium.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_beryllium", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bismuthinite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bismuthinite.json index 4ffb3edf3..691139137 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bismuthinite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_bismuthinite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_bismuthinite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_cassiterite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_cassiterite.json index a59657985..39bdf75d9 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_cassiterite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_cassiterite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_cassiterite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_coal.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_coal.json index 9ee5910a5..578bdec95 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_coal.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_coal.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_coal", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_copper.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_copper.json index 37c77ab37..0059b3a14 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_copper.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_copper.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_copper", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnet_tin.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnet_tin.json index acbd9ff67..76709f84d 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnet_tin.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnet_tin.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_garnet_tin", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnierite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnierite.json index a04612ca3..9e2f5bc33 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnierite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_garnierite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_garnierite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_gold.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_gold.json index 1e2f931ec..815bd7bfd 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_gold.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_gold.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_gold", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_graphite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_graphite.json index a67a04e85..fe55cca94 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_graphite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_graphite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_graphite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_graphite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_hematite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_hematite.json index 5edd72d98..4185c679f 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_hematite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_hematite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_hematite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_hematite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lapis.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lapis.json index 2bedd346d..caf6b4995 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lapis.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lapis.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_lapis", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_lapis", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_limonite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_limonite.json index 6422a5d88..c544c34ca 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_limonite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_limonite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_limonite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_limonite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lubricant.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lubricant.json index 1b1d8af95..a1c5136c4 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lubricant.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_lubricant.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_lubricant", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_lubricant", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_magnetite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_magnetite.json index 8a7ebd400..59a7310f5 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_magnetite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_magnetite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_magnetite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_magnetite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_manganese.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_manganese.json index 8bba563f5..e86cae586 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_manganese.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_manganese.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_manganese", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_manganese", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_mica.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_mica.json index 9400df3f3..efeded951 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_mica.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_mica.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_mica", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_mica", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_monazite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_monazite.json index bcb01023b..6b6b4c877 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_monazite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_monazite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_monazite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_monazite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_oilsands.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_oilsands.json index 00dbc17f2..1e7b09f22 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_oilsands.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_oilsands.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_oilsands", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_oilsands", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_olivine.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_olivine.json index 055aaeef9..c14228e77 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_olivine.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_olivine.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_olivine", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_olivine", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_quartz.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_quartz.json index 2f2be7798..1e58cc10c 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_quartz.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_quartz.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:earth/vein/normal_quartz", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_redstone.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_redstone.json index 0168efb94..b174febc3 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_redstone.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_redstone.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_redstone", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_redstone", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_salt.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_salt.json index d04686c2f..41b79833e 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_salt.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_salt.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_salt", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_salt", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_saltpeter.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_saltpeter.json index 9fb6ee42f..b654dedc5 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_saltpeter.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_saltpeter.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_saltpeter", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_saltpeter", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_silver.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_silver.json index 195151a65..0fb399f59 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_silver.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_silver.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_silver", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_silver", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sphalerite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sphalerite.json index decd97060..c85fa467c 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sphalerite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sphalerite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_sphalerite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_sphalerite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_spodumene.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_spodumene.json index b4be7f457..96a72fc80 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_spodumene.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_spodumene.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_spodumene", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_spodumene", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sulfur.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sulfur.json index ee124c86e..02a09c720 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sulfur.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_sulfur.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_sulfur", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_sulfur", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_tetrahedrite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_tetrahedrite.json index 22624eb1b..a0cd887f6 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_tetrahedrite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/normal_tetrahedrite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/normal_tetrahedrite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/normal_tetrahedrite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_bismuthinite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_bismuthinite.json index 7cb426b35..c89e46755 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_bismuthinite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_bismuthinite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/surface_bismuthinite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/surface_bismuthinite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_cassiterite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_cassiterite.json index 922f7316c..ecc412fe6 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_cassiterite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_cassiterite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/surface_cassiterite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/surface_cassiterite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_copper.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_copper.json index e5c94d190..fd84089ab 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_copper.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_copper.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/surface_copper", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/surface_copper", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_sphalerite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_sphalerite.json index 12ff02217..ae5db54b6 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_sphalerite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_sphalerite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/surface_sphalerite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/surface_sphalerite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_tetrahedrite.json b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_tetrahedrite.json index 24d14bab1..52f06423d 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_tetrahedrite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/earth/vein/surface_tetrahedrite.json @@ -1,4 +1,5 @@ { - "feature": "tfg:earth/vein/surface_tetrahedrite", - "placement": [] + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:earth/vein/surface_tetrahedrite", + "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/surface/stick_patch.json b/kubejs/data/tfg/worldgen/placed_feature/nether/surface/stick_patch.json index f03ca089f..71f646425 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/surface/stick_patch.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/surface/stick_patch.json @@ -15,7 +15,7 @@ }, { "type": "minecraft:count_on_every_layer", - "count": 3 + "count": 1 }, { "type": "minecraft:in_square" diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_anthracite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_anthracite.json new file mode 100644 index 000000000..66feddff8 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_anthracite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:nether/vein/nether_anthracite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_apatite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_apatite.json index 899d987ed..b8b16da19 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_apatite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_apatite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_apatite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_basaltic_sands.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_basaltic_sands.json index 18b92a573..e24fd3084 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_basaltic_sands.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_basaltic_sands.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_basaltic_sands", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_bauxite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_bauxite.json index 47d88f038..d0402daf0 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_bauxite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_bauxite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_bauxite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_beryllium.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_beryllium.json index f58c65a0c..ab61d5b13 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_beryllium.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_beryllium.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_beryllium", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_cassiterite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_cassiterite.json index 0a4119116..407ab518b 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_cassiterite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_cassiterite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_cassiterite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_copper.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_copper.json index 09380ba37..820f706d3 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_copper.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_copper.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_copper", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet.json index 609294394..4d9edf964 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_garnet", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet_tin.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet_tin.json index ac3ba3c64..b0d48f041 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet_tin.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnet_tin.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_garnet_tin", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnierite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnierite.json index 9fc91dcc3..19c50eda8 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnierite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_garnierite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_garnierite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_goethite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_goethite.json new file mode 100644 index 000000000..d7e469278 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_goethite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:nether/vein/nether_goethite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_gold.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_gold.json index b052ad5e0..2b4331025 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_gold.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_gold.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_gold", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_graphite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_graphite.json index 9c2b2a924..3e24793c9 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_graphite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_graphite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_graphite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_hematite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_hematite.json index a06660772..5786b369b 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_hematite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_hematite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_hematite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lapis.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lapis.json index 37d901091..90f83a44c 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lapis.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lapis.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_lapis", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_limonite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_limonite.json deleted file mode 100644 index ac7b2cd29..000000000 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_limonite.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "feature": "tfg:nether/vein/nether_limonite", - "placement": [] -} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lubricant.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lubricant.json index 119334584..46f94d16b 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lubricant.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_lubricant.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_lubricant", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_magnetite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_magnetite.json index 663f4b161..8b18d1455 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_magnetite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_magnetite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_magnetite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_manganese.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_manganese.json index 71b5efb9f..5af7dd128 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_manganese.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_manganese.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_manganese", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_mica.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_mica.json index e8e4e9feb..f98ef9ed1 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_mica.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_mica.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_mica", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_molybdenum.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_molybdenum.json index 7a6a6d1f7..d025e2390 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_molybdenum.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_molybdenum.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_molybdenum", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_monazite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_monazite.json index 4f9573c4a..f94e15624 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_monazite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_monazite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_monazite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_naquadah.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_naquadah.json index 610aa5aed..7e13718a7 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_naquadah.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_naquadah.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_naquadah", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_olivine.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_olivine.json index 0ed55715b..270697fef 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_olivine.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_olivine.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_olivine", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_pitchblende.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_pitchblende.json index 3b1c07957..7f111b225 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_pitchblende.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_pitchblende.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_pitchblende", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_quartz.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_quartz.json index 2cb583767..12425c618 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_quartz.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_quartz.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_quartz", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_redstone.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_redstone.json index aa92ecf30..605deac2e 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_redstone.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_redstone.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_redstone", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_saltpeter.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_saltpeter.json index c93a8af58..a6b025409 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_saltpeter.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_saltpeter.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_saltpeter", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sapphire.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sapphire.json index 18968531f..5e57f4509 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sapphire.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sapphire.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_sapphire", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_scheelite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_scheelite.json index 4c372e569..e11b93886 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_scheelite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_scheelite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_scheelite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sheldonite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sheldonite.json index d5181bc0c..baa041d78 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sheldonite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sheldonite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_sheldonite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_silver.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_silver.json index fa2125e40..5940b0bf1 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_silver.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_silver.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_silver", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sphalerite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sphalerite.json index 7e4ae0cec..fc4f3bd9e 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sphalerite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sphalerite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_sphalerite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sulfur.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sulfur.json index c55a721f8..e4f971de4 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sulfur.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sulfur.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_sulfur", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sylvite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sylvite.json new file mode 100644 index 000000000..cc2cd4f63 --- /dev/null +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_sylvite.json @@ -0,0 +1,5 @@ +{ + "__credits__": "This vein was automatically generated by OresToFieldGuide.", + "feature": "tfg:nether/vein/nether_sylvite", + "placement": [] +} \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_tetrahedrite.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_tetrahedrite.json index 6148daf3c..afe6e7ade 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_tetrahedrite.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_tetrahedrite.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_tetrahedrite", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_topaz.json b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_topaz.json index 7e0b0cbb3..952012c04 100644 --- a/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_topaz.json +++ b/kubejs/data/tfg/worldgen/placed_feature/nether/vein/nether_topaz.json @@ -1,4 +1,5 @@ { + "__credits__": "This vein was automatically generated by OresToFieldGuide.", "feature": "tfg:nether/vein/nether_topaz", "placement": [] } \ No newline at end of file diff --git a/kubejs/data/tfg_excludes.zip b/kubejs/data/tfg_excludes.zip index b69bcf1e6..bfa87092b 100644 Binary files a/kubejs/data/tfg_excludes.zip and b/kubejs/data/tfg_excludes.zip differ diff --git a/kubejs/server_scripts/ae2/recipes.js b/kubejs/server_scripts/ae2/recipes.js index c120022b8..279b78271 100644 --- a/kubejs/server_scripts/ae2/recipes.js +++ b/kubejs/server_scripts/ae2/recipes.js @@ -830,15 +830,15 @@ const registerAE2Recipes = (event) => { // Wireless Crafting Terminal event.recipes.gtceu.assembler('ae2:wireless_crafting_terminal') .itemInputs( - '2x gtceu:hv_lithium_battery', - '2x gtceu:luv_sensor', - 'gtceu:luv_emitter', - '2x #forge:rods/osmiridium', + '2x #gtceu:batteries/ev', + '2x gtceu:ev_sensor', + 'gtceu:ev_emitter', + '2x #forge:rods/ultimet', 'ae2:wireless_terminal', 'ae2:crafting_terminal') .itemOutputs('ae2:wireless_crafting_terminal') - .duration(30) - .EUt(250) + .duration(300) + .EUt(GTValues.VA[GTValues.EV]) //#region Storage Components @@ -2119,16 +2119,6 @@ const registerAE2Recipes = (event) => { .duration(60) .EUt(256) - //charger - event.recipes.gtceu.assembler('ae2:charger') - .itemInputs( - 'gtceu:hv_battery_buffer_4x', - '4x gtceu:mercury_barium_calcium_cuprate_quadruple_wire',) - .inputFluids(Fluid.of('tfg:fluix', 476)) - .itemOutputs('ae2:charger') - .duration(200) - .EUt(480) - // Fluix block event.recipes.gtceu.fluid_solidifier('ae2:solidify_fluix_block') diff --git a/kubejs/server_scripts/ae2wtlib/recipes.js b/kubejs/server_scripts/ae2wtlib/recipes.js index 848b81e53..485610184 100644 --- a/kubejs/server_scripts/ae2wtlib/recipes.js +++ b/kubejs/server_scripts/ae2wtlib/recipes.js @@ -13,30 +13,28 @@ const registerAE2WTLibRecipes = (event) => { // Wireless Pattern Terminal event.recipes.gtceu.assembler('ae2wtlib:wireless_pattern_encoding_terminal') .itemInputs( - '2x gtceu:hv_lithium_battery', + '2x #gtceu:batteries/ev', 'ae2:wireless_terminal', 'ae2:pattern_encoding_terminal', - '2x gtceu:luv_sensor', - 'gtceu:luv_emitter', - '2x #forge:rods/osmiridium', - ) + '2x gtceu:ev_sensor', + 'gtceu:ev_emitter', + '2x #forge:rods/ultimet') .itemOutputs('ae2wtlib:wireless_pattern_encoding_terminal') - .duration(30) - .EUt(250) + .duration(300) + .EUt(GTValues.VA[GTValues.EV]) // Pattern Access Terminal event.recipes.gtceu.assembler('ae2wtlib:wireless_pattern_access_terminal') .itemInputs( - '2x gtceu:hv_lithium_battery', + '2x #gtceu:batteries/ev', 'ae2:wireless_terminal', 'ae2:pattern_access_terminal', - '2x gtceu:luv_sensor', - 'gtceu:luv_emitter', - '2x #forge:rods/osmiridium' - ) + '2x gtceu:ev_sensor', + 'gtceu:ev_emitter', + '2x #forge:rods/ultimet') .itemOutputs('ae2wtlib:wireless_pattern_access_terminal') - .duration(30) - .EUt(250) + .duration(300) + .EUt(GTValues.VA[GTValues.EV]) // Magnet Card event.recipes.gtceu.assembler('ae2wtlib:magnet_card') @@ -44,12 +42,9 @@ const registerAE2WTLibRecipes = (event) => { '#forge:ingots/magnetic_neodymium', '4x #forge:rods/magnetic_neodymium', 'ae2:advanced_card', - 'ae2:annihilation_plane', - '#forge:plates/redstone', - '#forge:plates/lapis', - ) + 'ae2:annihilation_plane') .itemOutputs('ae2wtlib:magnet_card') - .duration(30) + .duration(300) .EUt(250) // Quantum Bridge Card @@ -70,4 +65,19 @@ const registerAE2WTLibRecipes = (event) => { .itemOutputs('ae2wtlib:quantum_bridge_card') .duration(300) .EUt(64000) + + + event.remove({ output: 'ae2wtlib:wireless_universal_terminal' }) + + event.recipes.gtceu.assembler('ae2wtlib:wireless_universal_terminal') + .itemInputs( + 'ae2:wireless_crafting_terminal', + 'ae2wtlib:wireless_pattern_encoding_terminal', + 'ae2wtlib:wireless_pattern_access_terminal', + '1x gtceu:iv_sensor', + '1x gtceu:iv_emitter', + '2x #forge:plates/rhodium') + .itemOutputs(Item.of('ae2wtlib:wireless_universal_terminal', '{crafting:1b, pattern_access:1b, pattern_encoding:1b}')) + .duration(300) + .EUt(GTValues.VA[GTValues.IV]) } \ No newline at end of file diff --git a/kubejs/server_scripts/afc/recipes.js b/kubejs/server_scripts/afc/recipes.js index 4be902fd8..a7d4985ca 100644 --- a/kubejs/server_scripts/afc/recipes.js +++ b/kubejs/server_scripts/afc/recipes.js @@ -155,27 +155,45 @@ const registerAFCRecipes = (event) => { .id("tfg:tree_tapping/ancient_douglas_fir_resin") //#region Π’Ρ‹Ρ…ΠΎΠ΄: Бырая рСзиновая ΠΏΡ‹Π»ΡŒ + // Removed in favor of making these output latex + // // Из Π±Ρ€Π΅Π²Π½Π° ΠΊΠ°ΠΏΠΎΠΊΠ° + // event.recipes.gtceu.extractor('raw_rubber_from_log') + // .itemInputs('#tfg:latex_logs') + // .itemOutputs('gtceu:raw_rubber_dust') + // .duration(300) + // .EUt(2) - // Из Π±Ρ€Π΅Π²Π½Π° ΠΊΠ°ΠΏΠΎΠΊΠ° - event.recipes.gtceu.extractor('raw_rubber_from_log') - .itemInputs('#tfg:latex_logs') - .itemOutputs('gtceu:raw_rubber_dust') - .duration(300) - .EUt(2) + // // Из саТСнца ΠΊΠ°ΠΏΠΎΠΊΠ° + // event.recipes.gtceu.extractor('raw_rubber_from_sapling') + // .itemInputs('1x #tfg:rubber_saplings') + // .itemOutputs('gtceu:raw_rubber_dust') + // .duration(300) + // .EUt(2) - // Из саТСнца ΠΊΠ°ΠΏΠΎΠΊΠ° - event.recipes.gtceu.extractor('raw_rubber_from_sapling') - .itemInputs('1x #tfg:rubber_saplings') - .itemOutputs('gtceu:raw_rubber_dust') - .duration(300) - .EUt(2) + // // Из листвы ΠΊΠ°ΠΏΠΎΠΊΠ° + // event.recipes.gtceu.extractor('raw_rubber_from_leaves') + // .itemInputs('16x #tfg:rubber_leaves') + // .itemOutputs('gtceu:raw_rubber_dust') + // .duration(300) + // .EUt(2) - // Из листвы ΠΊΠ°ΠΏΠΎΠΊΠ° - event.recipes.gtceu.extractor('raw_rubber_from_leaves') - .itemInputs('16x #tfg:rubber_leaves') - .itemOutputs('gtceu:raw_rubber_dust') - .duration(300) - .EUt(2) + event.recipes.gtceu.extractor('latex_from_log') + .itemInputs('4x #tfg:latex_logs') + .outputFluids(Fluid.of('tfg:latex', 1000)) + .duration(600) + .EUt(20) + + event.recipes.gtceu.extractor('latex_from_sapling') + .itemInputs('10x #tfg:rubber_saplings') + .outputFluids(Fluid.of('tfg:latex', 1000)) + .duration(750) + .EUt(20) + + event.recipes.gtceu.extractor('latex_from_leaves') + .itemInputs('20x #tfg:rubber_leaves') + .outputFluids(Fluid.of('tfg:latex', 1000)) + .duration(750) + .EUt(20) event.replaceOutput({ id: 'gtceu:centrifuge/sticky_resin_separation' }, 'gtceu:raw_rubber_dust', '3x gtceu:carbon_dust') diff --git a/kubejs/server_scripts/afc/tags.js b/kubejs/server_scripts/afc/tags.js index 85b736ee9..579af3d4c 100644 --- a/kubejs/server_scripts/afc/tags.js +++ b/kubejs/server_scripts/afc/tags.js @@ -59,6 +59,9 @@ const registerAFCItemTags = (event) => { event.add("tfg:rubber_leaves", "afc:wood/leaves/red_silk_cotton") event.add("tfg:rubber_leaves", "afc:wood/leaves/hevea") event.add("tfg:rubber_leaves", "afc:wood/leaves/rubber_fig") + + event.add("tfg:rubber_plants", "tfc:plant/goldenrod") + event.add("tfg:rubber_plants", "tfc:plant/dandelion") } diff --git a/kubejs/server_scripts/comforts/recipes.js b/kubejs/server_scripts/comforts/recipes.js index 75922cff4..047e51703 100644 --- a/kubejs/server_scripts/comforts/recipes.js +++ b/kubejs/server_scripts/comforts/recipes.js @@ -6,19 +6,21 @@ const registerComfortsRecipes = (event) => { event.remove({ mod: "comforts" }) //Rope and Nail - event.recipes.minecraft.crafting_shapeless("comforts:rope_and_nail", ["firmaciv:rope_coil", "gtceu:wrought_iron_screw"]) + event.shapeless("comforts:rope_and_nail", ["firmaciv:rope_coil", "gtceu:wrought_iron_screw"]) .id("comforts:crafting/shaped/rope_and_nail"); //sleeping bag - event.recipes.minecraft.crafting_shaped("comforts:sleeping_bag_white", [ - "AAA", - "B " - ], { - A: "#tfc:high_quality_cloth", - B: 'tfc:bone_needle' - }); + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped("comforts:sleeping_bag_white", [ + "AAA", + "B " + ], { + A: "#tfc:high_quality_cloth", + B: 'tfc:bone_needle' + }) + ).id('comforts:shaped/sleeping_bag_white'); - event.recipes.minecraft.crafting_shaped("comforts:hammock_white", [ + event.shaped("comforts:hammock_white", [ "ABA", "CCC", "ABA" diff --git a/kubejs/server_scripts/computer_craft/data.js b/kubejs/server_scripts/computer_craft/data.js index 8b341c40b..15d02bbf3 100644 --- a/kubejs/server_scripts/computer_craft/data.js +++ b/kubejs/server_scripts/computer_craft/data.js @@ -3,7 +3,7 @@ const registerComputerCraftData = (event) => { const TURTLE_TOOL_TYPES = [ GTToolType.SWORD, GTToolType.PICKAXE, GTToolType.AXE, GTToolType.SHOVEL, GTToolType.HOE ] - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { TURTLE_TOOL_TYPES.forEach(type => { let toolStack = ToolHelper.get(type, material) diff --git a/kubejs/server_scripts/create/recipes.js b/kubejs/server_scripts/create/recipes.js index 540506441..d32cfd23d 100644 --- a/kubejs/server_scripts/create/recipes.js +++ b/kubejs/server_scripts/create/recipes.js @@ -5,7 +5,6 @@ const registerCreateRecipes = (event) => { // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ€Π΅Ρ†Π΅ΠΏΡ‚ΠΎΠ² ΠΌΠΎΠ΄Π° create event.remove({ not: [ - { id: 'create:crafting/kinetics/adjustable_chain_gearshift' }, { id: 'create:crafting/kinetics/cuckoo_clock' }, { id: 'create:crafting/kinetics/mysterious_cuckoo_clock' }, { id: 'create:crafting/kinetics/smart_chute' }, @@ -169,7 +168,7 @@ const registerCreateRecipes = (event) => { 'AAA', ' B ' ], { - A: '#forge:nuggets/wrought_iron', + A: '#forge:bolts/wrought_iron', B: '#forge:plates/wrought_iron' }).id('tfg:create/shaped/metal_bracket') @@ -182,7 +181,7 @@ const registerCreateRecipes = (event) => { }).id('tfg:create/shaped/fluid_pipe') event.recipes.gtceu.assembler('tfg:create/fluid_pipe') - .itemInputs('4x #forge:plates/copper') + .itemInputs('2x #forge:plates/copper') .circuit(3) .itemOutputs('create:fluid_pipe') .duration(200) @@ -206,7 +205,7 @@ const registerCreateRecipes = (event) => { }).id('tfg:create/shaped/copper_valve_handle') event.recipes.gtceu.assembler('tfg:create/copper_valve_handle') - .itemInputs('4x #forge:plates/copper', '#forge:small_gears/wrought_iron') + .itemInputs('#forge:plates/copper', '#forge:small_gears/wrought_iron') .circuit(6) .itemOutputs('create:copper_valve_handle') .duration(200) @@ -268,14 +267,14 @@ const registerCreateRecipes = (event) => { A: '#forge:screws/wrought_iron', B: '#forge:plates/brass', C: '#forge:rods/black_steel', - D: '#forge:gears/steel', + D: '#forge:small_gears/steel', E: '#forge:tools/hammers', F: '#forge:storage_blocks/copper', G: '#forge:tools/screwdrivers', }).id('tfg:create/shaped/steam_engine') event.recipes.gtceu.assembler('tfg:create/steam_engine') - .itemInputs('2x #forge:screws/wrought_iron', '#forge:plates/brass', '2x #forge:rods/red_steel', '#forge:gears/steel', '#forge:storage_blocks/copper') + .itemInputs('2x #forge:screws/wrought_iron', '#forge:plates/brass', '2x #forge:rods/black_steel', '#forge:small_gears/steel', '#forge:storage_blocks/copper') .circuit(3) .itemOutputs('create:steam_engine') .duration(200) @@ -642,7 +641,7 @@ const registerCreateRecipes = (event) => { }).id('tfg:create/shaped/item_vault') event.recipes.gtceu.assembler('tfg:create/item_vault') - .itemInputs('3x #forge:chests/wooden', '#forge:sheets/wrought_iron', '2x #forge:screws/steel') + .itemInputs('#forge:chests/wooden', '#forge:sheets/wrought_iron', '2x #forge:screws/steel') .circuit(3) .itemOutputs('create:item_vault') .duration(200) @@ -758,12 +757,12 @@ const registerCreateRecipes = (event) => { ], { A: '#forge:tools/hammers', B: '#forge:ingots/brass', - C: '#forge:nuggets/brass', + C: '#forge:bolts/brass', D: '#forge:tools/files' }).id('tfg:create/shaped/brass_hand') event.recipes.gtceu.assembler('tfg:create/brass_hand') - .itemInputs('3x #forge:nuggets/brass', '#forge:plates/brass') + .itemInputs('3x #forge:bolts/brass', '#forge:plates/brass') .circuit(3) .itemOutputs('create:brass_hand') .duration(200) @@ -849,7 +848,7 @@ const registerCreateRecipes = (event) => { ' CE' ], { A: '#tfg:small_cogwheels', - B: 'create:andesite_casing', + B: 'gtceu:ulv_machine_casing', C: 'create:brass_hand', D: '#forge:tools/wrenches', E: '#forge:tools/screwdrivers', @@ -1017,7 +1016,7 @@ const registerCreateRecipes = (event) => { event.shaped('create:filter', [ 'ABA' ], { - A: '#forge:nuggets/wrought_iron', + A: '#forge:bolts/wrought_iron', B: '#forge:cloth' }).id('tfg:create/shaped/filter') @@ -1025,7 +1024,7 @@ const registerCreateRecipes = (event) => { event.shaped('create:attribute_filter', [ 'ABA' ], { - A: '#forge:nuggets/brass', + A: '#forge:bolts/brass', B: '#forge:cloth' }).id('tfg:create/shaped/attribute_filter') @@ -1265,7 +1264,7 @@ const registerCreateRecipes = (event) => { ]).transitionalItem('create:incomplete_precision_mechanism').loops(3).id('tfg:create/sequenced_assembly/precision_mechanism') event.recipes.gtceu.assembler('tfg:create/precision_mechanism') - .itemInputs('#forge:plates/gold', '3x #forge:small_springs/gold', '3x #forge:small_gears/brass', '3x #forge:bolts/wrought_iron') + .itemInputs('#forge:plates/gold', '2x #forge:small_springs/gold', '2x #forge:small_gears/brass', '2x #forge:bolts/wrought_iron') .itemOutputs('create:precision_mechanism') .duration(2000) .EUt(20) @@ -1362,12 +1361,12 @@ const registerCreateRecipes = (event) => { }).id('tfg:create/vertical_framed_glass') const CREATE_FRAMED_GLASS_WINDOWS = - [ - 'framed_glass', - 'tiled_glass', - 'horizontal_framed_glass', - 'vertical_framed_glass' - ] + [ + 'framed_glass', + 'tiled_glass', + 'horizontal_framed_glass', + 'vertical_framed_glass' + ] CREATE_FRAMED_GLASS_WINDOWS.forEach(x => { event.shapeless(`2x create:${x}_pane`, @@ -1385,19 +1384,20 @@ const registerCreateRecipes = (event) => { }) const CREATE_OTHER_GLASS_WINDOWS = - [ - ['dark_oak', 'tfc:wood/lumber/hickory'], - ['mangrove', 'tfc:wood/lumber/mangrove'], - ['ornate_iron', 'gtceu:wrought_iron_rod'] - ] + [ + ['dark_oak', 'tfc:wood/planks/hickory'], + ['mangrove', 'tfc:wood/planks/mangrove'], + ['ornate_iron', 'tfc:metal/bars/wrought_iron'] + ] CREATE_OTHER_GLASS_WINDOWS.forEach(x => { event.shaped(`2x create:${x[0]}_window`, [ - ' B ', - 'BAB' + ' ', + 'BAB', + ' B ' ], { - A: 'minecraft:glass', + A: '#forge:glass', B: x[1] }).id(`tfg:create/shaped/${x[0]}_window`) @@ -1441,7 +1441,10 @@ const registerCreateRecipes = (event) => { ] DECO_BLOCKS.forEach(x => { - event.shapeless(x.cut, [x.base, '#tfc:chisels', '#forge:tools/files']).id(`create:shapeless/chisel_${x.cut.split(':')[1]}`) + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless(x.cut, [x.base, '#tfc:chisels', '#forge:tools/files']) + ).id(`create:shapeless/chisel_${x.cut.split(':')[1]}`) event.recipes.gtceu.laser_engraver(`engrave_${x.cut.split(':')[1]}`) .itemInputs(x.base) @@ -1450,13 +1453,13 @@ const registerCreateRecipes = (event) => { .duration(32) .EUt(GTValues.VA[GTValues.ULV]) - event.custom({ - type: 'vintageimprovements:laser_cutting', - ingredients: [{ item: x.base }], - results: [{item: x.cut }], - energy: GTValues.VA[GTValues.ULV] * 32 * 4, - maxChargeRate: GTValues.VA[GTValues.ULV] * 4 - }).id(`tfg:vi/laser/create/${x.cut.split(':')[1]}`) + //event.custom({ + // type: 'vintageimprovements:laser_cutting', + // ingredients: [{ item: x.base }], + // results: [{item: x.cut }], + // energy: GTValues.VA[GTValues.ULV] * 32 * 4, + // maxChargeRate: GTValues.VA[GTValues.ULV] * 4 + //}).id(`tfg:vi/laser/create/${x.cut.split(':')[1]}`) event.shaped(`2x create:layered_${x.cut.split('_')[1]}`, [ 'AA' @@ -1496,7 +1499,7 @@ const registerCreateRecipes = (event) => { ], { A: '#forge:chests/wooden', B: '#forge:plates/brass', - C: '#forge:nuggets/brass', + C: '#forge:bolts/brass', D: '#forge:screws', E: '#forge:tools/screwdrivers' }).id('tfg:create/shaped/brown_toolbox') @@ -1580,9 +1583,9 @@ const registerCreateRecipes = (event) => { ], { A: 'create:brass_casing', B: '#forge:small_gears/brass', - C: '#forge:gears/black_steel', + C: '#forge:small_gears/red_alloy', D: '#forge:tools/wrenches', - E: '#forge:small_springs/gold', + E: '#forge:small_springs/steel', F: '#tfg:shafts', G: '#forge:tools/hammers' }).id('tfg:create/shaped/rotation_speed_controller') diff --git a/kubejs/server_scripts/create/tags.js b/kubejs/server_scripts/create/tags.js index bf6a2626d..8946b655f 100644 --- a/kubejs/server_scripts/create/tags.js +++ b/kubejs/server_scripts/create/tags.js @@ -8,7 +8,7 @@ const registerCreateItemTags = (event) => { event.add('c:hidden_from_recipe_viewers', item) }) - // Is this Greate's fault? + // This is greate's fault event.remove('c:hidden_from_recipe_viewers', 'create:copper_sheet') event.remove('c:hidden_from_recipe_viewers', 'create:brass_sheet') event.remove('c:hidden_from_recipe_viewers', 'create:golden_sheet') @@ -18,6 +18,7 @@ const registerCreateItemTags = (event) => { event.remove('c:hidden_from_recipe_viewers', 'create:crushed_raw_tin') event.remove('c:hidden_from_recipe_viewers', 'create:crushed_raw_silver') event.remove('c:hidden_from_recipe_viewers', 'create:crushed_raw_lead') + event.remove('c:hidden_from_recipe_viewers', 'create:powdered_obsidian') // Вэги для Ρ€ΡƒΡ‡Π΅ΠΊ ΠΈ ΡΠΈΠ΄ΡƒΡˆΠ΅ΠΊ global.MINECRAFT_DYE_NAMES.forEach(dye => { diff --git a/kubejs/server_scripts/create_additions/recipes.js b/kubejs/server_scripts/create_additions/recipes.js index 6b1de2743..241a036f5 100644 --- a/kubejs/server_scripts/create_additions/recipes.js +++ b/kubejs/server_scripts/create_additions/recipes.js @@ -13,7 +13,7 @@ const registerCreateAdditionsRecipes = (event) => { ], { A: 'create:precision_mechanism', B: 'greate:steel_shaft', - C: '#forge:gears/black_steel', + C: '#forge:double_plates/black_steel', D: '#gtceu:circuits/ulv', E: 'gtceu:ulv_machine_hull' }).id('tfg:create_additions/shaped/rolling_mill') @@ -81,9 +81,9 @@ const registerCreateAdditionsRecipes = (event) => { }).id('tfg:createadditions/shaped/electric_motor') event.shaped('createaddition:alternator', [ - 'ACA', - 'FDB', - 'ECE' + 'AEA', + 'CDC', + 'BFB' ], { A: '#gtceu:resistors', B: '#gtceu:circuits/lv', diff --git a/kubejs/server_scripts/create_connected/recipes.js b/kubejs/server_scripts/create_connected/recipes.js index ade6c0fc4..860581e3b 100644 --- a/kubejs/server_scripts/create_connected/recipes.js +++ b/kubejs/server_scripts/create_connected/recipes.js @@ -2,6 +2,11 @@ const registerCreateConnectedRecipes = (event) => { + global.CREATE_CONNECTED_DISABLED_ITEMS.forEach(item => { + event.remove({ input: item }) + event.remove({ output: item }) + }) + // Remove Fluid Vessel Crafting event.remove({ id: 'create_connected:crafting/kinetics/fluid_vessel' }) @@ -50,21 +55,50 @@ const registerCreateConnectedRecipes = (event) => { // Sequenced Pulse Generator event.shaped('create_connected:sequenced_pulse_generator', [ - 'AB ', - 'ACD', + 'DA ', + 'DCD', 'EEE' ], { A: 'create:electron_tube', - B: '#gtceu:circuits/ulv', C: '#forge:plates/bronze', D: 'minecraft:redstone_torch', E: '#forge:stone' }).id('create_connected:crafting/kinetics/sequenced_pulse_generator') - // Shear Pin - event.recipes.gtceu.cutter('tfg:create_connected/shear_pin') - .itemInputs('#tfg:shafts') - .itemOutputs('create_connected:shear_pin') - .duration(96) - .EUt(8) + + // Windows + event.shapeless(`2x create_connected:cherry_window_pane`, + [ + `create_connected:cherry_window`, + '#forge:tools/saws' + ]) + .id(`create_connected:crafting/palettes/cherry_window_pane`) + + event.recipes.gtceu.cutter(`create_connected:cherry_window_pane`) + .itemInputs(`3x create_connected:cherry_window`) + .itemOutputs(`8x create_connected:cherry_window_pane`) + .duration(40) + .EUt(7) + + + event.shapeless(`2x create_connected:bamboo_window_pane`, + [ + `create_connected:bamboo_window`, + '#forge:tools/saws' + ]) + .id(`create_connected:crafting/palettes/bamboo_window_pane`) + + event.recipes.gtceu.cutter(`create_connected:bamboo_window_pane`) + .itemInputs(`3x create_connected:bamboo_window`) + .itemOutputs(`8x create_connected:bamboo_window_pane`) + .duration(40) + .EUt(7) + + event.shaped('create_connected:cherry_window', [ + 'ABA', + ' A ' + ], { + A: 'afc:wood/planks/fig', + B: '#forge:glass' + }).id('create_connected:crafting/palettes/cherry_window') } \ No newline at end of file diff --git a/kubejs/server_scripts/create_connected/tags.js b/kubejs/server_scripts/create_connected/tags.js index 4dbd1c471..088e8b331 100644 --- a/kubejs/server_scripts/create_connected/tags.js +++ b/kubejs/server_scripts/create_connected/tags.js @@ -1,11 +1,9 @@ const registerCreateConnectedItemTags = (event) => { - // Removes tags from the Cherry and Bamboo wooden panes added by Create Connected - event.removeAllTagsFrom("create_connected:cherry_window_pane") - event.add("c:hidden_from_recipe_viewers", "create_connected:cherry_window_pane") - event.removeAllTagsFrom("create_connected:bamboo_window_pane") - event.add("c:hidden_from_recipe_viewers", "create_connected:bamboo_window_pane") - event.removeAllTagsFrom('create_connected:control_chip') - event.add('c:hidden_from_recipe_viewers', 'create_connected:control_chip') + + global.CREATE_CONNECTED_DISABLED_ITEMS.forEach(item => { + event.removeAllTagsFrom(item) + event.add('c:hidden_from_recipe_viewers', item) + }) event.remove('minecraft:creeper_drop_music_discs', ['create_connected:music_disc_elevator', 'create_connected:music_disc_interlude']) } \ No newline at end of file diff --git a/kubejs/server_scripts/create_horse_power/recipes.js b/kubejs/server_scripts/create_horse_power/recipes.js index 865f155d6..652bfb2b2 100644 --- a/kubejs/server_scripts/create_horse_power/recipes.js +++ b/kubejs/server_scripts/create_horse_power/recipes.js @@ -11,7 +11,7 @@ function registerCreateHorsePowerBlockRecipes(event) { 'CCC' ], { A: '#forge:fences/wooden', - B: '#forge:gears/bronze', + B: '#forge:small_gears/bronze', C: '#tfc:rock/raw', D: '#forge:tools/hammers', E: '#tfc:chisels' @@ -25,7 +25,7 @@ function registerCreateHorsePowerBlockRecipes(event) { 'CCC' ], { A: '#forge:fences/wooden', - B: '#forge:gears/bismuth_bronze', + B: '#forge:small_gears/bismuth_bronze', C: '#tfc:rock/raw', D: '#forge:tools/hammers', E: '#tfc:chisels' @@ -39,7 +39,7 @@ function registerCreateHorsePowerBlockRecipes(event) { 'CCC' ], { A: '#forge:fences/wooden', - B: '#forge:gears/black_bronze', + B: '#forge:small_gears/black_bronze', C: '#tfc:rock/raw', D: '#forge:tools/hammers', E: '#tfc:chisels' diff --git a/kubejs/server_scripts/createdeco/recipes.js b/kubejs/server_scripts/createdeco/recipes.js index aacd70c2e..f6c4091d8 100644 --- a/kubejs/server_scripts/createdeco/recipes.js +++ b/kubejs/server_scripts/createdeco/recipes.js @@ -257,4 +257,42 @@ const registerCreatedecoRecipes = (event) => { .EUt(16) // #region + + // #region Window panes + + const CREATE_DECO_GLASS_WINDOWS = + [ + ['andesite', '#forge:rods/tin_alloy'], + ['copper', '#forge:rods/copper'], + ['iron', '#forge:rods/wrought_iron'], + ['industrial_iron', '#forge:rods/steel'], + ['brass', '#forge:rods/brass'], + ['zinc', '#forge:rods/zinc'] + ] + + CREATE_DECO_GLASS_WINDOWS.forEach(x => { + event.shaped(`2x createdeco:${x[0]}_window`, + [ + ' B ', + 'BAB' + ], { + A: '#forge:glass', + B: x[1] + }).id(`createdeco:${x[0]}_window`) + + event.shapeless(`2x createdeco:${x[0]}_window_pane`, + [ + `createdeco:${x[0]}_window`, + '#forge:tools/saws' + ]) + .id(`createdeco:${x[0]}_window_pane`) + + event.recipes.gtceu.cutter(`tfg:createdeco/${x[0]}_window_pane`) + .itemInputs(`3x createdeco:${x[0]}_window`) + .itemOutputs(`8x createdeco:${x[0]}_window_pane`) + .duration(40) + .EUt(7) + }) + + // #endregion }; \ No newline at end of file diff --git a/kubejs/server_scripts/diggerhelmet/recipes.js b/kubejs/server_scripts/diggerhelmet/recipes.js index ae65bff3f..0e9a39e16 100644 --- a/kubejs/server_scripts/diggerhelmet/recipes.js +++ b/kubejs/server_scripts/diggerhelmet/recipes.js @@ -33,5 +33,15 @@ function registerDiggerHelmetRecipes(event) { B: '#forge:string', C: 'minecraft:bamboo', D: 'tfc:glue' - }).id('tfg:shaped/auto_drink_modifier') + }).id('tfg:shaped/auto_drink_modifier_bamboo') + + event.shaped('diggerhelmet:auto_drink_modifier', [ + ' A ', + 'BCB', + ' C ' + ], { + A: 'waterflasks:leather_flask', + B: '#forge:screws/wrought_iron', + C: '#forge:foils/rubber' + }).id('tfg:shaped/auto_drink_modifier_rubber') } \ No newline at end of file diff --git a/kubejs/server_scripts/endermanoverhaul/recipes.js b/kubejs/server_scripts/endermanoverhaul/recipes.js index 5701fa39f..90c2ec970 100644 --- a/kubejs/server_scripts/endermanoverhaul/recipes.js +++ b/kubejs/server_scripts/endermanoverhaul/recipes.js @@ -3,5 +3,6 @@ function registerEndermanOverhaulRecipes(event) { event.remove({ id: 'endermanoverhaul:corrupted_shield' }) + event.remove({ id: 'endermanoverhaul:corrupted_blade' }) } \ No newline at end of file diff --git a/kubejs/server_scripts/every_compat/recipes.js b/kubejs/server_scripts/every_compat/recipes.js index dbd2b5af0..69ec47d2a 100644 --- a/kubejs/server_scripts/every_compat/recipes.js +++ b/kubejs/server_scripts/every_compat/recipes.js @@ -19,4 +19,44 @@ const registerEveryCompatRecipes = (event) => { .duration(40) .EUt(7) }) + + global.AFC_WOOD_TYPES.forEach(wood => + { + event.remove({ id: `everycomp:c/afc/${wood}_window_pane` }) + + event.shapeless(`2x everycomp:c/afc/${wood}_window_pane`, + [ + `everycomp:c/afc/${wood}_window`, + '#forge:tools/saws' + ]) + .id(`tfg:everycompat/shapeless/${wood}_window_pane`) + + event.recipes.gtceu.cutter(`tfg:everycompat/shapeless/${wood}_window_pane`) + .itemInputs(`3x everycomp:c/afc/${wood}_window`) + .itemOutputs(`8x everycomp:c/afc/${wood}_window_pane`) + .duration(40) + .EUt(7) + }) + + const DOMUM = [ + 'cactus', + 'cactus_extra' + ] + + DOMUM.forEach(wood => { + event.remove({ id: `everycomp:c/domum_ornamentum/${wood}_window_pane` }) + + event.shapeless(`2x everycomp:c/domum_ornamentum/${wood}_window_pane`, + [ + `everycomp:c/domum_ornamentum/${wood}_window`, + '#forge:tools/saws' + ]) + .id(`tfg:everycompat/shapeless/${wood}_window_pane`) + + event.recipes.gtceu.cutter(`tfg:everycompat/shapeless/${wood}_window_pane`) + .itemInputs(`3x everycomp:c/domum_ornamentum/${wood}_window`) + .itemOutputs(`8x everycomp:c/domum_ornamentum/${wood}_window_pane`) + .duration(40) + .EUt(7) + }) } \ No newline at end of file diff --git a/kubejs/server_scripts/exposure/recipes.js b/kubejs/server_scripts/exposure/recipes.js index fbde705f9..8df906463 100644 --- a/kubejs/server_scripts/exposure/recipes.js +++ b/kubejs/server_scripts/exposure/recipes.js @@ -111,4 +111,6 @@ const registerExposureRecipes = (event) => { item: "exposure:developed_color_film" } }).id('exposure:developing_color_film') + + event.replaceInput({id: 'exposure:interplanar_projector'}, 'minecraft:ender_eye', '#forge:plates/silver') } \ No newline at end of file diff --git a/kubejs/server_scripts/extended_ae2/recipes.js b/kubejs/server_scripts/extended_ae2/recipes.js index 61d2ce7d8..97f7df9e5 100644 --- a/kubejs/server_scripts/extended_ae2/recipes.js +++ b/kubejs/server_scripts/extended_ae2/recipes.js @@ -201,51 +201,37 @@ const registerExtendedAE2Recipes = (event) => { //#region bus //ex import bus part - event.recipes.gtceu.assembly_line('expatternprovider:ex_import_bus_part') + event.recipes.gtceu.assembler('expatternprovider:ex_import_bus_part') .itemInputs( - '2x #forge:plates/tungsten_steel', - '8x ae2:calculation_processor', - '4x megacells:accumulation_processor', - '4x ae2:annihilation_core', - '2x ae2:import_bus', - '2x gtceu:iv_conveyor_module', - '2x gtceu:iv_electric_pump', - 'gtceu:iv_robot_arm', - '4x #forge:rods/tungsten_steel', - '8x #forge:bolts/tungsten_steel', - '4x ae2:speed_card',) - .inputFluids(Fluid.of('gtceu:polybenzimidazole', 144)) + '1x #forge:plates/stainless_steel', + '2x ae2:annihilation_core', + '2x gtceu:hv_robot_arm', + '1x megacells:accumulation_processor') + .inputFluids(Fluid.of('gtceu:polyvinyl_chloride', 144)) .itemOutputs('expatternprovider:ex_import_bus_part') + .circuit(2) .duration(200) - .EUt(7680) - .cleanroom(CleanroomType.CLEANROOM) + .EUt(GTValues.VA[GTValues.HV]) //ex export bus part - event.recipes.gtceu.assembly_line('expatternprovider:ex_export_bus_part') + event.recipes.gtceu.assembler('expatternprovider:ex_export_bus_part') .itemInputs( - '2x #forge:plates/tungsten_steel', - '8x ae2:calculation_processor', - '4x megacells:accumulation_processor', - '4x ae2:formation_core', - '2x ae2:export_bus', - '2x gtceu:iv_conveyor_module', - '2x gtceu:iv_electric_pump', - 'gtceu:iv_robot_arm', - '4x #forge:rods/tungsten_steel', - '8x #forge:bolts/tungsten_steel', - '4x ae2:speed_card',) - .inputFluids(Fluid.of('gtceu:polybenzimidazole', 144)) - .itemOutputs('expatternprovider:ex_export_bus_part') - .duration(200) - .EUt(7680) - .cleanroom(CleanroomType.CLEANROOM) + '1x #forge:plates/stainless_steel', + '2x ae2:formation_core', + '2x gtceu:hv_robot_arm', + '1x megacells:accumulation_processor') + .inputFluids(Fluid.of('gtceu:polyvinyl_chloride', 144)) + .itemOutputs('expatternprovider:ex_export_bus_part') + .circuit(3) + .duration(200) + .EUt(GTValues.VA[GTValues.HV]) //tag export bus event.recipes.gtceu.assembler('expatternprovider:tag_export_bus') .itemInputs( - 'expatternprovider:ex_export_bus_part', + 'ae2:export_bus', '2x ae2:logic_processor', - 'gtceu:digital_interface_cover',) + '#gtceu:circuits/ulv') .itemOutputs('expatternprovider:tag_export_bus') .duration(100) .EUt(480) @@ -255,7 +241,7 @@ const registerExtendedAE2Recipes = (event) => { .itemInputs( 'ae2:storage_bus', '2x ae2:logic_processor', - 'gtceu:digital_interface_cover',) + '#gtceu:circuits/ulv') .itemOutputs('expatternprovider:tag_storage_bus') .duration(100) .EUt(480) @@ -263,9 +249,9 @@ const registerExtendedAE2Recipes = (event) => { //mod export bus event.recipes.gtceu.assembler('expatternprovider:mod_export_bus') .itemInputs( - 'expatternprovider:ex_export_bus_part', + 'ae2:export_bus', '2x ae2:calculation_processor', - 'gtceu:digital_interface_cover',) + '#gtceu:circuits/ulv') .itemOutputs('expatternprovider:mod_export_bus') .duration(100) .EUt(480) @@ -275,7 +261,7 @@ const registerExtendedAE2Recipes = (event) => { .itemInputs( 'ae2:storage_bus', '2x ae2:calculation_processor', - 'gtceu:digital_interface_cover',) + '#gtceu:circuits/ulv') .itemOutputs('expatternprovider:mod_storage_bus') .duration(100) .EUt(480) @@ -283,8 +269,9 @@ const registerExtendedAE2Recipes = (event) => { //precise export bus event.recipes.gtceu.assembler('expatternprovider:precise_export_bus') .itemInputs( - 'expatternprovider:ex_export_bus_part', - '2x ae2:calculation_processor',) + 'ae2:export_bus', + '2x ae2:engineering_processor', + '#gtceu:circuits/ulv') .itemOutputs('expatternprovider:precise_export_bus') .duration(100) .EUt(480) @@ -293,7 +280,8 @@ const registerExtendedAE2Recipes = (event) => { event.recipes.gtceu.assembler('expatternprovider:precise_storage_bus') .itemInputs( 'ae2:storage_bus', - '2x ae2:calculation_processor',) + '2x ae2:engineering_processor', + '#gtceu:circuits/ulv') .itemOutputs('expatternprovider:precise_storage_bus') .duration(100) .EUt(480) @@ -301,34 +289,20 @@ const registerExtendedAE2Recipes = (event) => { //threshold export bus event.recipes.gtceu.assembler('expatternprovider:threshold_export_bus') .itemInputs( - 'expatternprovider:ex_export_bus_part', + 'ae2:export_bus', '2x ae2:logic_processor', - 'ae2:level_emitter',) + 'ae2:level_emitter') .itemOutputs('expatternprovider:threshold_export_bus') .duration(100) .EUt(480) - - //#endregion - //caner - event.recipes.gtceu.assembler('expatternprovider:caner') - .itemInputs( - '#forge:frames/stainless_steel', - 'expatternprovider:ingredient_buffer', - 'ae2:import_bus', - 'ae2:export_bus', - '2x ae2:calculation_processor') - .itemOutputs('expatternprovider:caner') - .duration(100) - .EUt(480) - //active formation plane event.recipes.gtceu.assembler('expatternprovider:active_formation_plane') .itemInputs( 'ae2:formation_plane', - 'expatternprovider:ex_export_bus_part', + 'expatternprovider:export_bus', '2x ae2:engineering_processor') .itemOutputs('expatternprovider:active_formation_plane') .duration(100) @@ -349,7 +323,7 @@ const registerExtendedAE2Recipes = (event) => { .itemInputs( 'ae2:level_emitter', '2x minecraft:redstone_torch', - '2x ae2:calculation_processor',) + '2x ae2:calculation_processor') .itemOutputs('expatternprovider:threshold_level_emitter') .duration(100) .EUt(480) @@ -383,13 +357,12 @@ const registerExtendedAE2Recipes = (event) => { //me packing tape event.recipes.gtceu.assembler('expatternprovider:me_packing_tape') .itemInputs( - '#forge:rods/stainless_steel', - '8x #forge:dusts/fluix', - '4x #forge:plates/paper',) + '4x #forge:dusts/fluix', + '2x #forge:plates/paper') .inputFluids(Fluid.of('gtceu:glue', 144)) .itemOutputs(Item.of('expatternprovider:me_packing_tape', '{Damage:0}')) .duration(100) - .EUt(1920) + .EUt(GTValues.VA[GTValues.MV]) //ex pattern access event.recipes.gtceu.assembler('expatternprovider:ex_pattern_access_part') @@ -527,21 +500,6 @@ const registerExtendedAE2Recipes = (event) => { .duration(200) .EUt(1920) - event.recipes.gtceu.assembler('expatternprovider:ex_charger') - .itemInputs( - '4x ae2:charger', - '4x ae2:storage_bus', - 'ae2:cable_interface', - '4x #forge:double_wires/uranium_triplatinum', - '4x ae2:logic_processor', - '4x ae2:engineering_processor', - '2x megacells:accumulation_processor', - - ) - .itemOutputs('expatternprovider:ex_charger') - .duration(200) - .EUt(1920) - //#endregion //#region Assembler Matrix diff --git a/kubejs/server_scripts/firmalife/recipes.js b/kubejs/server_scripts/firmalife/recipes.js index 42c34488a..3545f317e 100644 --- a/kubejs/server_scripts/firmalife/recipes.js +++ b/kubejs/server_scripts/firmalife/recipes.js @@ -654,12 +654,12 @@ const registerFirmaLifeRecipes = (event) => { //#region Sticky Resin by Vat event.recipes.firmalife.vat() - .inputs('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000)) + .inputs('tfc:powder/wood_ash', Fluid.of('tfg:latex', 1000)) .outputItem('gtceu:sticky_resin') .id('tfg:vat/latex_to_sticky_resin'); event.recipes.firmalife.vat() - .inputs('tfc:powder/sulfur', Fluid.of('tfg:conifer_pitch', 1000)) + .inputs('tfc:powder/wood_ash', Fluid.of('tfg:conifer_pitch', 1000)) .outputItem('gtceu:sticky_resin') .id('tfg:vat/conifer_pitch_to_sticky_resin'); diff --git a/kubejs/server_scripts/firmalife/tags.js b/kubejs/server_scripts/firmalife/tags.js index 87f7914c0..e926f90d2 100644 --- a/kubejs/server_scripts/firmalife/tags.js +++ b/kubejs/server_scripts/firmalife/tags.js @@ -30,6 +30,14 @@ const registerFirmaLifeBlockTags = (event) => { // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ Ρ‚Π΅Π³ΠΎΠ² Ρƒ Ρ€ΡƒΠ΄ event.removeAllTagsFrom("/tfc:ore/[^*]+/[^*]+/") + + //Allows any block with the word "brick" in its id to be used as oven insulation. + //Add blacklisted words to the const with | between. + const brick_blacklist = ('drying|additionalplacements'); + event.add('firmalife:oven_insulation', `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`); + + event.add('firmalife:oven_insulation', 'firmalife:stovetop_pot'); + event.add('firmalife:oven_insulation', 'firmalife:vat'); } const registerFirmaLifeFluidTags = (event) => { diff --git a/kubejs/server_scripts/greate/recipes.js b/kubejs/server_scripts/greate/recipes.js index dab57c9cb..8dc106d5b 100644 --- a/kubejs/server_scripts/greate/recipes.js +++ b/kubejs/server_scripts/greate/recipes.js @@ -11,7 +11,7 @@ function registerGreateRecipes(event) { // #region Shafts - event.shaped('4x greate:andesite_alloy_shaft', [ + event.shaped('9x greate:andesite_alloy_shaft', [ 'A ', ' B' ], { @@ -19,15 +19,7 @@ function registerGreateRecipes(event) { B: '#forge:plates/black_bronze' }).id('greate:shaped/andesite_alloy_shaft_black_bronze') - event.shaped('6x greate:andesite_alloy_shaft', [ - 'A ', - ' B' - ], { - A: '#forge:tools/saws', - B: '#forge:plates/wrought_iron' - }).id('greate:shaped/andesite_alloy_shaft') - - event.shaped('4x greate:andesite_alloy_shaft', [ + event.shaped('9x greate:andesite_alloy_shaft', [ 'A ', ' B' ], { @@ -35,7 +27,7 @@ function registerGreateRecipes(event) { B: '#forge:plates/bronze' }).id('greate:shaped/andesite_alloy_shaft_bronze') - event.shaped('4x greate:andesite_alloy_shaft', [ + event.shaped('9x greate:andesite_alloy_shaft', [ 'A ', ' B' ], { @@ -43,87 +35,114 @@ function registerGreateRecipes(event) { B: '#forge:plates/bismuth_bronze' }).id('greate:shaped/andesite_alloy_shaft_bismuth_bronze') - generateCutterRecipe(event, '#forge:plates/wrought_iron', '6x greate:andesite_alloy_shaft', 100, GTValues.VA[GTValues.ULV], 'andesite_alloy_shaft') - generateCutterRecipe(event, '#forge:plates/steel', '6x greate:steel_shaft', 100, GTValues.VA[GTValues.ULV], 'steel_shaft') - generateCutterRecipe(event, '#forge:plates/aluminium', '6x greate:aluminium_shaft', 100, GTValues.VA[GTValues.LV], 'aluminium_shaft') - generateCutterRecipe(event, '#forge:plates/stainless_steel', '6x greate:stainless_steel_shaft', 100, GTValues.VA[GTValues.MV], 'stainless_steel_shaft') - generateCutterRecipe(event, '#forge:plates/titanium', '6x greate:titanium_shaft', 100, GTValues.VA[GTValues.HV], 'titanium_shaft') + event.shaped('9x greate:steel_shaft', [ + 'A ', + ' B' + ], { + A: '#forge:tools/saws', + B: '#forge:plates/steel' + }).id('greate:shaped/steel_shaft') + + event.shaped('9x greate:aluminium_shaft', [ + 'A ', + ' B' + ], { + A: '#forge:tools/saws', + B: '#forge:plates/aluminium' + }).id('greate:shaped/aluminium_shaft') + + event.shaped('9x greate:stainless_steel_shaft', [ + 'A ', + ' B' + ], { + A: '#forge:tools/saws', + B: '#forge:plates/stainless_steel' + }).id('greate:shaped/stainless_steel_shaft') + + event.shaped('9x greate:titanium_shaft', [ + 'A ', + ' B' + ], { + A: '#forge:tools/saws', + B: '#forge:plates/titanium' + }).id('greate:shaped/titanium_shaft') + + generateCutterRecipe(event, '#forge:plates/bronze', '9x greate:andesite_alloy_shaft', 100, GTValues.VA[GTValues.ULV], 'andesite_alloy_shaft_bronze') + generateCutterRecipe(event, '#forge:plates/black_bronze', '9x greate:andesite_alloy_shaft', 100, GTValues.VA[GTValues.ULV], 'andesite_alloy_shaft_black_bronze') + generateCutterRecipe(event, '#forge:plates/bismuth_bronze', '9x greate:andesite_alloy_shaft', 100, GTValues.VA[GTValues.ULV], 'andesite_alloy_shaft_bismuth_bronze') + generateCutterRecipe(event, '#forge:plates/steel', '9x greate:steel_shaft', 100, GTValues.VA[GTValues.ULV], 'steel_shaft') + generateCutterRecipe(event, '#forge:plates/aluminium', '9x greate:aluminium_shaft', 100, GTValues.VA[GTValues.LV], 'aluminium_shaft') + generateCutterRecipe(event, '#forge:plates/stainless_steel', '9x greate:stainless_steel_shaft', 100, GTValues.VA[GTValues.MV], 'stainless_steel_shaft') + generateCutterRecipe(event, '#forge:plates/titanium', '9x greate:titanium_shaft', 100, GTValues.VA[GTValues.HV], 'titanium_shaft') // #endregion // #region Cogs - event.shapeless('greate:andesite_alloy_cogwheel', ['greate:andesite_alloy_shaft', '#forge:small_gears/wood', '#forge:tools/hammers']) + event.shapeless('greate:andesite_alloy_cogwheel', ['greate:andesite_alloy_shaft', '#forge:small_gears/wood']) .id('greate:shapeless/andesite_alloy_cogwheel') - event.shapeless('greate:large_andesite_alloy_cogwheel', ['greate:andesite_alloy_shaft', '#forge:gears/wood', '#forge:tools/hammers']) + event.shapeless('greate:large_andesite_alloy_cogwheel', ['greate:andesite_alloy_shaft', '#forge:gears/wood']) .id('greate:shapeless/large_andesite_alloy_cogwheel'); - // TODO: recycling recipes for these? - event.shapeless('greate:steel_cogwheel', ['greate:steel_shaft', '#forge:small_gears/wrought_iron', '#forge:tools/wrenches']) + event.shapeless('greate:steel_cogwheel', ['greate:steel_shaft', '#forge:small_gears/wrought_iron']) .id('greate:shapeless/steel_cogwheel') - event.shapeless('greate:large_steel_cogwheel', ['greate:steel_shaft', '#forge:gears/wrought_iron', '#forge:tools/wrenches']) + event.shapeless('greate:large_steel_cogwheel', ['greate:steel_shaft', '#forge:small_gears/wrought_iron','#forge:small_gears/wrought_iron']) .id('greate:shapeless/large_steel_cogwheel'); - event.shapeless('greate:aluminium_cogwheel', ['greate:aluminium_shaft', '#forge:small_gears/steel', '#forge:tools/wrenches']) + event.shapeless('greate:aluminium_cogwheel', ['greate:aluminium_shaft', '#forge:small_gears/steel']) .id('greate:shapeless/aluminium_cogwheel') - event.shapeless('greate:large_aluminium_cogwheel', ['greate:aluminium_shaft', '#forge:gears/steel', '#forge:tools/wrenches']) + event.shapeless('greate:large_aluminium_cogwheel', ['greate:aluminium_shaft', '#forge:small_gears/steel', '#forge:small_gears/steel']) .id('greate:shapeless/large_aluminium_cogwheel'); - event.shapeless('greate:stainless_steel_cogwheel', ['greate:stainless_steel_shaft', '#forge:small_gears/aluminium', '#forge:tools/wrenches']) + event.shapeless('greate:stainless_steel_cogwheel', ['greate:stainless_steel_shaft', '#forge:small_gears/aluminium']) .id('greate:shapeless/stainless_steel_cogwheel') - event.shapeless('greate:large_stainless_steel_cogwheel', ['greate:stainless_steel_shaft', '#forge:gears/aluminium', '#forge:tools/wrenches']) + event.shapeless('greate:large_stainless_steel_cogwheel', ['greate:stainless_steel_shaft', '#forge:small_gears/aluminium', '#forge:small_gears/aluminium']) .id('greate:shapeless/large_stainless_steel_cogwheel'); - event.shapeless('greate:titanium_cogwheel', ['greate:titanium_shaft', '#forge:small_gears/stainless_steel', '#forge:tools/wrenches']) + event.shapeless('greate:titanium_cogwheel', ['greate:titanium_shaft', '#forge:small_gears/stainless_steel']) .id('greate:shapeless/titanium_cogwheel') - event.shapeless('greate:large_titanium_cogwheel', ['greate:titanium_shaft', '#forge:gears/stainless_steel', '#forge:tools/wrenches']) + event.shapeless('greate:large_titanium_cogwheel', ['greate:titanium_shaft', '#forge:small_gears/stainless_steel', '#forge:small_gears/stainless_steel']) .id('greate:shapeless/large_titanium_cogwheel'); // #endregion // #region Millstones - event.recipes.tfc.damage_inputs_shaped_crafting( - event.shaped('greate:andesite_alloy_millstone', [ - ' B ', - 'DCE', - ' A ' - ], { - A: 'tfc:quern', - B: 'tfc:handstone', - C: '#forge:gears/bronze', - D: '#forge:tools/hammers', - E: '#tfc:chisels' - }) - ).id('greate:shaped/andesite_alloy_millstone') + event.shaped('greate:andesite_alloy_millstone', [ + ' B ', + 'DCE', + ' A ' + ], { + A: 'tfc:quern', + B: 'tfc:handstone', + C: '#forge:small_gears/bronze', + D: '#forge:tools/hammers', + E: '#forge:tools/saws' + }).id('greate:shaped/andesite_alloy_millstone') - event.recipes.tfc.damage_inputs_shaped_crafting( - event.shaped('greate:andesite_alloy_millstone', [ - ' B ', - 'DCE', - ' A ' - ], { - A: 'tfc:quern', - B: 'tfc:handstone', - C: '#forge:gears/bismuth_bronze', - D: '#forge:tools/hammers', - E: '#tfc:chisels' - }) - ).id('greate:shaped/andesite_alloy_millstone2') + event.shaped('greate:andesite_alloy_millstone', [ + ' B ', + 'DCE', + ' A ' + ], { + A: 'tfc:quern', + B: 'tfc:handstone', + C: '#forge:small_gears/bismuth_bronze', + D: '#forge:tools/hammers', + E: '#forge:tools/saws' + }).id('greate:shaped/andesite_alloy_millstone2') - event.recipes.tfc.damage_inputs_shaped_crafting( - event.shaped('greate:andesite_alloy_millstone', [ - ' B ', - 'DCE', - ' A ' - ], { - A: 'tfc:quern', - B: 'tfc:handstone', - C: '#forge:gears/black_bronze', - D: '#forge:tools/hammers', - E: '#tfc:chisels' - }) - ).id('greate:shaped/andesite_alloy_millstone3') + event.shaped('greate:andesite_alloy_millstone', [ + ' B ', + 'DCE', + ' A ' + ], { + A: 'tfc:quern', + B: 'tfc:handstone', + C: '#forge:small_gears/black_bronze', + D: '#forge:tools/hammers', + E: '#forge:tools/saws' + }).id('greate:shaped/andesite_alloy_millstone3') event.shaped('greate:steel_millstone', [ 'FBF', @@ -132,7 +151,7 @@ function registerGreateRecipes(event) { ], { A: '#forge:smooth_stone', B: 'gtceu:treated_wood_slab', - C: '#forge:gears/steel', + C: '#forge:small_gears/steel', D: '#forge:tools/hammers', E: '#forge:tools/wrenches', F: '#forge:dusts/diamond' @@ -234,7 +253,7 @@ function registerGreateRecipes(event) { A: '#gtceu:circuits/ulv', B: 'gtceu:cobalt_brass_buzz_saw_blade', C: 'greate:steel_cogwheel', - D: 'gtceu:ulv_machine_casing', + D: 'gtceu:ulv_machine_hull', E: 'greate:steel_shaft', F: '#forge:tools/wrenches' }).id('greate:shaped/steel_mechanical_saw') @@ -247,7 +266,7 @@ function registerGreateRecipes(event) { A: '#gtceu:circuits/mv', B: 'gtceu:vanadium_steel_buzz_saw_blade', C: 'gtceu:mv_electric_motor', - D: 'gtceu:mv_machine_casing', + D: 'gtceu:mv_machine_hull', E: 'greate:aluminium_shaft', F: '#forge:tools/wrenches' }).id('greate:shaped/aluminium_mechanical_saw') @@ -262,7 +281,7 @@ function registerGreateRecipes(event) { // A: '#gtceu:circuits/hv', // B: 'gtceu:red_steel_buzz_saw_blade', // C: 'gtceu:hv_electric_motor', - // D: 'gtceu:hv_machine_casing', + // D: 'gtceu:hv_machine_hull', // E: 'greate:stainless_steel_shaft', // F: '#forge:tools/wrenches' // }).id('greate:shaped/stainless_steel_mechanical_saw') @@ -275,7 +294,7 @@ function registerGreateRecipes(event) { // A: '#gtceu:circuits/ev', // B: 'gtceu:ultimet_buzz_saw_blade', // C: 'gtceu:ev_electric_motor', - // D: 'gtceu:ev_machine_casing', + // D: 'gtceu:ev_machine_hull', // E: 'greate:titanium_shaft', // F: '#forge:tools/wrenches' //}).id('greate:shaped/titanium_mechanical_saw') @@ -300,27 +319,57 @@ function registerGreateRecipes(event) { // #region Belt Connector - event.shaped('greate:rubber_belt_connector', [ + event.shaped('3x greate:rubber_belt_connector', [ + 'C ', 'AAA', - 'AAA', - 'BDC' + 'B ' ], { - A: '#forge:leather', + A: '#forge:plates/rubber', B: '#forge:tools/knives', - C: '#tfc:sewing_needles', - D: '#forge:string' - }).id('greate:shaped/rubber_belt_connector_from_leather') + C: '#forge:tools/hammers', + }).id('greate:shaped/rubber_belt_connector') - event.shaped('greate:polyethylene_belt_connector', [ + event.recipes.gtceu.assembler('rubber_belt_connector') + .itemInputs('#forge:plates/rubber') + .itemOutputs('greate:rubber_belt_connector') + .circuit(11) + .duration(50) + .EUt(GTValues.VA[GTValues.LV]) + + event.shaped('3x greate:silicone_rubber_belt_connector', [ + 'C ', 'AAA', + 'B ' + ], { + A: '#forge:plates/silicone_rubber', + B: '#forge:tools/knives', + C: '#forge:tools/hammers', + }).id('greate:shaped/silicone_rubber_belt_connector') + + event.recipes.gtceu.assembler('silicone_rubber_belt_connector') + .itemInputs('#forge:plates/silicone_rubber') + .itemOutputs('greate:silicone_rubber_belt_connector') + .circuit(11) + .duration(50) + .EUt(GTValues.VA[GTValues.LV]) + + event.shaped('3x greate:polyethylene_belt_connector', [ + 'C ', 'AAA', - 'B C' + 'B ' ], { A: '#forge:plates/styrene_butadiene_rubber', - B: '#forge:tools/files', + B: '#forge:tools/knives', C: '#forge:tools/hammers', }).id('greate:shaped/polyethylene_belt_connector') + event.recipes.gtceu.assembler('polyethylene_belt_connector') + .itemInputs('#forge:plates/styrene_butadiene_rubber') + .itemOutputs('greate:rubber_polyethylene_belt_connectorbelt_connector') + .circuit(11) + .duration(50) + .EUt(GTValues.VA[GTValues.LV]) + // #endregion // #region Mixer diff --git a/kubejs/server_scripts/greate/recipes.recycling.js b/kubejs/server_scripts/greate/recipes.recycling.js index 40bdededf..309cff3c5 100644 --- a/kubejs/server_scripts/greate/recipes.recycling.js +++ b/kubejs/server_scripts/greate/recipes.recycling.js @@ -76,25 +76,25 @@ function registerGreateRecyclingRecipes(event) { event.shapeless('#forge:small_gears/wrought_iron', ['greate:steel_cogwheel'])) event.recipes.tfc.extra_products_shapeless_crafting('greate:steel_shaft', - event.shapeless('#forge:gears/wrought_iron', ['greate:large_steel_cogwheel'])) + event.shapeless('2x #forge:small_gears/wrought_iron', ['greate:large_steel_cogwheel'])) event.recipes.tfc.extra_products_shapeless_crafting('greate:aluminium_shaft', event.shapeless('#forge:small_gears/steel', ['greate:aluminium_cogwheel'])) event.recipes.tfc.extra_products_shapeless_crafting('greate:aluminium_shaft', - event.shapeless('#forge:gears/steel', ['greate:large_aluminium_cogwheel'])) + event.shapeless('2x #forge:small_gears/steel', ['greate:large_aluminium_cogwheel'])) event.recipes.tfc.extra_products_shapeless_crafting('greate:stainless_steel_shaft', event.shapeless('#forge:small_gears/aluminium', ['greate:stainless_steel_cogwheel'])) event.recipes.tfc.extra_products_shapeless_crafting('greate:stainless_steel_shaft', - event.shapeless('#forge:gears/aluminium', ['greate:large_stainless_steel_cogwheel'])) + event.shapeless('2x #forge:small_gears/aluminium', ['greate:large_stainless_steel_cogwheel'])) event.recipes.tfc.extra_products_shapeless_crafting('greate:titanium_shaft', event.shapeless('#forge:small_gears/stainless_steel', ['greate:titanium_cogwheel'])) event.recipes.tfc.extra_products_shapeless_crafting('greate:titanium_shaft', - event.shapeless('#forge:gears/stainless_steel', ['greate:large_titanium_cogwheel'])) + event.shapeless('2x #forge:small_gears/stainless_steel', ['greate:large_titanium_cogwheel'])) // #endregion @@ -482,22 +482,22 @@ function registerGreateRecyclingRecipes(event) { event.recipes.gtceu.macerator('greate:rubber_belt_connector') .itemInputs('greate:rubber_belt_connector') - .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Rubber, 6)) - .duration(GTMaterials.Rubber.getMass() * 6) + .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.Rubber, 1)) + .duration(GTMaterials.Rubber.getMass() * 3) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.macerator('greate:silicone_rubber_belt_connector') .itemInputs('greate:silicone_rubber_belt_connector') - .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.SiliconeRubber, 6)) - .duration(GTMaterials.SiliconeRubber.getMass() * 6) + .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.SiliconeRubber, 1)) + .duration(GTMaterials.SiliconeRubber.getMass() * 3) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) event.recipes.gtceu.macerator('greate:polyethylene_belt_connector') .itemInputs('greate:polyethylene_belt_connector') - .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.StyreneButadieneRubber, 6)) - .duration(GTMaterials.StyreneButadieneRubber.getMass() * 6) + .itemOutputs(ChemicalHelper.get(TagPrefix.dust, GTMaterials.StyreneButadieneRubber, 1)) + .duration(GTMaterials.StyreneButadieneRubber.getMass() * 3) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) diff --git a/kubejs/server_scripts/greate/recipes.removes.js b/kubejs/server_scripts/greate/recipes.removes.js index 06c457246..a2ffc4d19 100644 --- a/kubejs/server_scripts/greate/recipes.removes.js +++ b/kubejs/server_scripts/greate/recipes.removes.js @@ -15,6 +15,8 @@ function removeGreateRecipes(event) { event.remove({ id: 'greate:shapeless/large_stainless_steel_cogwheel_from_little' }) event.remove({ id: 'greate:shapeless/large_titanium_cogwheel_from_little' }) + event.remove({ id: 'greate:shaped/andesite_alloy_shaft' }) + // Until we got a fix from Greate for recipes in a cleanroom event.remove({ id: 'greate:shaped/stainless_steel_mechanical_saw' }) event.remove({ id: 'greate:shaped/titanium_mechanical_saw' }) diff --git a/kubejs/server_scripts/gregtech/armor.js b/kubejs/server_scripts/gregtech/armor.js deleted file mode 100644 index 3dd7cff2e..000000000 --- a/kubejs/server_scripts/gregtech/armor.js +++ /dev/null @@ -1,9 +0,0 @@ -PlayerEvents.tick((event) => { - const { player } = event; - if (player.age % 100 != 0) return; - if (player.legsArmorItem == 'gtceu:nanomuscle_leggings') { - player.potionEffects.add("minecraft:speed", 350, 1, true, false); - } else { - player.removeEffect("minecraft:speed"); - } -}); diff --git a/kubejs/server_scripts/gregtech/constants.js b/kubejs/server_scripts/gregtech/constants.js index 4169872e9..033bd10b6 100644 --- a/kubejs/server_scripts/gregtech/constants.js +++ b/kubejs/server_scripts/gregtech/constants.js @@ -21,16 +21,4 @@ global.GTCEU_ANVIL_TOOL_TYPES = [ GTToolType.KNIFE, GTToolType.BUTCHERY_KNIFE, // GTToolType.PLUNGER -]; - -global.GTCEU_TOOLTYPES_WHICH_HAS_TFC_DUPS = { - "tfc:swords" : GTToolType.SWORD, - "tfc:pickaxes" : GTToolType.PICKAXE, - "tfc:axes" : GTToolType.AXE, - "tfc:shovels" : GTToolType.SHOVEL, - "tfc:hoes" : GTToolType.HOE, - "tfc:hammers" : GTToolType.HARD_HAMMER, - "tfc:knives" : GTToolType.KNIFE, - "tfc:saws" : GTToolType.SAW, - "tfc:scythes" : GTToolType.SCYTHE -}; \ No newline at end of file +]; \ No newline at end of file diff --git a/kubejs/server_scripts/gregtech/events.js b/kubejs/server_scripts/gregtech/events.js new file mode 100644 index 000000000..a9a17beae --- /dev/null +++ b/kubejs/server_scripts/gregtech/events.js @@ -0,0 +1,6 @@ +PlayerEvents.tick((event) => { + const { player } = event; + if (player.age % 100 == 0 && player.legsArmorItem == 'gtceu:nanomuscle_leggings') { + player.potionEffects.add("minecraft:speed", 350, 1, true, false); + } +}); diff --git a/kubejs/server_scripts/gregtech/loot.js b/kubejs/server_scripts/gregtech/loot.js index a7e44678f..fb529aea1 100644 --- a/kubejs/server_scripts/gregtech/loot.js +++ b/kubejs/server_scripts/gregtech/loot.js @@ -81,7 +81,7 @@ const registerGTCEULoots = (event) => { }) // Go through all materials - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { if (material.hasProperty(PropertyKey.ORE)) { diff --git a/kubejs/server_scripts/gregtech/recipes.js b/kubejs/server_scripts/gregtech/recipes.js index 4c49df757..2611fa65a 100644 --- a/kubejs/server_scripts/gregtech/recipes.js +++ b/kubejs/server_scripts/gregtech/recipes.js @@ -7,7 +7,7 @@ const registerGTCEURecipes = (event) => { registerGTCEUMetalRecipes(event) - registerGTCEURecyclingRecipes(event) + registerGTCEURecyclingRecipes(event) registerGTCEuTFCMetalsRecipes(event) registerGTCEuMachineRecipes(event) @@ -69,15 +69,15 @@ const registerGTCEURecipes = (event) => { //#endregion - event.recipes.gtceu.centrifuge('tfg:beets_to_sugar') - .itemInputs('5x tfc:food/beet') - .inputFluids(Fluid.of('tfc:salt_water', 1000)) - .itemOutputs('3x minecraft:sugar', '3x gtceu:plant_ball', '1x #forge:dusts/salt') - .outputFluids(Fluid.of('minecraft:water', 1000)) - .duration(800) - .EUt(7) - .circuit(3) - + event.recipes.gtceu.centrifuge('tfg:beets_to_sugar') + .itemInputs('5x tfc:food/beet') + .inputFluids(Fluid.of('tfc:salt_water', 1000)) + .itemOutputs('3x minecraft:sugar', '3x gtceu:plant_ball', '1x #forge:dusts/salt') + .outputFluids(Fluid.of('minecraft:water', 1000)) + .duration(800) + .EUt(7) + .circuit(3) + event.smelting('4x tfc:powder/wood_ash', '1x #minecraft:logs_that_burn').id('tfg:wood_ash') //#region Π’Ρ‹Ρ…ΠΎΠ΄: БолСная ΠΏΡ‹Π»ΡŒ + Π’ΠΎΠ΄Π° @@ -134,23 +134,30 @@ const registerGTCEURecipes = (event) => { //#region Π’Ρ‹Ρ…ΠΎΠ΄: Капля Ρ€Π΅Π·ΠΈΠ½Ρ‹ // Из латСкса - event.recipes.tfc.pot('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000), 1200, 300) + event.recipes.tfc.pot('tfc:powder/wood_ash', Fluid.of('tfg:latex', 1000), 1200, 300) .itemOutput('gtceu:sticky_resin') .id('tfg:pot/sticky_resin_from_latex') - event.recipes.tfc.pot('tfc:powder/sulfur', Fluid.of('tfg:conifer_pitch', 1000), 1200, 300) + event.recipes.tfc.pot('tfc:powder/wood_ash', Fluid.of('tfg:conifer_pitch', 1000), 1200, 300) .itemOutput('gtceu:sticky_resin') .id('tfg:pot/sticky_resin_from_conifer_pitch') - event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/latex_heating') - .duration(24*20) + event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/latex_to_sticky_resin') + .duration(24 * 20) .EUt(30) - .itemInputs('tfc:powder/sulfur') + .itemInputs('tfc:powder/wood_ash') .itemOutputs('gtceu:sticky_resin') .inputFluids(Fluid.of('tfg:latex', 1000)) + + event.recipes.gtceu.fluid_solidifier('tfg:fluid_solidifier/pitch_to_sticky_resin') + .duration(24 * 20) + .EUt(30) + .itemInputs('tfc:powder/wood_ash') + .itemOutputs('gtceu:sticky_resin') + .inputFluids(Fluid.of('tfg:conifer_pitch', 1000)) + //#endregion //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹ΠΉ ΡˆΠ°Ρ€ΠΈΠΊ - // 8x Π’Π°Π½ΠΈΠ»ΡŒΠ½Π°Ρ Ρ€Π°ΡΡ‚ΠΈΡ‚Π΅Π»ΡŒΠ½ΠΎΡΡ‚ΡŒ -> Plant Ball (Compressor) event.recipes.gtceu.compressor('plant_ball_from_tfc_seeds') @@ -263,44 +270,14 @@ const registerGTCEURecipes = (event) => { //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π¦Π΅ΠΌΠ΅Π½Ρ‚ - generateMixerRecipe( - event, - ['2x #tfg:stone_dusts', 'gtceu:marble_dust', 'gtceu:gypsum_dust'], - Fluid.of('minecraft:water', 1000), - [], - null, - Fluid.of('gtceu:concrete', 1152), - 40, - 16, - 64, - 'concrete_from_marble' - ) + generateMixerRecipe(event, ['2x #tfg:stone_dusts', 'gtceu:marble_dust', 'gtceu:gypsum_dust'], + Fluid.of('minecraft:water', 1000), [], null, Fluid.of('gtceu:concrete', 1152), 40, 16, 64, 'concrete_from_marble') - generateMixerRecipe( - event, - ['3x #tfg:stone_dusts', 'gtceu:clay_dust'], - Fluid.of('minecraft:water', 500), - [], - null, - Fluid.of('gtceu:concrete', 576), - 20, - 16, - 64, - 'concrete_from_clay' - ) + generateMixerRecipe(event, ['3x #tfg:stone_dusts', 'gtceu:clay_dust'], + Fluid.of('minecraft:water', 500), [], null, Fluid.of('gtceu:concrete', 576), 20, 16, 64, 'concrete_from_clay') - generateMixerRecipe( - event, - ['3x #tfg:stone_dusts', 'gtceu:calcite_dust', 'gtceu:gypsum_dust'], - Fluid.of('minecraft:water', 1000), - [], - null, - Fluid.of('gtceu:concrete', 1152), - 40, - 16, - 64, - 'concrete_from_calcite' - ) + generateMixerRecipe(event, ['3x #tfg:stone_dusts', 'gtceu:calcite_dust', 'gtceu:gypsum_dust'], + Fluid.of('minecraft:water', 1000), [], null, Fluid.of('gtceu:concrete', 1152), 40, 16, 64, 'concrete_from_calcite') //GT light/dark concrete recipe fix @@ -348,7 +325,7 @@ const registerGTCEURecipes = (event) => { //#endregion //#region GT marble - + event.stonecutting('gtceu:polished_marble', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_polished_marble') event.stonecutting('gtceu:chiseled_marble', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_chiseled_marble') event.stonecutting('gtceu:marble_tile', 'tfc:rock/bricks/marble').id('tfg:stonecutting/gt_marble_tile') @@ -462,17 +439,16 @@ const registerGTCEURecipes = (event) => { C: 'gtceu:brick_wooden_form' }).replaceIngredient('gtceu:brick_wooden_form', 'gtceu:brick_wooden_form').id('gtceu:shaped/compressed_coke_clay') - // Compressed Coke Clay -> Coke Oven Brick + // Coke Oven Brick event.recipes.tfc.heating('gtceu:compressed_coke_clay', 1399) .resultItem('gtceu:coke_oven_brick') .id('tfg:heating/coke_oven_bricks') - // TFC FireBrick -> FireBrick dust - event.recipes.gtceu.macerator('macerate_firebrick') - .itemInputs('tfc:ceramic/fire_brick') - .itemOutputs('gtceu:fireclay_dust') - .duration(15) - .EUt(2) + event.recipes.gtceu.alloy_smelter('gtceu:coke_oven_brick') + .itemInputs('#minecraft:sand', 'minecraft:clay_ball') + .itemOutputs('gtceu:coke_oven_brick') + .duration(7.5 * 20) + .EUt(GTValues.VA[GTValues.ULV]) // Multi-Smelter event.shaped('gtceu:multi_smelter', [ @@ -499,7 +475,7 @@ const registerGTCEURecipes = (event) => { }).id('gtceu:shaped/electric_blast_furnace') // КлСй ΠΈΠ· ВЀК клСя - event.recipes.gtceu.centrifuge('glue_from_tfc_glue') + event.recipes.gtceu.extractor('glue_from_tfc_glue') .itemInputs('tfc:glue') .outputFluids(Fluid.of('gtceu:glue', 50)) .duration(400) @@ -724,44 +700,44 @@ const registerGTCEURecipes = (event) => { .circuit(2) event.recipes.gtceu.coke_oven("tfg:raw_coal_to_coke") - .itemInputs('gtceu:raw_coal') - .itemOutputs('2x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 2000)) - .duration(1710) + .itemInputs('gtceu:raw_coal') + .itemOutputs('2x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 2000)) + .duration(1710) - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_tar") - .itemInputs('6x gtceu:raw_coal') - .chancedOutput('gtceu:dark_ash_dust', 5000, 0) - .outputFluids(Fluid.of('gtceu:coal_tar', 3000)) - .duration(288) - .EUt(96) - .circuit(8) + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_tar") + .itemInputs('6x gtceu:raw_coal') + .chancedOutput('gtceu:dark_ash_dust', 5000, 0) + .outputFluids(Fluid.of('gtceu:coal_tar', 3000)) + .duration(288) + .EUt(96) + .circuit(8) - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote") - .itemInputs('8x gtceu:raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .outputFluids(Fluid.of('gtceu:creosote', 8000)) - .duration(576) - .EUt(64) - .circuit(1) + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote") + .itemInputs('8x gtceu:raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .outputFluids(Fluid.of('gtceu:creosote', 8000)) + .duration(576) + .EUt(64) + .circuit(1) - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coal_gas") - .itemInputs('8x gtceu:raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .inputFluids(Fluid.of('gtceu:steam')) - .outputFluids(Fluid.of('gtceu:coal_gas', 4000)) - .duration(288) - .EUt(96) - .circuit(22) + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coal_gas") + .itemInputs('8x gtceu:raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .inputFluids(Fluid.of('gtceu:steam')) + .outputFluids(Fluid.of('gtceu:coal_gas', 4000)) + .duration(288) + .EUt(96) + .circuit(22) - event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote_nitrogen") - .itemInputs('8x gtceu:raw_coal') - .itemOutputs('16x gtceu:coke_gem') - .inputFluids(Fluid.of('gtceu:nitrogen')) - .outputFluids(Fluid.of('gtceu:creosote', 8000)) - .duration(288) - .EUt(96) - .circuit(2) + event.recipes.gtceu.pyrolyse_oven("tfg:raw_coal_to_coke_creosote_nitrogen") + .itemInputs('8x gtceu:raw_coal') + .itemOutputs('16x gtceu:coke_gem') + .inputFluids(Fluid.of('gtceu:nitrogen')) + .outputFluids(Fluid.of('gtceu:creosote', 8000)) + .duration(288) + .EUt(96) + .circuit(2) // #endregion @@ -885,6 +861,33 @@ const registerGTCEURecipes = (event) => { // #endregion + // #region Rubber Processing Line + event.recipes.firmalife.vat() + .inputs('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000)) + .outputFluid(Fluid.of('tfg:vulcanized_latex', 1000)) + .length(300) + .temperature(300) + .id('tfg:vat/vulcanized_latex') + + event.recipes.tfc.pot('tfc:powder/sulfur', Fluid.of('tfg:latex', 1000), 1200, 300) + .fluidOutput(Fluid.of('tfg:vulcanized_latex', 1000)) + .id('tfg:pot/vulcanized_latex') + + event.recipes.gtceu.chemical_reactor('tfg:/latex_to_vulcanized_latex') + .duration(200) + .EUt(20) + .itemInputs('tfc:powder/sulfur') + .inputFluids(Fluid.of('tfg:latex', 1000)) + .outputFluids(Fluid.of('tfg:vulcanized_latex', 1000)) + + event.recipes.gtceu.fluid_solidifier('tfg:/vulcanized_latex_to_raw_rubber_pulp') + .duration(100) + .EUt(20) + .inputFluids(Fluid.of('tfg:vulcanized_latex', 1000)) + .itemOutputs('4x gtceu:raw_rubber_dust') + + // #endregion + // #region Primitive protection event.recipes.tfc.barrel_sealed(2000) @@ -892,17 +895,6 @@ const registerGTCEURecipes = (event) => { .inputs('tfchotornot:mittens', Fluid.of('tfc:vinegar', 1000)) .id('tfg:sealed_barrel/prepared_leather_gloves') - event.recipes.firmalife.vat() - .inputs('tfc:powder/wood_ash', Fluid.of('tfg:latex', 100)) - .outputFluid(Fluid.of('tfg:vulcanized_latex', 100)) - .length(300) - .temperature(300) - .id('tfg:vat/vulcanized_latex') - - event.recipes.tfc.pot('tfc:powder/wood_ash', Fluid.of('tfg:latex', 100), 1200, 300) - .fluidOutput(Fluid.of('tfg:vulcanized_latex', 100)) - .id('tfg:pot/vulcanized_latex') - event.recipes.firmalife.vat() .outputItem('tfg:latex_soaked_gloves') .inputs('tfg:prepared_leather_gloves', Fluid.of('tfg:vulcanized_latex', 1000)) @@ -961,6 +953,20 @@ const registerGTCEURecipes = (event) => { .duration(100) .EUt(GTValues.VA[GTValues.ULV]) + event.recipes.gtceu.centrifuge('tfg:centrifuge_rosin') + .itemInputs('tfg:conifer_rosin') + .outputFluids(Fluid.of('gtceu:glue', 50)) + .itemOutputs('2x #forge:dusts/carbon') + .chancedOutput('gtceu:plant_ball', 1000, 850) + .duration(400) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.chemical_reactor(`tfg:treat_latex_plants_into_latex`) + .itemInputs('16x #tfg:rubber_plants', 'gtceu:tiny_sodium_hydroxide_dust') + .circuit(1) + .outputFluids(Fluid.of('tfg:latex', 1000)) + .duration(200) + .EUt(20) event.recipes.createSequencedAssembly([ 'gtceu:ulv_voltage_coil', @@ -976,15 +982,15 @@ const registerGTCEURecipes = (event) => { .itemInputs('#forge:ingots/iron', '#tfc:steam_bloomery_basic_fuels') .itemOutputs('tfc:raw_iron_bloom') .duration(2400) - .EUt(GTValues.VEX[GTValues.ULV]) + .EUt(2) event.recipes.gtceu.steam_bloomery('steam_raw_iron_bloom_coalcoke') .itemInputs('2x #forge:ingots/iron', '#tfc:blast_furnace_fuel') .itemOutputs('2x tfc:raw_iron_bloom') .duration(2400) - .EUt(GTValues.VEX[GTValues.ULV]) + .EUt(2) - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { const tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) if (tfcProperty == null) @@ -996,19 +1002,64 @@ const registerGTCEURecipes = (event) => { .itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 1), '#tfc:steam_bloomery_basic_fuels') .itemOutputs('tfc:raw_iron_bloom') .duration(2400) - .EUt(GTValues.VEX[GTValues.ULV]) + .EUt(2) event.recipes.gtceu.steam_bloomery(`steam_raw_iron_bloom_coalcoke_${material.getName()}`) .itemInputs(ChemicalHelper.get(TagPrefix.dust, material, 2), '#tfc:blast_furnace_fuel') .itemOutputs('2x tfc:raw_iron_bloom') .duration(2400) - .EUt(GTValues.VEX[GTValues.ULV]) + .EUt(2) } }) //#endregion - + + //#region Changing tiers of decomposition recipes + + event.recipes.gtceu.electrolyzer('gtceu:decomposition_electrolyzing_clay') + .itemInputs('13x #forge:dusts/clay') + .itemOutputs('2x #forge:dusts/sodium', '1x #forge:dusts/lithium', '2x #forge:dusts/aluminium', '2x #forge:dusts/silicon') + .outputFluids(Fluid.of('minecraft:water', 6000)) + .duration(GTMaterials.Clay.getMass() * 13) + .EUt(GTValues.VA[GTValues.HV]) + + event.recipes.gtceu.centrifuge('gtceu:stone_dust_separation') + .itemInputs('gtceu:stone_dust') + .chancedOutput('#forge:dusts/quartzite', 2500, 0) + .chancedOutput('#forge:dusts/potassium_feldspar', 2500, 0) + .chancedOutput('#forge:dusts/marble', 2222, 0) + .chancedOutput('#forge:dusts/biotite', 1111, 0) + .chancedOutput('#forge:dusts/metal_mixture', 825, 80) + .chancedOutput('#forge:dusts/sodalite', 550, 55) + .duration(12 * 20) + .EUt(GTValues.VA[GTValues.HV]) + + + //#endregion + + //#region Tape + + event.shaped('gtceu:basic_tape', [ + ' A ', + 'ABA', + ' A ' + ], { + A: 'minecraft:paper', + B: 'tfc:glue' + }).id('tfg:shaped/basic_tape_from_glue') + + event.recipes.gtceu.assembler('basic_tape_from_glue') + .itemInputs('2x minecraft:paper', 'tfc:glue') + .itemOutputs('2x gtceu:basic_tape') + .duration(100) + .EUt(GTValues.VA[GTValues.ULV]) + + //#endregion + // TODO: Greate again... + event.shapeless('gtceu:programmed_circuit', ['minecraft:stick', '#forge:tools/wrenches']) + .id('tfg:shapeless/programmed_circuit_from_stick') + event.shapeless('gtceu:red_alloy_single_cable', ['gtceu:red_alloy_single_wire', '#forge:plates/rubber']) .id('tfg:shapeless/red_alloy_single_cable') diff --git a/kubejs/server_scripts/gregtech/recipes.machines.js b/kubejs/server_scripts/gregtech/recipes.machines.js index 9c6a6e520..d1b104513 100644 --- a/kubejs/server_scripts/gregtech/recipes.machines.js +++ b/kubejs/server_scripts/gregtech/recipes.machines.js @@ -581,6 +581,54 @@ function registerGTCEuMachineRecipes(event) { //#endregion + //#region ULV Hatches + + event.recipes.shaped('gtceu:ulv_input_bus', [ + 'CAC', + 'CBC', + 'CDC' + ], { + A: '#forge:chests/wooden', + B: 'gtceu:ulv_machine_hull', + C: 'tfc:glue', + D: '#forge:tools/wrenches' + }).id('gtceu:shaped/ulv_input_bus') + + event.recipes.shaped('gtceu:ulv_output_bus', [ + 'CDC', + 'CBC', + 'CAC' + ], { + A: '#forge:chests/wooden', + B: 'gtceu:ulv_machine_hull', + C: 'tfc:glue', + D: '#forge:tools/wrenches' + }).id('gtceu:shaped/ulv_output_bus') + + event.recipes.shaped('gtceu:ulv_input_hatch', [ + 'CAC', + 'CBC', + 'CDC' + ], { + A: '#forge:glass', + B: 'gtceu:ulv_machine_hull', + C: 'tfc:glue', + D: '#forge:tools/wrenches' + }).id('gtceu:shaped/ulv_input_hatch') + + event.recipes.shaped('gtceu:ulv_output_hatch', [ + 'CDC', + 'CBC', + 'CAC' + ], { + A: '#forge:glass', + B: 'gtceu:ulv_machine_hull', + C: 'tfc:glue', + D: '#forge:tools/wrenches' + }).id('gtceu:shaped/ulv_output_hatch') + + //#endregion + //#region Long distance pipes event.recipes.gtceu.assembler('long_distance_item_pipe') diff --git a/kubejs/server_scripts/gregtech/recipes.materials.js b/kubejs/server_scripts/gregtech/recipes.materials.js index 8e597519a..9e747fa03 100644 --- a/kubejs/server_scripts/gregtech/recipes.materials.js +++ b/kubejs/server_scripts/gregtech/recipes.materials.js @@ -837,7 +837,7 @@ function registerGTCEUMetalRecipes(event) { .id(`${material.getName()}_ingot_to_bars`) } - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { const toolProperty = material.getProperty(PropertyKey.TOOL) const ingotProperty = material.getProperty(PropertyKey.INGOT) const oreProperty = material.getProperty(PropertyKey.ORE) diff --git a/kubejs/server_scripts/gregtech/recipes.recycling.js b/kubejs/server_scripts/gregtech/recipes.recycling.js index bb34d453d..9b9202815 100644 --- a/kubejs/server_scripts/gregtech/recipes.recycling.js +++ b/kubejs/server_scripts/gregtech/recipes.recycling.js @@ -8,7 +8,7 @@ function registerGTCEURecyclingRecipes(event) { .itemOutputs( ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Tantalum, 1), ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Polyethylene, 1) - ) + ) .duration(GTMaterials.Tantalum.getMass() * 1) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -18,7 +18,7 @@ function registerGTCEURecyclingRecipes(event) { .itemOutputs( ChemicalHelper.get(TagPrefix.nugget, GTMaterials.Tantalum, 1), ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Ash, 1) - ) + ) .duration(GTMaterials.Tantalum.getMass() * 1) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -28,7 +28,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:capacitor') .itemOutputs( ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Polyethylene, 1) - ) + ) .duration(GTMaterials.Polyethylene.getMass() * 1) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -37,7 +37,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:capacitor') .itemOutputs( ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Ash, 1) - ) + ) .duration(GTMaterials.Ash.getMass() * 1) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -47,7 +47,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:empty_tier_i_battery') .itemOutputs( ChemicalHelper.get(TagPrefix.dust, GTMaterials.Ultimet, 6) - ) + ) .duration(GTMaterials.Ultimet.getMass() * 6) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -56,7 +56,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:empty_tier_i_battery') .itemOutputs( ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Ultimet, 6) - ) + ) .duration(GTMaterials.Ultimet.getMass() * 6) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -73,7 +73,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:empty_tier_ii_battery') .itemOutputs( ChemicalHelper.get(TagPrefix.dust, GTMaterials.Ruridit, 6) - ) + ) .duration(GTMaterials.Ruridit.getMass() * 6) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -82,7 +82,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:empty_tier_ii_battery') .itemOutputs( ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Ruridit, 6) - ) + ) .duration(GTMaterials.Ruridit.getMass() * 6) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) @@ -99,7 +99,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:empty_tier_iii_battery') .itemOutputs( ChemicalHelper.get(TagPrefix.dust, GTMaterials.Neutronium, 6) - ) + ) .duration(GTMaterials.Neutronium.getMass() * 6) .category(GTRecipeCategories.MACERATOR_RECYCLING) .EUt(GTValues.VA[GTValues.ULV]) @@ -108,7 +108,7 @@ function registerGTCEURecyclingRecipes(event) { .itemInputs('gtceu:empty_tier_iii_battery') .itemOutputs( ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Neutronium, 6) - ) + ) .duration(GTMaterials.Neutronium.getMass() * 6) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) diff --git a/kubejs/server_scripts/gregtech/recipes.removes.js b/kubejs/server_scripts/gregtech/recipes.removes.js index 869a6d6ea..3d5fefae8 100644 --- a/kubejs/server_scripts/gregtech/recipes.removes.js +++ b/kubejs/server_scripts/gregtech/recipes.removes.js @@ -2,6 +2,9 @@ function removeGTCEURecipes(event) { + event.replaceInput({ input: 'gtceu:wood_drum' }, 'gtceu:wood_drum', 'minecraft:glass') + event.replaceInput({ input: 'minecraft:chest' }, 'minecraft:chest', '#forge:chests/wooden') + global.GTCEU_DISABLED_ITEMS.forEach(item => { event.remove({ input: item }) event.remove({ output: item }) @@ -155,6 +158,19 @@ function removeGTCEURecipes(event) { // #endregion + // #region Nether Quartz + + event.remove({ id: 'gtceu:shaped/quartz_stair_saw' }) + event.remove({ id: 'gtceu:assembler/assemble_quartz_into_stair' }) + event.remove({ id: 'gtceu:shaped/quartz_polish_hammer' }) + event.remove({ id: 'gtceu:assembler/assemble_quartz_into_polished' }) + event.remove({ id: 'gtceu:assembler/assemble_block_of_quartz_into_quartz_pillar' }) + event.remove({ id: 'gtceu:shaped/smooth_quartz_stair_saw' }) + event.remove({ id: 'gtceu:assembler/assemble_smooth_quartz_into_stair' }) + event.remove({ id: 'gtceu:shaped/smooth_quartz_slab_saw' }) + + // #endregion + // #region Plant Ball event.remove({ id: 'gtceu:compressor/plant_ball_from_wheat' }) @@ -587,6 +603,8 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:shaped/shield' }) event.remove({ id: 'gtceu:shaped/pickaxe_iron' }) + event.remove({ id: 'gtceu:shapeless/glass_full_dust_flint' }) + event.remove({ id: 'gtceu:shaped_fluid_container/treated_wood_planks' }) event.remove({ id: 'gtceu:assembler/bell' }) @@ -608,6 +626,18 @@ function removeGTCEURecipes(event) { event.remove({ id: 'gtceu:assembler/spyglass' }) event.remove({ id: 'gtceu:chemical_reactor/ghast_tear_separation' }) - + + event.remove({ id: 'gtceu:assembler/assemble_brick_into_stair' }) + event.remove({ id: 'gtceu:assembler/assemble_brick_into_wall' }) event.remove({ id: 'gtceu:compressor/bricks' }) + event.remove({ id: 'gtceu:extractor/bricks_extraction' }) + event.remove({ id: 'gtceu:macerator/macerate_bricks' }) + event.remove({ id: 'gtceu:macerator/macerate_brick_stairs' }) + event.remove({ id: 'gtceu:macerator/macerate_brick_slab' }) + event.remove({ id: 'gtceu:macerator/macerate_brick_wall' }) + event.remove({ id: 'gtceu:macerator/macerate_flower_pot' }) + + event.remove({ id: 'gtceu:centrifuge/decomposition_centrifuging__fireclay' }) + + event.remove({ id: 'gtceu:smelting/sticky_resin_from_slime' }) } diff --git a/kubejs/server_scripts/gregtech/tags.js b/kubejs/server_scripts/gregtech/tags.js index 09d0b8039..624ec754d 100644 --- a/kubejs/server_scripts/gregtech/tags.js +++ b/kubejs/server_scripts/gregtech/tags.js @@ -63,6 +63,8 @@ const registerGTCEUItemTags = (event) => { event.add('minecraft:piglin_loved', 'gtceu:poor_raw_pyrite') event.add('minecraft:piglin_loved', 'gtceu:raw_pyrite') event.add('minecraft:piglin_loved', 'gtceu:rich_raw_pyrite') + + event.remove('forge:gems', 'gtceu:coke_gem') } const registerGTCEUBlockTags = (event) => { @@ -76,8 +78,19 @@ const registerGTCEUBlockTags = (event) => { event.add('minecraft:mineable/pickaxe', '#forge:ores') event.add('minecraft:needs_iron_tool', '#forge:ores') + // Collapse tags + event.add('tfc:can_collapse', '#forge:ores') + event.add('tfc:can_start_collapse', '#forge:ores') + event.add('tfc:can_trigger_collapse', '#forge:ores') + event.add('c:hidden_from_recipe_viewers', '#forge:ores') + + event.add('tfc:can_collapse', '#forge:raw_ore_blocks') + event.add('tfc:can_start_collapse', '#forge:raw_ore_blocks') + event.add('tfc:can_trigger_collapse', '#forge:raw_ore_blocks') + event.add('c:hidden_from_recipe_viewers', '#forge:raw_ore_blocks') + // Let GT indicators be covered by snow - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { if (material.hasProperty(PropertyKey.ORE)) { let indicator = `gtceu:${material.getName()}_indicator`; @@ -96,19 +109,6 @@ const registerGTCEUBlockTags = (event) => { event.add('minecraft:mineable/pickaxe', bud) } - - // I LOVE KUBEJS I LOVE KUBEJS I LOVE KUBEJS - let str = `:${ChemicalHelper.get(TagPrefix.rawOreBlock, material, 1).getItem()}`; - if (material == GTMaterials.Copper || material == GTMaterials.Gold || material == GTMaterials.Iron) - str = "minecraft" + str; - else - str = "gtceu" + str; - - event.add('tfc:can_collapse', str); - event.add('tfc:can_start_collapse', str); - event.add('tfc:can_trigger_collapse', str); - // Hide these from JEI - event.add('c:hidden_from_recipe_viewers', str); } }) } diff --git a/kubejs/server_scripts/gregtech/utility.js b/kubejs/server_scripts/gregtech/utility.js index 6460e509f..02d74b307 100644 --- a/kubejs/server_scripts/gregtech/utility.js +++ b/kubejs/server_scripts/gregtech/utility.js @@ -64,7 +64,7 @@ function generatePlatedBlockRecipe(event, material) { let outputMaterial = (tfcProperty == null || tfcProperty.getOutputMaterial() == null) ? material : tfcProperty.getOutputMaterial() let plateItem = ChemicalHelper.get(TagPrefix.plate, material, 1); - + let platedBlock = ChemicalHelper.get(TFGTagPrefix.blockPlated, material, 1); let platedSlab = ChemicalHelper.get(TFGTagPrefix.slabPlated, material, 1); let platedStair = ChemicalHelper.get(TFGTagPrefix.stairPlated, material, 1); @@ -162,4 +162,14 @@ function generatePlatedBlockRecipe(event, material) { .duration(material.getMass()) .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) .EUt(GTValues.VA[GTValues.LV]) +} + +const $MRM = Java.loadClass('com.gregtechceu.gtceu.api.data.chemical.material.IMaterialRegistryManager') + +function forEachMaterial(iterator) { + if (GTMaterialRegistry.getPhase() === $MRM.Phase.CLOSED || GTMaterialRegistry.getPhase() === $MRM.Phase.FROZEN) { + GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + iterator(material) + }) + } } \ No newline at end of file diff --git a/kubejs/server_scripts/hotornot/recipes.js b/kubejs/server_scripts/hotornot/recipes.js index fa482ea64..5ceac71f8 100644 --- a/kubejs/server_scripts/hotornot/recipes.js +++ b/kubejs/server_scripts/hotornot/recipes.js @@ -2,13 +2,4 @@ const registerHotOrNotRecipes = (event) => { - event.remove({ id: 'tfchotornot/heating/tong_part/cast_iron' }) - event.remove({ id: 'tfchotornot/anvil/tong_part/cast_iron' }) - - event.remove({ id: 'tfchotornot/heating/tongs/cast_iron' }) - event.remove({ id: 'tfchotornot:crafting/tongs/cast_iron' }) - - - event.recipes.tfc.loom('tfchotornot:wool_potholder', '2x minecraft:blue_wool', 16, 'minecraft:block/white_wool') - .id('tfchotornot:loom/wool_potholder') } \ No newline at end of file diff --git a/kubejs/server_scripts/hotornot/tags.js b/kubejs/server_scripts/hotornot/tags.js index 9aa9be1b7..f31f1c7e2 100644 --- a/kubejs/server_scripts/hotornot/tags.js +++ b/kubejs/server_scripts/hotornot/tags.js @@ -7,9 +7,6 @@ const registerHotOrNotItemTags = (event) => { event.removeAllTagsFrom(item) event.add('c:hidden_from_recipe_viewers', item) }) - - // TODO: TEMP FIX - event.add('tfchotornot:insulating', '#tfc:all_blowpipes') } const registerHotOrNotBlockTags = (event) => { diff --git a/kubejs/server_scripts/mega_cells/recipes.js b/kubejs/server_scripts/mega_cells/recipes.js index ba3a93c66..36ef469f5 100644 --- a/kubejs/server_scripts/mega_cells/recipes.js +++ b/kubejs/server_scripts/mega_cells/recipes.js @@ -18,22 +18,15 @@ const registerMegaCellsRecipes = (event) => { //printed accumulation circuit event.recipes.gtceu.forming_press('megacells:printed_accumulation_processor') - .itemInputs('#forge:plates/enriched_naquadah') + .itemInputs('#forge:dense_plates/silicon') .notConsumable('megacells:accumulation_processor_press') .itemOutputs('megacells:printed_accumulation_processor') .duration(20) .EUt(1920) - // Inscrdiber Silicon Press - event.recipes.gtceu.laser_engraver('ae2:accumulation_processor_press_iron') - .itemInputs('#forge:plates/cast_iron', 'ae2:singularity') - .notConsumable('#forge:lenses/black') - .itemOutputs('megacells:accumulation_processor_press') - .duration(6000) - .EUt(1920) - - event.recipes.gtceu.laser_engraver('ae2:accumulation_processor_press_wrought_iron') - .itemInputs('#forge:plates/wrought_iron', 'ae2:singularity') + // Inscriber Silicon Press + event.recipes.gtceu.laser_engraver('ae2:accumulation_processor_press') + .itemInputs('#forge:plates/naquadah') .notConsumable('#forge:lenses/black') .itemOutputs('megacells:accumulation_processor_press') .duration(4000) @@ -73,7 +66,7 @@ const registerMegaCellsRecipes = (event) => { 'BBB' ], { A: 'ae2:quartz_vibrant_glass', - B: '#forge:plates/enriched_naquadah', + B: '#forge:plates/maraging_steel_300', C: '#forge:fine_wires/niobium_titanium', D: '#gtceu:circuits/iv', }).id('tfg:crafting/mega_item_cell_housing') diff --git a/kubejs/server_scripts/minecraft/recipes.js b/kubejs/server_scripts/minecraft/recipes.js index ffd020ccd..20e19bfb2 100644 --- a/kubejs/server_scripts/minecraft/recipes.js +++ b/kubejs/server_scripts/minecraft/recipes.js @@ -348,7 +348,7 @@ const registerMinecraftRecipes = (event) => { C: '#tfc:rock/smooth' }).id('tfg:shaped/comparator_nether_quartz'); - event.replaceInput({id: 'gtceu:shaped/redstone_lamp' }, 'minecraft:glass_pane', '#forge:glass_panes') + event.replaceInput({ id: 'gtceu:shaped/redstone_lamp' }, 'minecraft:glass_pane', '#forge:glass_panes') event.recipes.gtceu.assembler('redstone_lamp') .itemInputs('1x #forge:glass', '1x minecraft:glowstone', '1x #forge:rods/red_alloy') .itemOutputs('minecraft:redstone_lamp') @@ -793,42 +793,41 @@ const registerMinecraftRecipes = (event) => { //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π­Π»ΠΈΡ‚Ρ€Π° // Ну ΠΈ Ρ…Π΅Ρ€ΡŒ я ΠΏΡ€ΠΈΠ΄ΡƒΠΌΠ°Π» - - event.recipes.gtceu.arc_furnace('tfg:minecraft/arc_furnace/recycling/elytra') - .itemInputs(Item.of('minecraft:elytra', '{Damage:0}').strongNBT()) - .itemOutputs('4x gtceu:aluminium_ingot', '2x gtceu:polycaprolactam_ingot') - .duration(224) - .EUt(GTValues.VA[GTValues.LV]) - .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) - - event.recipes.gtceu.macerator('tfg:minecraft/macerator/recycling/elytra') - .itemInputs(Item.of('minecraft:elytra', '{Damage:0}').strongNBT()) - .itemOutputs('4x gtceu:aluminium_dust', '2x gtceu:polycaprolactam_dust') - .duration(224) - .EUt(GTValues.VA[GTValues.ULV]) - .category(GTRecipeCategories.MACERATOR_RECYCLING) - event.recipes.gtceu.assembler('tfg:minecraft/elytra') - .itemInputs('16x #forge:foils/polycaprolactam', '16x #forge:foils/aluminium', '8x minecraft:phantom_membrane', '4x #forge:rings/aluminium', '2x #forge:rods/long/vanadium_steel', '2x #forge:small_springs/aluminium', '1x #forge:small_gears/aluminium') + .itemInputs('16x tfg:polycaprolactam_fabric', '16x #forge:foils/aluminium', '8x tfg:phantom_silk', '4x #forge:rings/aluminium', '2x #forge:rods/long/vanadium_steel', '2x #forge:small_springs/aluminium', '1x #forge:small_gears/aluminium') .circuit(4) .itemOutputs(Item.of('minecraft:elytra', "{Damage:0}")) .duration(1600) .EUt(420) event.recipes.gtceu.assembler('tfg:minecraft/elytra2') - .itemInputs('16x #forge:foils/polycaprolactam', '16x #forge:foils/aluminium', '8x #forge:plates/ender_eye', '4x #forge:rings/aluminium', '2x #forge:rods/long/vanadium_steel', '2x #forge:small_springs/aluminium', '1x #forge:small_gears/aluminium') + .itemInputs('16x tfg:polycaprolactam_fabric', '16x #forge:foils/aluminium', '8x #forge:plates/ender_eye', '4x #forge:rings/aluminium', '2x #forge:rods/long/vanadium_steel', '2x #forge:small_springs/aluminium', '1x #forge:small_gears/aluminium') .circuit(4) .itemOutputs(Item.of('minecraft:elytra', "{Damage:0}")) .duration(1600) .EUt(420) event.recipes.gtceu.assembler('tfg:minecraft/elytra_repairing') - .itemInputs('6x #forge:foils/polycaprolactam', Item.of('minecraft:elytra', '{Damage:2045}').strongNBT()) + .itemInputs('6x tfg:polycaprolactam_fabric', Item.of('minecraft:elytra', '{Damage:2045}').strongNBT()) .circuit(4) .itemOutputs(Item.of('minecraft:elytra', "{Damage:0}")) .duration(1600) .EUt(120) + event.recipes.gtceu.arc_furnace('tfg:minecraft/arc_furnace/recycling/elytra') + .itemInputs(Item.of('minecraft:elytra', '{Damage:0}').strongNBT()) + .itemOutputs('4x gtceu:aluminium_ingot', '4x gtceu:tiny_ash_dust') + .duration(224) + .EUt(GTValues.VA[GTValues.LV]) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + + event.recipes.gtceu.macerator('tfg:minecraft/macerator/recycling/elytra') + .itemInputs(Item.of('minecraft:elytra', '{Damage:0}').strongNBT()) + .itemOutputs('4x gtceu:aluminium_dust', '4x gtceu:polycaprolactam_dust') + .duration(224) + .EUt(GTValues.VA[GTValues.ULV]) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + //#endregion //#region Glowstone @@ -948,4 +947,50 @@ const registerMinecraftRecipes = (event) => { .itemOutputs('minecraft:leather') .EUt(7).duration(80) //#endregion + + //#region Campfire + event.shaped('minecraft:campfire', [ + ' A ', + 'ABA', + 'CDC' + ], { + A: 'minecraft:blaze_rod', + B: 'minecraft:blaze_powder', + C: '#forge:ingots/blue_steel', + D: '#forge:storage_blocks/charcoal', + }).id('tfg:campfire_charcoal') + + event.shaped('minecraft:campfire', [ + ' A ', + 'ABA', + 'CDC' + ], { + A: 'minecraft:blaze_rod', + B: 'minecraft:blaze_powder', + C: '#forge:ingots/blue_steel', + D: '#forge:storage_blocks/coal', + }).id('tfg:campfire_coal') + //#endregion + + //#region Smithing Table + event.shaped('minecraft:smithing_table', [ + 'C ', + 'BB ', + 'AA ' + ], { + A: '#minecraft:planks', + B: ChemicalHelper.get(TagPrefix.plate, GTMaterials.Lead, 1), + C: '#forge:tools/hammers' + }).id('minecraft:shapeless/smithing_table') + + event.recipes.gtceu.assembler('minecraft:assembler/smithing_table') + .itemInputs('2x #minecraft:planks', ChemicalHelper.get(TagPrefix.plate, GTMaterials.Lead, 2)) + .circuit(4) + .itemOutputs('minecraft:smithing_table') + .duration(60) + .EUt(GTValues.VA[GTValues.ULV]) + //#endregion + + event.smelting('tfc:glue', 'minecraft:slime_ball') + .id('tfg:smelting/slime_to_glue') } diff --git a/kubejs/server_scripts/minecraft/recipes.removes.js b/kubejs/server_scripts/minecraft/recipes.removes.js index 218d999b5..dc0df2cc0 100644 --- a/kubejs/server_scripts/minecraft/recipes.removes.js +++ b/kubejs/server_scripts/minecraft/recipes.removes.js @@ -1576,6 +1576,9 @@ function removeMinecraftRecipes(event) { //#region Π’Ρ‹Ρ…ΠΎΠ΄: Π‘Ρ‚ΠΎΠ» для ΠΊΠΎΠ²ΠΊΠΈ event.remove({ id: 'minecraft:smithing_table' }) + event.remove({ id: 'tfc:crafting/vanilla/smithing_table' }) + event.remove({ id: 'gtceu:shaped/smithing_table' }) + event.remove({ id: 'gtceu:assembler/smithing_table' }) //#endregion diff --git a/kubejs/server_scripts/minecraft/tags.js b/kubejs/server_scripts/minecraft/tags.js index 39b506db5..46d1c06e9 100644 --- a/kubejs/server_scripts/minecraft/tags.js +++ b/kubejs/server_scripts/minecraft/tags.js @@ -54,9 +54,9 @@ const registerMinecraftItemTags = (event) => { event.add('tfc:rock/raw', 'minecraft:blackstone') event.add('tfc:rock/raw', 'minecraft:dripstone_block') - event.add('tfc:sewing_dark_cloth', 'minecraft:phantom_membrane') - event.remove('forge:gems', 'minecraft:charcoal') + event.remove('forge:gems', 'minecraft:coal') + event.remove('minecraft:dirt', 'minecraft:moss_block') } const registerMinecraftBlockTags = (event) => { @@ -126,6 +126,8 @@ const registerMinecraftBlockTags = (event) => { event.add('tfg:brick_stairs', 'minecraft:blackstone_stairs') event.add('tfg:brick_slabs', 'minecraft:blackstone_slab') event.add('tfg:brick_walls', 'minecraft:blackstone_wall') + + event.remove('minecraft:dirt', 'minecraft:moss_block') //#region } \ No newline at end of file diff --git a/kubejs/server_scripts/railways/recipes.js b/kubejs/server_scripts/railways/recipes.js index 624591e77..50f43c06e 100644 --- a/kubejs/server_scripts/railways/recipes.js +++ b/kubejs/server_scripts/railways/recipes.js @@ -400,4 +400,17 @@ const registerRailWaysRecipes = (event) => { .EUt(16) .circuit(3) }); + + event.shaped('1x railways:handcar', [ + 'EFE', + 'BAA', + 'CDC' + ], { + A: '#minecraft:wooden_slabs', + B: '#create:seats', + C: 'gtceu:steel_minecart_wheels', + D: 'greate:steel_cogwheel', + E: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Steel, 1), + F: ChemicalHelper.get(TagPrefix.spring, GTMaterials.Steel, 1) + }).id('tfg:railways/shaped/handcar') } diff --git a/kubejs/server_scripts/rnr/recipes.js b/kubejs/server_scripts/rnr/recipes.js index 229a1216a..8b3e37213 100644 --- a/kubejs/server_scripts/rnr/recipes.js +++ b/kubejs/server_scripts/rnr/recipes.js @@ -18,17 +18,15 @@ const registerRnrRecipes = (event) => { .EUt(GTValues.VA[GTValues.ULV]) global.TFC_STONE_TYPES.forEach(stone => { - event.recipes.gtceu.assembler(`rnr:assembler/flagstone/${stone}`) - .itemInputs(`tfc:rock/loose/${stone}`) + event.recipes.gtceu.cutter(`rnr:assembler/flagstone/${stone}`) + .itemInputs(`tfc:brick/${stone}`) .itemOutputs(`2x rnr:flagstone/${stone}`) - .circuit(7) .duration(20) .EUt(GTValues.VA[GTValues.ULV]) - event.recipes.gtceu.assembler(`rnr:assembler/flagstone/mossy_${stone}`) + event.recipes.gtceu.cutter(`rnr:assembler/flagstone/mossy_${stone}`) .itemInputs(`tfc:rock/mossy_loose/${stone}`) .itemOutputs(`2x rnr:flagstone/${stone}`) - .circuit(7) .duration(20) .EUt(GTValues.VA[GTValues.ULV]) }); diff --git a/kubejs/server_scripts/tfc/data.js b/kubejs/server_scripts/tfc/data.js index 6b903d9db..96618bee1 100644 --- a/kubejs/server_scripts/tfc/data.js +++ b/kubejs/server_scripts/tfc/data.js @@ -54,7 +54,7 @@ const registerTFCHeats = (event) => { if (!tool.isEmpty()) event.itemHeat(tool, heatCapacity, tfcProperty.getForgingTemp(), tfcProperty.getWeldingTemp()) } - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { let tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) if (tfcProperty != null) { @@ -199,6 +199,15 @@ const registerTFCItemSize = (event) => { event.itemSize('tfg:decorative_vase', 'normal', 'medium', 'decorative_vase') event.itemSize('tfg:decorative_vase/unfired', 'normal', 'medium', 'decorative_vase/unfired') + event.itemSize('tfg:fishing_net/wood', 'large', 'medium', 'wood_fishing_net') + event.itemSize('tfg:fishing_net/brass', 'large', 'medium', 'brass_fishing_net') + event.itemSize('tfg:fishing_net/rose_gold', 'large', 'medium', 'rose_gold_fishing_net') + event.itemSize('tfg:fishing_net/sterling_silver', 'large', 'medium', 'sterling_silver_fishing_net') + event.itemSize('tfg:fishing_net/invar', 'large', 'medium', 'invar_fishing_net') + event.itemSize('tfg:fishing_net/cupronickel', 'large', 'medium', 'cupronickel_fishing_net') + event.itemSize('tfg:fishing_net/tin_alloy', 'large', 'medium', 'tin_alloy_fishing_net') + event.itemSize('tfg:fishing_net/magnalium', 'large', 'medium', 'magnalium_fishing_net') + event.itemSize('#tfc:ore_pieces', 'very_small', 'very_light', 'tfc_ores') } @@ -257,19 +266,19 @@ const registerTFCFoodData = (event) => { //#region registerTFCSupportData //up, down, horizontal const registerTFCSupportData = (event) => { - event.support('tfg:light_concrete_support', 4, 4, 8, 'light_concrete_support') - event.support('tfg:dark_concrete_support', 4, 4, 8, 'dark_concrete_support') - event.support('tfg:reinforced_light_concrete_support', 6, 6, 16, 'reinforced_light_concrete_support') - event.support('tfg:reinforced_dark_concrete_support', 6, 6, 16, 'reinforced_dark_concrete_support') - event.support('tfg:rebar_support', 4, 4, 8, 'rebar_support') - event.support('tfg:steel_support', 6, 6, 16, 'steel_support') + event.support('tfg:light_concrete_support_horizontal', 4, 4, 8, 'light_concrete_support') + event.support('tfg:dark_concrete_support_horizontal', 4, 4, 8, 'dark_concrete_support') + event.support('tfg:reinforced_light_concrete_support_horizontal', 6, 6, 16, 'reinforced_light_concrete_support') + event.support('tfg:reinforced_dark_concrete_support_horizontal', 6, 6, 16, 'reinforced_dark_concrete_support') + event.support('tfg:rebar_support_horizontal', 4, 4, 8, 'rebar_support') + event.support('tfg:steel_support_horizontal', 6, 6, 16, 'steel_support') const other_stone = ['pyroxenite', 'migmatite', 'travertine'] const stone_types = global.TFC_STONE_TYPES.concat(other_stone) stone_types.forEach(stone => { - event.support(`tfg:${stone}_support`, 2, 2, 4, `${stone}_support`) + event.support(`tfg:${stone}_support_horizontal`, 2, 2, 4, `${stone}_support`) }) } //#endregion diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index f1ce0d7b3..274f75e06 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -237,4 +237,79 @@ const registerTFCRecipes = (event) => { // Brass Mechanism event.recipes.shapeless('gtceu:small_brass_gear', [ 'tfc:brass_mechanisms' ]).id('tfg:replace_brass_mechanisms') event.replaceInput({ input: 'tfc:brass_mechanisms' }, 'tfc:brass_mechanisms', 'gtceu:small_brass_gear') + + // Fertilizers + event.recipes.gtceu.centrifuge('tfg:gtceu/centrifuge/pure_fertilizers') + .itemInputs('1x gtceu:fertilizer') + .itemOutputs('1x tfc:pure_nitrogen', '1x tfc:pure_potassium', '1x tfc:pure_phosphorus') + .duration(340) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.mixer('tfg:tfc/mixer/fertilizer') + .itemInputs('1x tfc:pure_nitrogen', '1x tfc:pure_potassium', '1x tfc:pure_phosphorus', ChemicalHelper.get(TagPrefix.dustSmall, GTMaterials.Clay, 1)) + .itemOutputs('1x gtceu:fertilizer') + .duration(160) + .EUt(GTValues.VA[GTValues.ULV]) + + //Hide Sewing + const stages = [ + 'raw', + 'soaked', + 'scraped', + 'prepared', + 'sheepskin' + ]; + + const sizes = [ + 'small', + 'medium', + 'large' + ]; + + stages.forEach((stage) => { + sizes.forEach((size, index) => { + // Find the next larger size. + const nextLarger = sizes[index + 1]; + + // If a larger size exists, sew the hides together. + if (nextLarger) { + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless(`1x tfc:${nextLarger}_${stage}_hide`, [ + `2x tfc:${size}_${stage}_hide`, + '#tfc:sewing_needles', + '#forge:string', + 'tfc:glue' + ]).id(`tfg:tfc/${size}_to_${nextLarger}_${stage}_hide`) + ) + + event.recipes.gtceu.assembler(`tfg:gtceu/assembler/${size}_to_${nextLarger}_${stage}_hide`) + .inputFluids(Fluid.of('gtceu:glue', 25)) + .itemOutputs(`1x tfc:${nextLarger}_${stage}_hide`) + .itemInputs(`2x tfc:${size}_${stage}_hide`) + .duration(60) + .circuit(7) + .EUt(GTValues.VA[GTValues.ULV]) + } + + // Find the next smaller size. + const nextSmaller = sizes[index - 1]; + + // If a smaller size exists, cut the hide. + if (nextSmaller) { + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless(`2x tfc:${nextSmaller}_${stage}_hide`, [ + `1x tfc:${size}_${stage}_hide`, + '#forge:shears' + ]).id(`tfg:tfc/${size}_to_${nextSmaller}_${stage}_hide`) + ) + + event.recipes.gtceu.assembler(`tfg:gtceu/assembler/${size}_to_${nextSmaller}_${stage}_hide`) + .itemOutputs(`2x tfc:${nextSmaller}_${stage}_hide`) + .itemInputs(`1x tfc:${size}_${stage}_hide`) + .duration(60) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + } + }); + }); } diff --git a/kubejs/server_scripts/tfc/recipes.machines.js b/kubejs/server_scripts/tfc/recipes.machines.js index c8b943e01..e1a66046e 100644 --- a/kubejs/server_scripts/tfc/recipes.machines.js +++ b/kubejs/server_scripts/tfc/recipes.machines.js @@ -176,23 +176,23 @@ function registerTFCMachineRecipes(event) { // Curdled milk event.recipes.gtceu.fermenter('tfg:fermenter/curdled_milk') - .inputFluids(Fluid.of('minecraft:milk', 1000)) + .inputFluids(Fluid.of('minecraft:milk', 2000)) .itemInputs('firmalife:rennet') - .outputFluids(Fluid.of('tfc:curdled_milk')) + .outputFluids(Fluid.of('tfc:curdled_milk', 2000)) .duration(2400) .EUt(16) event.recipes.gtceu.fermenter('tfg:fermenter/curdled_yak_milk') - .inputFluids(Fluid.of('firmalife:yak_milk', 1000)) + .inputFluids(Fluid.of('firmalife:yak_milk', 2000)) .itemInputs('firmalife:rennet') - .outputFluids(Fluid.of('firmalife:curdled_yak_milk')) + .outputFluids(Fluid.of('firmalife:curdled_yak_milk', 2000)) .duration(2400) .EUt(16) event.recipes.gtceu.fermenter('tfg:fermenter/curdled_goat_milk') - .inputFluids(Fluid.of('firmalife:goat_milk', 1000)) + .inputFluids(Fluid.of('firmalife:goat_milk', 2000)) .itemInputs('firmalife:rennet') - .outputFluids(Fluid.of('firmalife:curdled_goat_milk')) + .outputFluids(Fluid.of('firmalife:curdled_goat_milk', 2000)) .duration(2400) .EUt(16) @@ -303,7 +303,7 @@ function registerTFCMachineRecipes(event) { event.recipes.gtceu.mixer('tfg:tfc/olive_oil_water') .inputFluids(Fluid.of('water', 200)) - .itemInputs('2x tfc:olive_paste') + .itemInputs('1x tfc:olive_paste') .outputFluids(Fluid.of('tfc:olive_oil_water', 200)) .duration(200) .EUt(28) @@ -316,6 +316,26 @@ function registerTFCMachineRecipes(event) { //#endregion + // Vinegar and Brine + + global.TFC_ALCOHOL.forEach(alcohol => { + event.recipes.gtceu.fermenter(`tfg:tfc/vinegar/${alcohol.id.replace(':', '_')}`) + .itemInputs('#tfc:foods/fruits') + .inputFluids(Fluid.of(alcohol.id, 250)) + .outputFluids(Fluid.of('tfc:vinegar', 250)) + .duration(600) + .EUt(28) + }) + + event.recipes.gtceu.mixer('tfg:tfc/brine') + .inputFluids(Fluid.of('tfc:salt_water', 900)) + .inputFluids(Fluid.of('tfc:vinegar', 100)) + .outputFluids(Fluid.of('tfc:brine', 1000)) + .duration(100) + .EUt(16) + + //#endregion + // Lamp Glass event.recipes.gtceu.alloy_smelter(`tfg:tfc/lamp_glass`) .itemInputs('#tfc:glass_batches') @@ -359,6 +379,12 @@ function registerTFCMachineRecipes(event) { .duration(50) .EUt(2) + event.recipes.gtceu.lathe('tfc:lens') + .itemInputs('#forge:glass') + .itemOutputs('tfc:lens') + .duration(100) + .EUt(16) + // Wool Yarn event.recipes.gtceu.macerator('macerate_wool') .itemInputs('#minecraft:wool') @@ -370,7 +396,7 @@ function registerTFCMachineRecipes(event) { .EUt(2) // LimeWater + Sand -> Mortar - event.recipes.gtceu.centrifuge('mortar') + event.recipes.gtceu.mixer('mortar') .itemInputs('#forge:sand') .inputFluids(Fluid.of('tfc:limewater', 100)) .itemOutputs('16x tfc:mortar') @@ -383,6 +409,7 @@ function registerTFCMachineRecipes(event) { .itemInputs('tfc:small_sheepskin_hide') .itemOutputs('tfc:wool') .duration(100) + .circuit(3) .EUt(4) // 1x Medium SheepSkin -> 1x Wool @@ -390,6 +417,7 @@ function registerTFCMachineRecipes(event) { .itemInputs('tfc:medium_sheepskin_hide') .itemOutputs('2x tfc:wool') .duration(100) + .circuit(3) .EUt(4) // 1x Large SheepSkin -> 1x Wool @@ -397,6 +425,7 @@ function registerTFCMachineRecipes(event) { .itemInputs('tfc:large_sheepskin_hide') .itemOutputs('3x tfc:wool') .duration(100) + .circuit(3) .EUt(4) // Wool Yarn @@ -440,4 +469,40 @@ function registerTFCMachineRecipes(event) { // Jute Fiber generateMixerRecipe(event, 'tfc:jute', Fluid.of('minecraft:water', 200), 'tfc:jute_fiber', null, [], 100, 4, 16, 'tfg:tfc/jute_fiber') -} \ No newline at end of file + + // Ceramic Recycling + event.recipes.gtceu.macerator('tfg:sherd_to_brick_dust') + .itemInputs('firmalife:pottery_sherd') + .itemOutputs('#forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:ceramic_molds') + .itemInputs('#tfc:fired_molds') + .itemOutputs('2x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:large_vessels') + .itemInputs('#tfc:fired_large_vessels') + .itemOutputs('5x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:casting_channel') + .itemInputs('tfcchannelcasting:channel') + .itemOutputs('1x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) + + event.recipes.gtceu.macerator('tfg:mold_table') + .itemInputs('tfcchannelcasting:mold_table') + .itemOutputs('5x #forge:dusts/brick') + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .duration(20) + .EUt(2) +} diff --git a/kubejs/server_scripts/tfc/recipes.materials.js b/kubejs/server_scripts/tfc/recipes.materials.js index ef4f82008..60d852406 100644 --- a/kubejs/server_scripts/tfc/recipes.materials.js +++ b/kubejs/server_scripts/tfc/recipes.materials.js @@ -2,7 +2,7 @@ function registerTFCMaterialsRecipes(event) { - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { let tfcProperty = material.getProperty(TFGPropertyKey.TFC_PROPERTY) if (tfcProperty == null) { diff --git a/kubejs/server_scripts/tfc/recipes.metals.js b/kubejs/server_scripts/tfc/recipes.metals.js index a8617193c..70d220efe 100644 --- a/kubejs/server_scripts/tfc/recipes.metals.js +++ b/kubejs/server_scripts/tfc/recipes.metals.js @@ -272,32 +272,7 @@ function registerTFCMetalsRecipes(event) { .tier(5) .id('tfc:anvil/blue_steel_ingot') - // Gears - event.recipes.tfc.anvil('gtceu:bronze_gear', '#forge:double_plates/bronze', ['punch_last', 'shrink_any', 'draw_any']) - .tier(2) - .id('tfc:anvil/bronze_gear') - event.recipes.tfc.anvil('gtceu:black_bronze_gear', '#forge:double_plates/black_bronze', ['punch_last', 'shrink_any', 'draw_any']) - .tier(2) - .id('tfc:anvil/black_bronze_gear') - event.recipes.tfc.anvil('gtceu:bismuth_bronze_gear', '#forge:double_plates/bismuth_bronze', ['punch_last', 'shrink_any', 'draw_any']) - .tier(2) - .id('tfc:anvil/bismuth_bronze_gear') - event.recipes.tfc.anvil('gtceu:wrought_iron_gear', '#forge:double_plates/wrought_iron', ['punch_last', 'shrink_any', 'draw_any']) - .tier(3) - .id('tfc:anvil/wrought_iron_gear') - event.recipes.tfc.anvil('gtceu:steel_gear', '#forge:double_plates/steel', ['punch_last', 'shrink_any', 'draw_any']) - .tier(4) - .id('tfc:anvil/steel_gear') - event.recipes.tfc.anvil('gtceu:black_steel_gear', '#forge:double_plates/black_steel', ['punch_last', 'shrink_any', 'draw_any']) - .tier(5) - .id('tfc:anvil/black_steel_gear') - event.recipes.tfc.anvil('gtceu:red_steel_gear', '#forge:double_plates/red_steel', ['punch_last', 'shrink_any', 'draw_any']) - .tier(6) - .id('tfc:anvil/red_steel_gear') - event.recipes.tfc.anvil('gtceu:blue_steel_gear', '#forge:double_plates/blue_steel', ['punch_last', 'shrink_any', 'draw_any']) - .tier(6) - .id('tfc:anvil/blue_steel_gear') - + // Small Gears event.recipes.tfc.anvil('gtceu:small_wrought_iron_gear', '#forge:ingots/wrought_iron', ['hit_last', 'shrink_second_last', 'draw_third_last']) .tier(3) .id('tfc:anvil/small_wrought_iron_gear') @@ -310,6 +285,12 @@ function registerTFCMetalsRecipes(event) { event.recipes.tfc.anvil('gtceu:small_bronze_gear', '#forge:ingots/bronze', ['hit_last', 'shrink_second_last', 'draw_third_last']) .tier(2) .id('tfc:anvil/small_bronze_gear') + event.recipes.tfc.anvil('gtceu:small_bismuth_bronze_gear', '#forge:ingots/bismuth_bronze', ['hit_last', 'shrink_second_last', 'draw_third_last']) + .tier(2) + .id('tfc:anvil/small_bismuth_bronze_gear') + event.recipes.tfc.anvil('gtceu:small_black_bronze_gear', '#forge:ingots/black_bronze', ['hit_last', 'shrink_second_last', 'draw_third_last']) + .tier(2) + .id('tfc:anvil/small_black_bronze_gear') // Cast iron -> Raw Iron Bloom event.recipes.tfc.bloomery('tfc:raw_iron_bloom', 'minecraft:charcoal', Fluid.of('gtceu:iron', 144), 15000) diff --git a/kubejs/server_scripts/tfc/recipes.stone.js b/kubejs/server_scripts/tfc/recipes.stone.js index b914b647e..8165b868f 100644 --- a/kubejs/server_scripts/tfc/recipes.stone.js +++ b/kubejs/server_scripts/tfc/recipes.stone.js @@ -9,10 +9,9 @@ function registerTFCStoneRecipes(event) { let smallStoneDust = ChemicalHelper.get(TagPrefix.dustSmall, stoneMaterial, 1) // ΠšΠΈΡ€ΠΏΠΈΡ‡ (ΠΏΡ€Π΅Π΄ΠΌΠ΅Ρ‚) - event.recipes.gtceu.assembler(`tfg:tfc/${stone}_loose_to_brick`) + event.recipes.gtceu.cutter(`tfg:tfc/${stone}_loose_to_brick`) .itemInputs(`tfc:rock/loose/${stone}`) .itemOutputs(`tfc:brick/${stone}`) - .circuit(1) .duration(40) .EUt(8) diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index a978d589d..c11772b96 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -4,19 +4,29 @@ * * @param {TagEvent.Item} event */ +//#region ItemTags const registerTFCItemTags = (event) => { // Π’Π΅Π³ΠΈ для соотвСтствия инструмСнтов TFC ΠΈ GT - - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { - if (material.hasProperty(PropertyKey.TOOL)) { - for (let [key, value] of Object.entries(global.GTCEU_TOOLTYPES_WHICH_HAS_TFC_DUPS)) { - var tool = ToolHelper.get(value, material) - if (!tool.isEmpty()) event.add(key, tool.getId()) + + event.add('tfc:swords', '#minecraft:swords') + event.add('tfc:pickaxes', '#minecraft:pickaxes') + event.add('tfc:axes', '#minecraft:axes') + event.add('tfc:shovels', '#minecraft:shovels') + event.add('tfc:hoes', '#minecraft:hoes') + event.add('tfc:hammers', '#forge:tools/hammers') + event.add('tfc:knives', '#forge:tools/knives') + event.add('tfc:saws', '#forge:tools/saws') + event.add('tfc:scythes', '#forge:tools/scythes') - event.add('tfc:usable_on_tool_rack', `#${key}`) - } - } - }) + event.add('tfc:usable_on_tool_rack', '#mincraft:swords') + event.add('tfc:usable_on_tool_rack', '#minecraft:pickaxes') + event.add('tfc:usable_on_tool_rack', '#minecraft:axes') + event.add('tfc:usable_on_tool_rack', '#minecraft:shovels') + event.add('tfc:usable_on_tool_rack', '#minecraft:hoes') + event.add('tfc:usable_on_tool_rack', '#forge:tools/hammers') + event.add('tfc:usable_on_tool_rack', '#forge:tools/knives') + event.add('tfc:usable_on_tool_rack', '#forge:tools/saws') + event.add('tfc:usable_on_tool_rack', '#forge:tools/scythes') event.add('tfc:usable_on_tool_rack', '#forge:tools/mining_hammers') event.add('tfc:usable_on_tool_rack', '#forge:tools/spades') @@ -29,12 +39,39 @@ const registerTFCItemTags = (event) => { event.add('tfc:usable_on_tool_rack', '#forge:tools/plungers') event.add('tfc:usable_on_tool_rack', '#forge:tools/mortars') event.add('tfc:usable_on_tool_rack', '#forge:tools/mallets') - event.add('tfc:usable_on_tool_rack', 'tfc:wool_cloth') event.add('tfc:usable_on_tool_rack', '#forge:tools/chainsaws') event.add('tfc:usable_on_tool_rack', '#forge:tools/buzzsaws') event.add('tfc:usable_on_tool_rack', '#forge:tools/drills') + event.add('tfc:usable_on_tool_rack', '#forge:tools/fishing_nets') + + event.add('tfc:usable_on_tool_rack', '#tfc:buckets') + + event.add('tfc:usable_on_tool_rack', 'buildinggadgets2:gadget_building') + event.add('tfc:usable_on_tool_rack', 'buildinggadgets2:gadget_exchanging') + event.add('tfc:usable_on_tool_rack', 'buildinggadgets2:gadget_copy_paste') + event.add('tfc:usable_on_tool_rack', 'buildinggadgets2:gadget_cut_paste') + event.add('tfc:usable_on_tool_rack', 'buildinggadgets2:gadget_destruction') + event.add('tfc:usable_on_tool_rack', 'create:super_glue') + event.add('tfc:usable_on_tool_rack', 'exposure:camera') + event.add('tfc:usable_on_tool_rack', 'measurements:tape_measure') + event.add('tfc:usable_on_tool_rack', '#chalk:chalks') + event.add('tfc:usable_on_tool_rack', 'chalk:chalk_box') + event.add('tfc:usable_on_tool_rack', 'computercraft:pocket_computer_normal') + event.add('tfc:usable_on_tool_rack', 'computercraft:pocket_computer_advanced') + event.add('tfc:usable_on_tool_rack', 'grapplemod:grapplinghook') + event.add('tfc:usable_on_tool_rack', 'grapplemod:launcheritem') + event.add('tfc:usable_on_tool_rack', 'ae2:color_applicator') + event.add('tfc:usable_on_tool_rack', 'ae2:matter_cannon') + event.add('tfc:usable_on_tool_rack', 'ae2:network_tool') + event.add('tfc:usable_on_tool_rack', 'ae2:wireless_terminal') + event.add('tfc:usable_on_tool_rack', 'ae2:wireless_crafting_terminal') + event.add('tfc:usable_on_tool_rack', 'waterflasks:leather_flask') + event.add('tfc:usable_on_tool_rack', 'waterflasks:iron_flask') + event.add('tfc:usable_on_tool_rack', 'waterflasks:red_steel_flask') + event.add('tfc:usable_on_tool_rack', 'tfc:wool_cloth') + // Π˜Π½Π³Ρ€Π΅Π΄ΠΈΠ΅Π½Ρ‚Ρ‹ для закваски event.add('tfg:ferments_to_rennet', 'tfc:food/soybean') event.add('tfg:ferments_to_rennet', 'firmalife:food/fig') @@ -43,7 +80,9 @@ const registerTFCItemTags = (event) => { // Для складывания event.add('tfc:pileable_ingots', '#forge:ingots') event.add('tfc:pileable_sheets', '#forge:plates') - + event.add('tfc:pileable_double_ingots', 'gtceu:tin_alloy_double_ingot') + event.add('tfc:pileable_double_ingots', 'gtceu:red_alloy_double_ingot') + // Π Ρ‹Π±Π° event.add('minecraft:fishes', 'tfc:food/calamari') event.add('minecraft:fishes', 'tfc:food/bluegill') @@ -259,7 +298,6 @@ const registerTFCItemTags = (event) => { event.add('forge:cloth', 'tfc:burlap_cloth') event.add('forge:cloth', 'tfc:wool_cloth') event.add('forge:cloth', 'tfc:silk_cloth') - event.add('forge:cloth', 'minecraft:phantom_membrane') // Piglin loved event.add('minecraft:piglin_loved', 'tfc:ore/small_native_gold') @@ -267,7 +305,9 @@ const registerTFCItemTags = (event) => { event.add('minecraft:piglin_loved', 'tfc:ore/normal_native_gold') event.add('minecraft:piglin_loved', 'tfc:ore/rich_native_gold') } +//#endregion +//#region BlockTags const registerTFCBlockTags = (event) => { // Π’Π΅Π³ΠΈ для ΠΊΠ°ΠΌΠ΅Π½Π½Ρ‹Ρ… ступСнСк Ρ‚Ρ„ΠΊ global.TFC_STONE_TYPES.forEach(stoneTypeName => { @@ -376,8 +416,16 @@ const registerTFCBlockTags = (event) => { event.add('minecraft:frogs_spawnable_on', 'tfc:rock/raw/gabbro') //#endregion + + //Allows any block with the word "brick" in its id to be used as bloomery and forge insulation. + //Add blacklisted words to the const with | between. + const brick_blacklist = ('drying|slab|stairs|wall|additionalplacements'); + event.add('tfc:bloomery_insulation', `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`); + event.add('tfc:forge_insulation', `/^(?=.*brick)(?!.*(${brick_blacklist})).*/`); } +//#endregion +//#region FluidTags const registerTFCFluidTags = (event) => { // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ TFC ΠΌΠ΅Ρ‚Π°Π»Π»ΠΎΠ² ΠΈΠ· Π²ΠΎΠ·ΠΌΠΎΠΆΠ½Ρ‹Ρ… Π² Ρ„ΠΎΡ€ΠΌΠ΅ слитка event.remove('tfc:usable_in_ingot_mold', 'tfc:metal/bismuth') @@ -480,12 +528,16 @@ const registerTFCFluidTags = (event) => { event.add('c:hidden_from_recipe_viewers', 'tfc:metal/high_carbon_red_steel') event.add('c:hidden_from_recipe_viewers', 'tfc:metal/high_carbon_blue_steel') } +//#endregion +//#region BiomeTags const registerTFCBiomeTags = (event) => { event.add('tfc:kaolin_clay_spawns_in', 'tfc:rolling_hills') } +//#endregion +//#region PlacedFeatures const registerTFCPlacedFeatures = (event) => { // Π£Π΄Π°Π»Π΅Π½ΠΈΠ΅ @@ -561,3 +613,4 @@ const registerTFCPlacedFeatures = (event) => { event.add('tfc:in_biome/underground_decoration', 'tfg:glow_lichen') event.add('tfc:in_biome/underground_decoration', 'tfg:earth/sulfur_patch') } +//#endregion diff --git a/kubejs/server_scripts/tfg/events.js b/kubejs/server_scripts/tfg/events.js index 98eccb9d0..064d12767 100644 --- a/kubejs/server_scripts/tfg/events.js +++ b/kubejs/server_scripts/tfg/events.js @@ -1,39 +1,39 @@ +//#region Medicine -//pills & tablets + //Pills & Tablets + const pill_event = [ + 'haste', + 'luck', + 'night_vision', + 'poison', + 'regeneration', + 'slowness', + 'speed', + 'water_breathing', + 'weakness', + ]; -const pill_event = [ - 'haste', - 'luck', - 'night_vision', - 'poison', - 'regeneration', - 'slowness', - 'speed', - 'water_breathing', - 'weakness', -]; + pill_event.forEach(pill_event => { -pill_event.forEach(pill_event => { + ItemEvents.rightClicked(event => { + const {item,server,player,player:{x,y,z,username}} = event + if (item.id != `tfg:${pill_event}_pill`) return + item.count-- + player.addItemCooldown(item, 100) + player.runCommandSilent(`effect give ${username} minecraft:${pill_event} 480 0 true`) + server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${username} ${x} ${y} ${z} 10 1.5 1`) + }); - ItemEvents.rightClicked(event => { - const {item,server,player,player:{x,y,z,username}} = event - if (item.id != `tfg:${pill_event}_pill`) return - item.count-- - player.addItemCooldown(item, 100) - player.runCommandSilent(`effect give ${username} minecraft:${pill_event} 480 0 true`) - server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${username} ${x} ${y} ${z} 10 1.5 1`) + ItemEvents.rightClicked(event => { + const {item,server,player,player:{x,y,z,username}} = event + if (item.id != `tfg:${pill_event}_tablet`) return + item.count-- + player.addItemCooldown(item, 100) + player.runCommandSilent(`effect give ${username} minecraft:${pill_event} 1800 0 true`) + server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${username} ${x} ${y} ${z} 10 1.5 1`) + }); }); - ItemEvents.rightClicked(event => { - const {item,server,player,player:{x,y,z,username}} = event - if (item.id != `tfg:${pill_event}_tablet`) return - item.count-- - player.addItemCooldown(item, 100) - player.runCommandSilent(`effect give ${username} minecraft:${pill_event} 1800 0 true`) - server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${username} ${x} ${y} ${z} 10 1.5 1`) - }); -}); - ItemEvents.rightClicked(event => { const {item,server,player,player:{x,y,z,username}} = event if (item.id != `tfg:antipoison_pill`) return @@ -62,26 +62,25 @@ pill_event.forEach(pill_event => { server.runCommandSilent(`playsound minecraft:item.honey_bottle.drink player ${username} ${x} ${y} ${z} 10 1.5 1`) }); -//salvos + //salvos + const salvo_event = [ + 'fire_resistance', + 'invisibility', + 'luck', + 'resistance', + ]; -const salvo_event = [ - 'fire_resistance', - 'invisibility', - 'luck', - 'resistance', -]; + salvo_event.forEach(salvo_event => { -salvo_event.forEach(salvo_event => { - - ItemEvents.rightClicked(event => { - const {item,server,player,player:{x,y,z,username}} = event - if (item.id != `tfg:${salvo_event}_salvo`) return - item.count-- - player.addItemCooldown(item, 100) - player.runCommandSilent(`effect give ${username} minecraft:${salvo_event} 480 0 true`) - server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${username} ${x} ${y} ${z} 10 2 1`) + ItemEvents.rightClicked(event => { + const {item,server,player,player:{x,y,z,username}} = event + if (item.id != `tfg:${salvo_event}_salvo`) return + item.count-- + player.addItemCooldown(item, 100) + player.runCommandSilent(`effect give ${username} minecraft:${salvo_event} 480 0 true`) + server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${username} ${x} ${y} ${z} 10 2 1`) + }); }); -}); ItemEvents.rightClicked(event => { const {item,server,player,player:{x,y,z,username}} = event @@ -101,6 +100,8 @@ ItemEvents.rightClicked(event => { server.runCommandSilent(`playsound minecraft:item.glow_ink_sac.use player ${username} ${x} ${y} ${z} 10 2 1`) }); +//#endregion + // Vase Sounds global.MINECRAFT_DYE_NAMES.forEach(color => { BlockEvents.rightClicked(event => { @@ -110,6 +111,7 @@ global.MINECRAFT_DYE_NAMES.forEach(color => { }}) }); + BlockEvents.rightClicked(event => { const {block,server,player,player:{x,y,z,username}} = event if (block.id != 'tfg:decorative_vase') {return}{ @@ -117,7 +119,7 @@ BlockEvents.rightClicked(event => { }}); /** - * + * * @param {Internal.Player} player * @returns {Internal.CompoundTag} */ @@ -128,4 +130,87 @@ function getTFGPersistentDataRoot(player) player.persistentData.put("tfg:custom_data", {}); } return player.persistentData.getCompound("tfg:custom_data") -} \ No newline at end of file +} +//#endregion + +//#region Fishing Net + const fish = [ + 'cod', + 'crappie', + 'jellyfish', + 'lake_trout', + 'largemouth_bass', + 'rainbow_trout', + 'salmon', + 'smallmouth_bass', + 'tropical_fish', + 'bluegill' + ]; + + const shellfish = [ + 'lobster', + 'isopod', + 'crayfish' + ]; + + //Event detects if fish is right clicked with fishing net and then teleports the mob into the void, plays some actions and gives the player the proper item. + fish.forEach(fish => { + ItemEvents.entityInteracted('#forge:tools/fishing_nets', event => { + const {item, player, server, target} = event; + + if (target.type != `tfc:${fish}`) return + server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) + server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) + server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) + event.player.give(`tfc:food/${fish}`) + player.swing() + if (player.isCreative() == false){ + item.damageValue++ + if (item.damageValue >= item.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) + item.count-- + } + } + }) + }) + + //Shellfish Exception + shellfish.forEach(shellfish => { + ItemEvents.entityInteracted('#forge:tools/fishing_nets', event => { + const {item, player, server, target} = event; + + if (target.type != `tfc:${shellfish}`) return + server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) + server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) + server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) + event.player.give('tfc:food/shellfish') + player.swing() + if (player.isCreative() == false){ + item.damageValue++ + if (item.damageValue >= item.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) + item.count-- + } + } + }) + }) + + //Pufferfish Exception + ItemEvents.entityInteracted('#forge:tools/fishing_nets', event => { + const {item, player, server, target} = event; + + if (target.type != 'tfc:pufferfish') return + server.runCommandSilent(`particle minecraft:bubble_pop ${target.x} ${target.y} ${target.z} 0.5 0.5 0.5 0.00001 10`) + server.runCommandSilent(`playsound minecraft:entity.player.splash player ${player.username} ${target.x} ${target.y} ${target.z} 2 2 1`) + server.runCommandSilent(`tp ${target.uuid} ${target.x} ${target.y - 382} ${target.z}`) + event.player.give('minecraft:pufferfish') + player.swing() + if (player.isCreative() == false){ + item.damageValue++ + if (item.damageValue >= item.maxDamage) { + server.runCommandSilent(`playsound minecraft:item.shield.break player ${player.username} ${player.x} ${player.y} ${player.z} 1 1 1`) + item.count-- + } + } + }) +//#endregion \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/json_tool.armor_trim.js b/kubejs/server_scripts/tfg/json_tool.armor_trim.js new file mode 100644 index 000000000..a25985d26 --- /dev/null +++ b/kubejs/server_scripts/tfg/json_tool.armor_trim.js @@ -0,0 +1,209 @@ + +//priority: 0 + +//#region Assign materials +////////////////////////////// +////////////////////////////// +//Assign a new material here with the name of the material, the hex color for the name display, the item id that is used during smithing, and an index number that should be !!!unique!!! +const materials = [ + //Gems + {materialName: 'almandine_tfc', nameColor: '#7b1112', itemName: 'gtceu:exquisite_almandine_gem', indexNumber: 0.11, lang_en_us: 'Almandine'}, + {materialName: 'andradite_tfc', nameColor: '#c29d1e', itemName: 'gtceu:exquisite_andradite_gem', indexNumber: 0.12, lang_en_us: 'Andradite'}, + {materialName: 'blue_topaz_tfc', nameColor: '#a7c1c6', itemName: 'gtceu:exquisite_blue_topaz_gem', indexNumber: 0.13, lang_en_us: 'Blue Topaz'}, + {materialName: 'cinnabar_tfc', nameColor: '#c2274a', itemName: 'gtceu:exquisite_cinnabar_gem', indexNumber: 0.14, lang_en_us: 'Cinnabar'}, + {materialName: 'coal_tfc', nameColor: '#2b2f32', itemName: 'gtceu:exquisite_coal_gem', indexNumber: 0.15, lang_en_us: 'Coal'}, + {materialName: 'diamond_tfc', nameColor: '#98c2c6', itemName: 'gtceu:exquisite_diamond_gem', indexNumber: 0.16, lang_en_us: 'Diamond'}, + {materialName: 'emerald_tfc', nameColor: '#11c254', itemName: 'gtceu:exquisite_emerald_gem', indexNumber: 0.17, lang_en_us: 'Emerald'}, + {materialName: 'green_sapphire_tfc', nameColor: '#75af89', itemName: 'gtceu:exquisite_green_sapphire_gem', indexNumber: 0.18, lang_en_us: 'Green Sapphire'}, + {materialName: 'grossular_tfc', nameColor: '#c28b5c', itemName: 'gtceu:exquisite_grossular_gem', indexNumber: 0.19, lang_en_us: 'Grossular'}, + {materialName: 'rutile_tfc', nameColor: '#681c05', itemName: 'gtceu:exquisite_rutile_gem', indexNumber: 0.191, lang_en_us: 'Rutile'}, + {materialName: 'lazurite_tfc', nameColor: '#1e29bb', itemName: 'gtceu:exquisite_lazurite_gem', indexNumber: 0.192, lang_en_us: 'Lazurite'}, + {materialName: 'pyrope_tfc', nameColor: '#b11344', itemName: 'gtceu:exquisite_pyrope_gem', indexNumber: 0.193, lang_en_us: 'Pyrope'}, + {materialName: 'rock_salt_tfc', nameColor: '#c2b2af', itemName: 'gtceu:exquisite_rock_salt_gem', indexNumber: 0.194, lang_en_us: 'Rock Salt'}, + {materialName: 'ruby_tfc', nameColor: '#a41b0c', itemName: 'gtceu:exquisite_ruby_gem', indexNumber: 0.195, lang_en_us: 'Ruby'}, + {materialName: 'salt_tfc', nameColor: '#bebec2', itemName: 'gtceu:exquisite_salt_gem', indexNumber: 0.196, lang_en_us: 'salt'}, + {materialName: 'sapphire_tfc', nameColor: '#2628b0', itemName: 'gtceu:exquisite_sapphire_gem', indexNumber: 0.197, lang_en_us: 'Sapphire'}, + {materialName: 'sodalite_tfc', nameColor: '#2e40c6', itemName: 'gtceu:exquisite_sodalite_gem', indexNumber: 0.198, lang_en_us: 'Sodalite'}, + {materialName: 'coke_tfc', nameColor: '#424847', itemName: 'gtceu:exquisite_coke_gem', indexNumber: 0.199, lang_en_us: 'Coke'}, + {materialName: 'spessartine_tfc', nameColor: '#c28017', itemName: 'gtceu:exquisite_spessartine_gem', indexNumber: 0.181, lang_en_us: 'Spessartine'}, + {materialName: 'topaz_tfc', nameColor: '#b1a42d', itemName: 'gtceu:exquisite_topaz_gem', indexNumber: 0.182, lang_en_us: 'Topaz'}, + {materialName: 'uvarovite_tfc', nameColor: '#22b43b', itemName: 'gtceu:exquisite_uvarovite_gem', indexNumber: 0.183, lang_en_us: 'Uvarovite'}, + {materialName: 'nether_quartz_tfc', nameColor: '#bdb6b0', itemName: 'gtceu:exquisite_nether_quartz_gem', indexNumber: 0.184, lang_en_us: 'Nether Quartz'}, + {materialName: 'certus_quartz_tfc', nameColor: '#8ca4c4', itemName: 'gtceu:exquisite_certus_quartz_gem', indexNumber: 0.185, lang_en_us: 'Certus Quartz'}, + {materialName: 'quartzite_tfc', nameColor: '#b8bab8', itemName: 'gtceu:exquisite_quartzite_gem', indexNumber: 0.186, lang_en_us: 'Quartzite'}, + {materialName: 'realgar_tfc', nameColor: '#c22e28', itemName: 'gtceu:exquisite_realgar_gem', indexNumber: 0.187, lang_en_us: 'Realgar'}, + {materialName: 'malachite_tfc', nameColor: '#00b789', itemName: 'gtceu:exquisite_malachite_gem', indexNumber: 0.188, lang_en_us: 'Malachite'}, + {materialName: 'glass_tfc', nameColor: '#c2c2c6', itemName: 'gtceu:exquisite_glass_gem', indexNumber: 0.189, lang_en_us: 'Glass'}, + {materialName: 'olivine_tfc', nameColor: '#7fad03', itemName: 'gtceu:exquisite_olivine_gem', indexNumber: 0.171, lang_en_us: 'Olivine'}, + {materialName: 'opal_tfc', nameColor: '#bdadb6', itemName: 'gtceu:exquisite_opal_gem', indexNumber: 0.172, lang_en_us: 'Opal'}, + {materialName: 'amethyst_tfc', nameColor: '#9b78ba', itemName: 'gtceu:exquisite_amethyst_gem', indexNumber: 0.173, lang_en_us: 'Amethyst'}, + // {materialName: 'echo_shard_tfc', nameColor: '#002123', itemName: 'gtceu:exquisite_echo_shard_gem', indexNumber: 0.174, lang_en_us: 'Echo Shard'}, // disabled + {materialName: 'lapis_tfc', nameColor: '#6581c6', itemName: 'gtceu:exquisite_lapis_gem', indexNumber: 0.175, lang_en_us: 'Lapis'}, + {materialName: 'apatite_tfc', nameColor: '#059cbb', itemName: 'gtceu:exquisite_apatite_gem', indexNumber: 0.176, lang_en_us: 'Apatite'}, + {materialName: 'red_garnet_tfc', nameColor: '#710910', itemName: 'gtceu:exquisite_red_garnet_gem', indexNumber: 0.177, lang_en_us: 'Red Garnet'}, + {materialName: 'yellow_garnet_tfc', nameColor: '#bbc207', itemName: 'gtceu:exquisite_yellow_garnet_gem', indexNumber: 0.178, lang_en_us: 'Yellow Garnet'}, + {materialName: 'monazite_tfc', nameColor: '#9eb576', itemName: 'gtceu:exquisite_monazite_gem', indexNumber: 0.179, lang_en_us: 'Monazite'}, + {materialName: 'rose_quartz_tfc', nameColor: '#ba3458', itemName: 'gtceu:exquisite_rose_quartz_gem', indexNumber: 0.161, lang_en_us: 'Rose Quartz'}, + {materialName: 'fluix_tfc', nameColor: '#53458d', itemName: 'tfg:exquisite_fluix_gem', indexNumber: 0.162, lang_en_us: 'Fluix'}, + //Metals + {materialName: 'silver_tfc', nameColor: '#d8d8f4', itemName: 'vintageimprovements:silver_sheet', indexNumber: 0.162, lang_en_us: 'Silver'}, + {materialName: 'sterling_silver_tfc', nameColor: '#eae5d3', itemName: 'gtceu:sterling_silver_plate', indexNumber: 0.163, lang_en_us: 'Sterling Silver'}, + {materialName: 'gold_tfc', nameColor: '#ede65b', itemName: 'create:golden_sheet', indexNumber: 0.164, lang_en_us: 'Gold'}, + {materialName: 'rose_gold_tfc', nameColor: '#eddedb', itemName: 'vintageimprovements:rose_gold_sheet', indexNumber: 0.165, lang_en_us: 'Rose Gold'}, + {materialName: 'nickel_tfc', nameColor: '#bfd1ea', itemName: 'vintageimprovements:nickel_sheet', indexNumber: 0.166, lang_en_us: 'Nickel'}, + {materialName: 'platinum_tfc', nameColor: '#d8cea1', itemName: 'vintageimprovements:platinum_sheet', indexNumber: 0.167, lang_en_us: 'Platinum'}, + {materialName: 'titanium_tfc', nameColor: '#c496d8', itemName: 'gtceu:titanium_plate', indexNumber: 0.168, lang_en_us: 'Titanium'}, + {materialName: 'bismuth_tfc', nameColor: '#607c79', itemName: 'gtceu:bismuth_plate', indexNumber: 0.169, lang_en_us: 'Bismuth'}, + {materialName: 'neutronium_tfc', nameColor: '#d7d7db', itemName: 'gtceu:neutronium_plate', indexNumber: 0.151, lang_en_us: 'Neutronium'}, + //Other + {materialName: 'pyrite_tfc', nameColor: '#a75e10', itemName: 'gtceu:rich_raw_pyrite', indexNumber: 0.152, lang_en_us: 'Pyrite'}, + {materialName: 'redx_tfc', nameColor: '#a06156', itemName: 'morered:red_alloy_wire', indexNumber: 0.153, lang_en_us: 'RedX'} +] +///////////////////////////// +///////////////////////////// + +// #region Tags +// Assigns trim_materials tag to items registered above +function registerTFGTrimTags(event) { + event.removeAll('minecraft:trim_materials') + materials.forEach(material => { + event.add('minecraft:trim_materials', material.itemName) + }) +} +// #endregion + +//#region Trim Item Atlas +//Automatically creates armor_trims.json file +const trimfilePath = 'kubejs/assets/minecraft/atlases/armor_trims.json'; +let trimdata = JsonIO.read(trimfilePath) || {}; +trimdata["sources"] = trimdata["sources"] || []; + +let trimsource = trimdata["sources"].find(s => s.type === "paletted_permutations"); + +if (!trimsource) { + trimsource = { + 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: {} + }; + trimdata["sources"].push(trimsource); +} + +trimsource.permutations = trimsource.permutations || {}; + +materials.forEach(material => { + trimsource.permutations[material.materialName] = `tfc:color_palettes/trims/${material.materialName}`; +}); +JsonIO.write(trimfilePath, trimdata); +//#endregion + +//#region Trim Block Atlas +//Automatically creates blocks.json file +const blockfilePath = 'kubejs/assets/minecraft/atlases/blocks.json'; +let blockdata = JsonIO.read(blockfilePath) || {}; +blockdata["sources"] = blockdata["sources"] || []; + +let blocksource = blockdata["sources"].find(s => s.type === "paletted_permutations"); + +if (!blocksource) { + blocksource = { + 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: {} + }; + blockdata["sources"].push(blocksource); +} + +blocksource.permutations = blocksource.permutations || {}; + +materials.forEach(material => { + blocksource.permutations[material.materialName] = `tfc:color_palettes/trims/${material.materialName}`; +}); +JsonIO.write(blockfilePath, blockdata); +//#endregion + +//#region Trim Material Data +//Automatically creates material.json files +materials.forEach(material => { + const trimfilepaths = [ + `kubejs/data/minecraft/trim_material/${material.materialName}.json`, + `kubejs/data/tfc/trim_material/${material.materialName}.json` + ]; + + const newtrimdata = { + asset_name: material.materialName, + description: { + color: material.nameColor, + translate: `trim_material.tfc.${material.materialName}` + }, + ingredient: material.itemName, + item_model_index: material.indexNumber + }; + + trimfilepaths.forEach(trimfilepaths => { + const existingData = JsonIO.read(trimfilepaths); + + // Only write if the file is missing or contents are different + if (JSON.stringify(existingData) !== JSON.stringify(newtrimdata)) { + JsonIO.write(trimfilepaths, newtrimdata); + } + }); + }); +//#endregion + +//#region Lang +//en_us +//reads the existing file, inserts new key-value pair, writes info back to the file +const langfilePath = 'kubejs/assets/tfc/lang/en_us.json'; +let langdata = JsonIO.read(langfilePath) || {}; + +materials.forEach(material => { + langdata[`trim_material.tfc.${material.materialName}`] = material.lang_en_us; +}); + +JsonIO.write(langfilePath, langdata); +//#endregion diff --git a/kubejs/server_scripts/tfg/recipes.fishing_nets.js b/kubejs/server_scripts/tfg/recipes.fishing_nets.js new file mode 100644 index 000000000..818b070f5 --- /dev/null +++ b/kubejs/server_scripts/tfg/recipes.fishing_nets.js @@ -0,0 +1,236 @@ +// priority: 0 + +function registerTFGFishingNetsRecipes(event) { + + //wood + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/wood', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Wood, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), + C: 'tfc:jute_net', + D: 'tfc:glue', + E: ChemicalHelper.get(TagPrefix.bolt, GTMaterials.Wood, 1), + F: '#forge:tools/knives', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/wood')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/wood') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Wood, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.Wood, 1), + '1x tfc:glue', + ChemicalHelper.get(TagPrefix.bolt, GTMaterials.Wood, 1), + '1x tfc:jute_net' + ) + .itemOutputs('tfg:fishing_net/wood') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + //Brass + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/brass', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Brass, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Brass, 1), + C: '#forge:cloth', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.Brass, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.Brass, 1), + F: '#forge:tools/wire_cutters', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/brass')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/brass') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Brass, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.Brass, 1), + ChemicalHelper.get(TagPrefix.ring, GTMaterials.Brass, 1), + ChemicalHelper.get(TagPrefix.screw, GTMaterials.Brass, 1), + '1x #forge:cloth' + ) + .itemOutputs('tfg:fishing_net/brass') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + //Rose Gold + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/rose_gold', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.RoseGold, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.RoseGold, 1), + C: '#forge:cloth', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.RoseGold, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.RoseGold, 1), + F: '#forge:tools/wire_cutters', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/rose_gold')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/rose_gold') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.RoseGold, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.RoseGold, 1), + ChemicalHelper.get(TagPrefix.ring, GTMaterials.RoseGold, 1), + ChemicalHelper.get(TagPrefix.screw, GTMaterials.RoseGold, 1), + '1x #forge:cloth' + ) + .itemOutputs('tfg:fishing_net/rose_gold') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + //Sterling Silver + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/sterling_silver', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.SterlingSilver, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.SterlingSilver, 1), + C: '#forge:cloth', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.SterlingSilver, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.SterlingSilver, 1), + F: '#forge:tools/wire_cutters', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/sterling_silver')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/sterling_silver') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.SterlingSilver, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.SterlingSilver, 1), + ChemicalHelper.get(TagPrefix.ring, GTMaterials.SterlingSilver, 1), + ChemicalHelper.get(TagPrefix.screw, GTMaterials.SterlingSilver, 1), + '1x #forge:cloth' + ) + .itemOutputs('tfg:fishing_net/sterling_silver') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.ULV]) + + //Invar + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/invar', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Invar, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Invar, 1), + C: '#forge:cloth', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.Invar, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.Invar, 1), + F: '#forge:tools/wire_cutters', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/invar')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/invar') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Invar, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.Invar, 1), + ChemicalHelper.get(TagPrefix.ring, GTMaterials.Invar, 1), + ChemicalHelper.get(TagPrefix.screw, GTMaterials.Invar, 1), + '1x #forge:cloth' + ) + .itemOutputs('tfg:fishing_net/invar') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.LV]) + + //Cupronickel + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/cupronickel', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Cupronickel, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Cupronickel, 1), + C: '#forge:cloth', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.Cupronickel, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.Cupronickel, 1), + F: '#forge:tools/wire_cutters', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/cupronickel')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/cupronickel') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Cupronickel, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.Cupronickel, 1), + ChemicalHelper.get(TagPrefix.ring, GTMaterials.Cupronickel, 1), + ChemicalHelper.get(TagPrefix.screw, GTMaterials.Cupronickel, 1), + '1x #forge:cloth' + ) + .itemOutputs('tfg:fishing_net/cupronickel') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.LV]) + + //Tin Alloy + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/tin_alloy', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TinAlloy, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.TinAlloy, 1), + C: '#forge:cloth', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.TinAlloy, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.TinAlloy, 1), + F: '#forge:tools/wire_cutters', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/tin_alloy')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/tin_alloy') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.TinAlloy, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.TinAlloy, 1), + ChemicalHelper.get(TagPrefix.ring, GTMaterials.TinAlloy, 1), + ChemicalHelper.get(TagPrefix.screw, GTMaterials.TinAlloy, 1), + '1x #forge:cloth' + ) + .itemOutputs('tfg:fishing_net/tin_alloy') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.LV]) + + //Magnalium + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('1x tfg:fishing_net/magnalium', [ + ' DC', + 'GBE', + 'AF ' + ],{ + A: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Magnalium, 1), + B: ChemicalHelper.get(TagPrefix.rod, GTMaterials.Magnalium, 1), + C: 'tfg:polycaprolactam_fabric', + D: ChemicalHelper.get(TagPrefix.ring, GTMaterials.Magnalium, 1), + E: ChemicalHelper.get(TagPrefix.screw, GTMaterials.Magnalium, 1), + F: '#forge:tools/wire_cutters', + G: '#tfc:sewing_needles' + }).id('tfg:shaped/fishing_net/magnalium')) + + event.recipes.gtceu.assembler('tfg:assembler/fishing_net/magnalium') + .itemInputs( + ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Magnalium, 1), + ChemicalHelper.get(TagPrefix.rod, GTMaterials.Magnalium, 1), + ChemicalHelper.get(TagPrefix.ring, GTMaterials.Magnalium, 1), + ChemicalHelper.get(TagPrefix.screw, GTMaterials.Magnalium, 1), + '1x tfg:polycaprolactam_fabric' + ) + .itemOutputs('tfg:fishing_net/magnalium') + .duration(100) + .circuit(4) + .EUt(GTValues.VA[GTValues.LV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.js b/kubejs/server_scripts/tfg/recipes.js index 2740895a7..eec0f9d35 100644 --- a/kubejs/server_scripts/tfg/recipes.js +++ b/kubejs/server_scripts/tfg/recipes.js @@ -12,6 +12,6 @@ const registerTFGRecipes = (event) => { registerTFGMedicineRecipes(event) registerTFGMiscellaneousRecipes(event) registerTFGSupportRecipes(event) - + registerTFGFishingNetsRecipes(event) registerTFGConvertingRecipes(event) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.medicine.js b/kubejs/server_scripts/tfg/recipes.medicine.js index d30597abe..f2bae6045 100644 --- a/kubejs/server_scripts/tfg/recipes.medicine.js +++ b/kubejs/server_scripts/tfg/recipes.medicine.js @@ -546,4 +546,12 @@ function registerTFGMedicineRecipes(event) { //#endregion + //#region Paracetamol + + event.recipes.firmalife.mixing_bowl() + .ingredients(['tfg:regeneration_pill', 'tfg:weakness_pill', 'tfg:antipoison_pill', 'tfg:slowness_pill'], Fluid.of('tfc:vinegar', 250)) + .outputItem('4x gtceu:paracetamol_pill') + .id(`tfg:mixing_bowl/paracetamol`) + + //#endregion } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.miscellaneous.js b/kubejs/server_scripts/tfg/recipes.miscellaneous.js index d8655c616..e2a8470a8 100644 --- a/kubejs/server_scripts/tfg/recipes.miscellaneous.js +++ b/kubejs/server_scripts/tfg/recipes.miscellaneous.js @@ -6,6 +6,8 @@ */ function registerTFGMiscellaneousRecipes(event) { + event.remove({ id: 'gtceu:wiremill/string_from_polycaprolactam'}) + //tfc:moss event.replaceInput({}, 'minecraft:vine', '#tfc:moss') @@ -128,9 +130,9 @@ function registerTFGMiscellaneousRecipes(event) { //Scaffolding Frame event.shaped('tfg:scaffolding_frame', [ - 'AAA', + ' A ', 'ABA', - 'AAA' + ' A ' ], { A: '#forge:rods/wood', @@ -138,7 +140,7 @@ function registerTFGMiscellaneousRecipes(event) { }).id('tfg:shaped/scaffolding_frame'); event.recipes.gtceu.assembler('tfg:assembler/scaffolding_frame') - .itemInputs('8x #forge:rods/wood', '#forge:cloth') + .itemInputs('4x #forge:rods/wood', '#forge:cloth') .itemOutputs('tfg:scaffolding_frame') .duration(10) .EUt(GTValues.VA[GTValues.ULV]); @@ -161,15 +163,18 @@ function registerTFGMiscellaneousRecipes(event) { .EUt(GTValues.VA[GTValues.ULV]); //Airship Balloon - event.shaped('tfg:airship_balloon', [ - 'ABA', - 'BCB', - 'ABA' - ], { - A: '#forge:string', - B: 'immersive_aircraft:sail', - C: 'tfc:bone_needle' - }).id('tfg:shaped/airship_balloon') + event.recipes.tfc.damage_inputs_shaped_crafting( + event.shaped('tfg:airship_balloon', [ + 'ABA', + 'BCB', + 'ABA' + ], { + A: '#forge:string', + B: 'immersive_aircraft:sail', + C: 'tfc:bone_needle' + }) + ).id('tfg:shaped/airship_balloon') + event.recipes.gtceu.assembler('tfg:assembler/airship_balloon') .itemInputs('4x immersive_aircraft:sail', '4x #forge:string') .itemOutputs('tfg:airship_balloon') @@ -313,4 +318,75 @@ function registerTFGMiscellaneousRecipes(event) { event.shapeless('8x minecraft:snow', ['minecraft:snow_block', '#forge:tools/saws']) .id('tfg:shapeless/snow') + + //Cloth & String + event.recipes.gtceu.wiremill('tfg:wiremill/phantom_thread') + .itemInputs('1x minecraft:phantom_membrane') + .itemOutputs('16x tfg:phantom_thread') + .duration(100) + .circuit(0) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.wiremill('tfg:wiremill/polycaprolactam_string') + .itemInputs(ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Polycaprolactam, 1)) + .itemOutputs('32x tfg:polycaprolactam_string') + .duration(100) + .circuit(0) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler('tfg:assembler/phantom_silk') + .itemInputs('16x tfg:phantom_thread') + .itemOutputs('1x tfg:phantom_silk') + .duration(100) + .circuit(0) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.assembler('tfg:assembler/polycaprolactam_fabric') + .itemInputs('16x tfg:polycaprolactam_string') + .itemOutputs('1x tfg:polycaprolactam_fabric') + .duration(100) + .circuit(0) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.chemical_bath('tfg:chemical_bath/bleaching/polycaprolactam_string') + .itemInputs('tfg:polycaprolactam_string') + .inputFluids(Fluid.of('gtceu:chlorine', 16)) + .itemOutputs('minecraft:string') + .duration(80) + .EUt(GTValues.VA[GTValues.ULV]) + .category(GTRecipeCategories.CHEM_DYES) + + event.recipes.tfc.loom( + '1x tfg:phantom_silk', + '16x tfg:phantom_thread', + 8, + 'tfg:block/phantom_silk_block' + ) + + event.recipes.tfc.loom( + '1x tfg:polycaprolactam_fabric', + '16x tfg:polycaprolactam_string', + 8, + 'tfg:block/polycaprolactam_fabric_block' + ) + + event.recipes.tfc.damage_inputs_shapeless_crafting( + event.shapeless('16x tfg:phantom_thread', [ + 'minecraft:phantom_membrane', + 'tfc:spindle' + ]).id('tfg:shapeless/phantom_thread')) + + // Universal Circuit + global.UNIVERSAL_CIRCUIT_TIERS.forEach(tier => { + event.shapeless(Item.of(`tfg:${tier}_universal_circuit`, 1), [Ingredient.of([`#gtceu:circuits/${tier}`]).subtract([`tfg:${tier}_universal_circuit`])] + ).id(`universal_circuits_${tier}`); + }); + + // Air collector (move this to space stuff later) + event.recipes.gtceu.gas_collector('nether') + .circuit(2) + .outputFluids(Fluid.of('gtceu:air', 10000)) + .dimension('minecraft:the_nether') + .duration(200) + .EUt(16) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.recycling.js b/kubejs/server_scripts/tfg/recipes.recycling.js new file mode 100644 index 000000000..bb34d453d --- /dev/null +++ b/kubejs/server_scripts/tfg/recipes.recycling.js @@ -0,0 +1,122 @@ +// priority: 0 + +function registerGTCEURecyclingRecipes(event) { + + // Tantalum Capacitor + event.recipes.gtceu.macerator('gtceu:macerator/recycling/tantulum_capacitor') + .itemInputs('gtceu:tantalum_capacitor') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Tantalum, 1), + ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Polyethylene, 1) + ) + .duration(GTMaterials.Tantalum.getMass() * 1) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('gtceu:arc_furnace/recycling/tantulum_capacitor') + .itemInputs('gtceu:tantalum_capacitor') + .itemOutputs( + ChemicalHelper.get(TagPrefix.nugget, GTMaterials.Tantalum, 1), + ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Ash, 1) + ) + .duration(GTMaterials.Tantalum.getMass() * 1) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) + + // Capacitor + event.recipes.gtceu.macerator('gtceu:macerator/recycling/capacitor') + .itemInputs('gtceu:capacitor') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Polyethylene, 1) + ) + .duration(GTMaterials.Polyethylene.getMass() * 1) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('gtceu:arc_furnace/recycling/capacitor') + .itemInputs('gtceu:capacitor') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dustTiny, GTMaterials.Ash, 1) + ) + .duration(GTMaterials.Ash.getMass() * 1) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) + + // Empty Tier I Capacitor + event.recipes.gtceu.macerator('gtceu:macerator/recycling/empty_tier_i_battery') + .itemInputs('gtceu:empty_tier_i_battery') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Ultimet, 6) + ) + .duration(GTMaterials.Ultimet.getMass() * 6) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('gtceu:arc_furnace/recycling/empty_tier_i_battery') + .itemInputs('gtceu:empty_tier_i_battery') + .itemOutputs( + ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Ultimet, 6) + ) + .duration(GTMaterials.Ultimet.getMass() * 6) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.extractor('gtceu:extractor/recycling/empty_tier_i_battery') + .itemInputs('gtceu:empty_tier_i_battery') + .outputFluids(Fluid.of('gtceu:ultimet', 864)) + .duration(GTMaterials.Ultimet.getMass() * 6) + .category(GTRecipeCategories.EXTRACTOR_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) + + // Empty Tier II Capacitor + event.recipes.gtceu.macerator('gtceu:macerator/recycling/empty_tier_ii_battery') + .itemInputs('gtceu:empty_tier_ii_battery') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Ruridit, 6) + ) + .duration(GTMaterials.Ruridit.getMass() * 6) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('gtceu:arc_furnace/recycling/empty_tier_ii_battery') + .itemInputs('gtceu:empty_tier_ii_battery') + .itemOutputs( + ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Ruridit, 6) + ) + .duration(GTMaterials.Ruridit.getMass() * 6) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.extractor('gtceu:extractor/recycling/empty_tier_ii_battery') + .itemInputs('gtceu:empty_tier_ii_battery') + .outputFluids(Fluid.of('gtceu:ruridit', 864)) + .duration(GTMaterials.Ruridit.getMass() * 6) + .category(GTRecipeCategories.EXTRACTOR_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) + + // Empty Tier III Capacitor + event.recipes.gtceu.macerator('gtceu:macerator/recycling/empty_tier_iii_battery') + .itemInputs('gtceu:empty_tier_iii_battery') + .itemOutputs( + ChemicalHelper.get(TagPrefix.dust, GTMaterials.Neutronium, 6) + ) + .duration(GTMaterials.Neutronium.getMass() * 6) + .category(GTRecipeCategories.MACERATOR_RECYCLING) + .EUt(GTValues.VA[GTValues.ULV]) + + event.recipes.gtceu.arc_furnace('gtceu:arc_furnace/recycling/empty_tier_iii_battery') + .itemInputs('gtceu:empty_tier_iii_battery') + .itemOutputs( + ChemicalHelper.get(TagPrefix.ingot, GTMaterials.Neutronium, 6) + ) + .duration(GTMaterials.Neutronium.getMass() * 6) + .category(GTRecipeCategories.ARC_FURNACE_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) + + event.recipes.gtceu.extractor('gtceu:extractor/recycling/empty_tier_iii_battery') + .itemInputs('gtceu:empty_tier_iii_battery') + .outputFluids(Fluid.of('gtceu:neutronium', 864)) + .duration(GTMaterials.Neutronium.getMass() * 6) + .category(GTRecipeCategories.EXTRACTOR_RECYCLING) + .EUt(GTValues.VA[GTValues.LV]) +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfg/recipes.rocks.js b/kubejs/server_scripts/tfg/recipes.rocks.js index 69b315b72..9a0ba3b7e 100644 --- a/kubejs/server_scripts/tfg/recipes.rocks.js +++ b/kubejs/server_scripts/tfg/recipes.rocks.js @@ -43,10 +43,9 @@ function registerTFGRockRecipes(event) { x.brick, [x.loose, '#tfc:chisels'] )) - event.recipes.gtceu.assembler(`${x.loose}_to_${x.brick}`.replace(/:/g, '_')) + event.recipes.gtceu.cutter(`${x.loose}_to_${x.brick}`.replace(/:/g, '_')) .itemInputs(x.loose) .itemOutputs(x.brick) - .circuit(1) .duration(40) .EUt(8) }) @@ -75,13 +74,13 @@ function registerTFGRockRecipes(event) { .duration(30) .EUt(GTValues.VA[GTValues.ULV]) - event.custom({ - type: 'vintageimprovements:laser_cutting', - ingredients: [{ item: x.raw }], - results: [{item: x.polished }], - energy: GTValues.VA[GTValues.ULV] * 30 * 4, - maxChargeRate: GTValues.VA[GTValues.ULV] * 4 - }).id(`tfg:vi/laser/tfg/${x.raw.replace(/:/g, '_')}_to_${x.polished.replace(/:/g, '_')}`) + //event.custom({ + // type: 'vintageimprovements:laser_cutting', + // ingredients: [{ item: x.raw }], + // results: [{item: x.polished }], + // energy: GTValues.VA[GTValues.ULV] * 30 * 4, + // maxChargeRate: GTValues.VA[GTValues.ULV] * 4 + //}).id(`tfg:vi/laser/tfg/${x.raw.replace(/:/g, '_')}_to_${x.polished.replace(/:/g, '_')}`) }) // cracked bricks diff --git a/kubejs/server_scripts/tfg/tags.js b/kubejs/server_scripts/tfg/tags.js index 073905f70..69c04e194 100644 --- a/kubejs/server_scripts/tfg/tags.js +++ b/kubejs/server_scripts/tfg/tags.js @@ -1,4 +1,7 @@ const registerTFGItemTags = (event) => { + + registerTFGTrimTags(event) + //Decorative Vases global.MINECRAFT_DYE_NAMES.forEach(color => { event.add('c:hidden_from_recipe_viewers', `tfg:decorative_vase/generated/${color}`) @@ -12,6 +15,16 @@ const registerTFGItemTags = (event) => { //Knapping event.add('tfc:any_knapping', 'minecraft:flint') + //Tools + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/wood') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/brass') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/rose_gold') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/sterling_silver') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/invar') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/tin_alloy') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/cupronickel') + event.add('forge:tools/fishing_nets', 'tfg:fishing_net/magnalium') + // #region Paper from wood event.add('tfg:hardwood_strips', 'tfg:hardwood_strip') @@ -29,9 +42,17 @@ const registerTFGItemTags = (event) => { event.add('forge:wax', 'tfg:conifer_rosin') event.add('tfc:fluxstone', 'tfg:loose/dripstone') - // #endregion + //#region Cloth & String + event.add('forge:cloth', 'tfg:phantom_silk') + event.add('forge:cloth', 'tfg:polycaprolactam_fabric') + event.add('tfc:sewing_light_cloth', 'tfg:phantom_silk') + event.add('tfc:sewing_dark_cloth', 'tfg:polycaprolactam_fabric') + event.add('forge:string', 'tfg:phantom_thread') + event.add('forge:string', 'tfg:polycaprolactam_string') + //#endregion + // #region Medicines event.add('tfg:antipoison_ingredients', 'tfc:plant/blood_lily') @@ -56,23 +77,29 @@ const registerTFGItemTags = (event) => { event.add('tfg:speed_ingredients', 'firmalife:raw_honey') event.add('tfg:slowness_ingredients', 'tfc:plant/marigold') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_red') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_white') + event.add('tfg:slowness_ingredients', 'tfc:plant/snapdragon_yellow') event.add('tfg:weakness_ingredients', 'tfc:plant/laminaria') + event.add('tfg:weakness_ingredients', 'tfc:plant/sea_palm') + event.add('tfg:weakness_ingredients', 'tfc:plant/sea_lavender') - event.add('tfg:haste_ingredients', 'minecraft:sugar') - event.add('tfg:haste_ingredients', 'afc:birch_sugar') - event.add('tfg:haste_ingredients', 'afc:maple_sugar') + event.add('tfg:haste_ingredients', '#tfg:sugars') event.add('tfg:water_breathing_ingredients', 'tfc:powder/saltpeter') event.add('tfg:water_breathing_ingredients', 'tfc:powder/charcoal') event.add('tfg:night_vision_ingredients', 'tfc:food/carrot') + event.add('tfg:night_vision_ingredients', 'beneath:gleamflower') event.add('tfg:invisibility_ingredients', 'tfc:plant/calendula') + event.add('tfg:absorption_ingredients', 'beneath:burpflower') event.add('tfg:fire_resistance_ingredients', 'tfc:plant/cattail') event.add('tfg:fire_resistance_ingredients', 'tfc:plant/meads_milkweed') event.add('tfg:fire_resistance_ingredients', 'firmalife:plant/bay_laurel') + event.add('tfg:fire_resistance_ingredients', 'beneath:ghost_pepper') event.add('tfg:resistance_ingredients', 'tfc:plant/hibiscus') event.add('tfg:resistance_ingredients', 'gtceu:calcium_dust') @@ -81,6 +108,7 @@ const registerTFGItemTags = (event) => { event.add('tfg:instant_health_ingredients', 'tfc:plant/artists_conk') event.add('tfg:absorption_ingredients', 'tfc:plant/poppy') + event.add('tfg:invisibility_ingredients', 'tfc:plant/snapdragon_pink') event.add('tfg:luck_ingredients', 'tfc:plant/goldenrod') event.add('tfg:luck_ingredients', 'tfc:plant/heather') @@ -91,6 +119,16 @@ const registerTFGItemTags = (event) => { event.add('immersive_aircraft:upgrades', `tfg:${value}`); }) + // #endregion + + // Universal Circuits + + global.UNIVERSAL_CIRCUIT_TIERS.forEach(tier => { + event.add(`gtceu:circuits/${tier}`, `tfg:${tier}_universal_circuit`); + }) + + // #endregion + // #region 0.7.19 -> 0.9 conversion event.add('c:hidden_from_recipe_viewers', 'treetap:tap') diff --git a/kubejs/server_scripts/vintage_improvements/recipes.js b/kubejs/server_scripts/vintage_improvements/recipes.js index 584f06431..b13545922 100644 --- a/kubejs/server_scripts/vintage_improvements/recipes.js +++ b/kubejs/server_scripts/vintage_improvements/recipes.js @@ -130,18 +130,19 @@ function registerVintageImprovementsRecipes(event) { G: 'create:precision_mechanism' }).id('tfg:vi/mechanical_crafting/lathe') - event.shaped('vintageimprovements:laser', [ - 'FBF', - 'EAE', - 'DCD' - ], { - A: 'gtceu:ulv_machine_hull', - B: 'create:precision_mechanism', - C: 'tfc:lens', - D: 'gtceu:red_alloy_single_wire', - E: 'minecraft:piston', - F: '#gtceu:circuits/ulv' - }).id('tfg:vi/shaped/laser') + // Re-enable this thing's EMI category as well, if we end up using it + //event.shaped('vintageimprovements:laser', [ + // 'FBF', + // 'EAE', + // 'DCD' + //], { + // A: 'gtceu:ulv_machine_hull', + // B: 'create:precision_mechanism', + // C: 'tfc:lens', + // D: 'gtceu:red_alloy_single_wire', + // E: 'minecraft:piston', + // F: '#gtceu:circuits/ulv' + //}).id('tfg:vi/shaped/laser') // #endregion @@ -289,7 +290,7 @@ function registerVintageImprovementsRecipes(event) { // #endregion - GTMaterialRegistry.getRegisteredMaterials().forEach(material => { + forEachMaterial(material => { // #region Coiling @@ -408,7 +409,7 @@ function registerVintageImprovementsRecipes(event) { event.custom({ type: 'vintageimprovements:pressurizing', ingredients: [ingotItem, ingotItem, { item: 'tfc:powder/flux' }], - "heatRequirement": "heated", + heatRequirement: "heated", results: [ChemicalHelper.get(TFGTagPrefix.ingotDouble, material, 1)], processingTime: material.getMass() * 6 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER }).id(`tfg:vi/pressurizing/${material.getName()}_double_ingot`) @@ -418,7 +419,7 @@ function registerVintageImprovementsRecipes(event) { event.custom({ type: 'vintageimprovements:pressurizing', ingredients: [plateItem, plateItem, { item: 'tfc:powder/flux' }], - "heatRequirement": "heated", + heatRequirement: "heated", results: [ChemicalHelper.get(TagPrefix.plateDouble, material, 1)], processingTime: material.getMass() * 6 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER }).id(`tfg:vi/pressurizing/${material.getName()}_double_plate`) @@ -499,6 +500,8 @@ function registerVintageImprovementsRecipes(event) { if (!(EUt <= 32)) { return } // Skip this one if (r.outputs.item[0].content.ingredient.item == "gtceu:nan_certificate") { return } + // Skip glass too + if (r.inputs.item[0].content.ingredient.item == "gtceu:glass_dust") { return } let input = r.inputs.item[0].content.ingredient; input.count = r.inputs.item[0].content.count; @@ -526,9 +529,39 @@ function registerVintageImprovementsRecipes(event) { results: [{ fluid: 'gtceu:glue', amount: 50 }], heatRequirement: "heated", processingTime: 100 - }).id('tfg:vi/vacuumizing/glue') + }).id('tfg:vi/vacuumizing/glue_melting') + + event.custom({ + type: 'vintageimprovements:vacuumizing', + ingredients: [{ item: 'gtceu:sticky_resin' }], + results: [{ fluid: 'gtceu:glue', amount: 100 }], + heatRequirement: "heated", + processingTime: 200 + }).id('tfg:vi/vacuumizing/glue_from_resin') + + event.custom({ + type: 'vintageimprovements:vacuumizing', + ingredients: [{ item: 'tfg:conifer_rosin' }], + results: [{ fluid: 'gtceu:glue', amount: 50 }], + heatRequirement: "heated", + processingTime: 200 + }).id('tfg:vi/vacuumizing/glue_from_rosin') + + event.custom({ + type: 'vintageimprovements:vacuumizing', + ingredients: [{ item: 'minecraft:bone_meal' }, { fluid: 'tfc:limewater', amount: 500 }], + results: [{ fluid: 'gtceu:glue', amount: 50 }], + heatRequirement: "heated", + processingTime: 100 + }).id('tfg:vi/vacuumizing/glue_from_bone_meal') + + event.custom({ + type: 'vintageimprovements:pressurizing', + ingredients: [{ fluid: 'gtceu:glue', amount: 50 }], + results: [{ item: 'tfc:glue' }], + processingTime: 100 + }).id('tfg:vi/pressurizing/glue_solidifying') - // TODO: Remove me when we upgrade Greate and can just slap rubber onto wires again event.custom({ type: 'vintageimprovements:vacuumizing', ingredients: [{ item: 'gtceu:rubber_dust' }], @@ -537,6 +570,34 @@ function registerVintageImprovementsRecipes(event) { processingTime: 100 }).id('tfg:vi/vacuum/rubber') + // Vaccuming rubber wood stuff for latex + event.custom({ + type: 'vintageimprovements:vacuumizing', + ingredients: [{ tag: 'tfg:latex_logs' }], + results: [{ fluid: 'tfg:latex', amount: 250 }], + processingTime: 600 + }).id('tfg:vi/vacuumizing/latex_from_rubber_logs') + event.custom({ + type: 'vintageimprovements:vacuumizing', + ingredients: [{ tag: 'tfg:rubber_saplings' }], + results: [{ fluid: 'tfg:latex', amount: 100 }], + processingTime: 300 + }).id('tfg:vi/vacuumizing/latex_from_rubber_sapling') + event.custom({ + type: 'vintageimprovements:vacuumizing', + ingredients: [{ tag: 'tfg:rubber_leaves' }], + results: [{ fluid: 'tfg:latex', amount: 50 }], + processingTime: 150 + }).id('tfg:vi/vacuumizing/latex_from_rubber_leaves') + + // Vulc. latex to raw rubber pulp + event.custom({ + type: 'vintageimprovements:vacuumizing', + ingredients: [{ fluid: 'tfg:vulcanized_latex', amount: 250 }], + results: [{ item: 'gtceu:raw_rubber_dust'}], + processingTime: 120 + }).id('tfg:vi/vacuumizing/vulcanized_latex_to_raw_rubber') + // #endregion } diff --git a/kubejs/startup_scripts/ae2/constants.js b/kubejs/startup_scripts/ae2/constants.js index c9d05dd58..b4d4b08eb 100644 --- a/kubejs/startup_scripts/ae2/constants.js +++ b/kubejs/startup_scripts/ae2/constants.js @@ -23,6 +23,7 @@ global.AE2_DISABLED_ITEMS = [ 'ae2:entropy_manipulator', 'ae2:charged_staff', 'ae2:name_press', + 'ae2:charger', // Π‘Π»ΠΎΠΊΠΈ 'ae2:vibration_chamber', diff --git a/kubejs/startup_scripts/ae2/materials.js b/kubejs/startup_scripts/ae2/materials.js index 9c3c86d72..7d20c44c1 100644 --- a/kubejs/startup_scripts/ae2/materials.js +++ b/kubejs/startup_scripts/ae2/materials.js @@ -11,7 +11,7 @@ const registerAE2Materials = (event) => { GTMaterialFlags.DISABLE_DECOMPOSITION, GTMaterialFlags.FORCE_GENERATE_BLOCK ) - .components('1x silicon', '2x oxygen') + .components('1x nether_quartz', '1x certus_quartz', '1x ruby') .color(0x6D5BB6) .secondaryColor(0x1E1932) } \ No newline at end of file diff --git a/kubejs/startup_scripts/create/constants.js b/kubejs/startup_scripts/create/constants.js index 56fc162f5..2c917a567 100644 --- a/kubejs/startup_scripts/create/constants.js +++ b/kubejs/startup_scripts/create/constants.js @@ -292,5 +292,6 @@ global.CREATE_DISABLED_ITEMS = [ 'create:chest_minecart_contraption', 'create:mechanical_pump', 'create:peculiar_bell', - 'create:haunted_bell' + 'create:haunted_bell', + 'create:adjustable_chain_gearshift' ]; diff --git a/kubejs/startup_scripts/create_connected/constants.js b/kubejs/startup_scripts/create_connected/constants.js new file mode 100644 index 000000000..b1f25efd2 --- /dev/null +++ b/kubejs/startup_scripts/create_connected/constants.js @@ -0,0 +1,16 @@ +// priority: 0 + +global.CREATE_CONNECTED_DISABLED_ITEMS = [ + 'create_connected:encased_chain_cogwheel', + 'create_connected:parallel_gearbox', + 'create_connected:vertical_parallel_gearbox', + 'create_connected:six_way_gearbox', + 'create_connected:vertical_six_way_gearbox', + 'create_connected:brass_gearbox', + 'create_connected:vertical_brass_gearbox', + 'create_connected:shear_pin', + 'create_connected:control_chip', + 'create_connected:incomplete_control_chip', + 'create_connected:crank_wheel', + 'create_connected:large_crank_wheel' +] \ No newline at end of file diff --git a/kubejs/startup_scripts/greate/constants.js b/kubejs/startup_scripts/greate/constants.js index e2239b611..31af4a66d 100644 --- a/kubejs/startup_scripts/greate/constants.js +++ b/kubejs/startup_scripts/greate/constants.js @@ -29,6 +29,10 @@ global.GREATE_DISABLED_ITEMS = [ 'greate:stainless_steel_millstone', 'greate:titanium_millstone', + // Disabled because they don't respect the cleanroom requirement of some recipes + 'greate:stainless_steel_mechanical_saw', + 'greate:titanium_mechanical_saw', + // Disable these until it's possible to disable spring recipes in them 'greate:andesite_alloy_mechanical_press', 'greate:steel_mechanical_press', diff --git a/kubejs/startup_scripts/gtceu/constants.js b/kubejs/startup_scripts/gtceu/constants.js index e6673295c..ccb34875c 100644 --- a/kubejs/startup_scripts/gtceu/constants.js +++ b/kubejs/startup_scripts/gtceu/constants.js @@ -34,6 +34,10 @@ global.GTCEU_DISABLED_ITEMS = [ 'gtceu:flint_knife', 'gtceu:firebrick', 'gtceu:firebricks', + 'gtceu:fireclay_dust', + 'gtceu:small_fireclay_dust', + 'gtceu:tiny_fireclay_dust', + 'gtceu:compressed_fireclay', 'gtceu:wood_drum', 'gtceu:primitive_blast_furnace', 'gtceu:iron_pickaxe', @@ -50,6 +54,9 @@ global.GTCEU_DISABLED_ITEMS = [ 'gtceu:stone_wrench_tip', 'gtceu:treated_wood_hanging_sign', + 'gtceu:treated_wood_boat', + 'gtceu:treated_wood_chest_boat', + 'gtceu:treated_wood_sign', 'gtceu:rubber_sapling', 'gtceu:rubber_log', @@ -71,6 +78,14 @@ global.GTCEU_DISABLED_ITEMS = [ 'gtceu:rubber_boat', 'gtceu:rubber_chest_boat', + 'gtceu:mv_solar_panel', + 'gtceu:hv_solar_panel', + 'gtceu:ev_solar_panel', + 'gtceu:iv_solar_panel', + 'gtceu:luv_solar_panel', + 'gtceu:zpm_solar_panel', + 'gtceu:uv_solar_panel', + // Sculk 'gtceu:tiny_echo_shard_dust', 'gtceu:small_echo_shard_dust', @@ -175,3 +190,4 @@ global.ORE_BEARING_STONES = [ 'pyroxenite', 'dripstone' ]; + diff --git a/kubejs/startup_scripts/gtceu/items.js b/kubejs/startup_scripts/gtceu/items.js index 840068717..97fe73a29 100644 --- a/kubejs/startup_scripts/gtceu/items.js +++ b/kubejs/startup_scripts/gtceu/items.js @@ -1,4 +1,35 @@ // priority: 0 const registerGTCEuItems = (event) => { + + event.create('tfg:ulv_universal_circuit') + .translationKey('item.ulv_universal_circuit') + + event.create('tfg:lv_universal_circuit') + .translationKey('item.lv_universal_circuit') + + event.create('tfg:mv_universal_circuit') + .translationKey('item.mv_universal_circuit') + + event.create('tfg:hv_universal_circuit') + .translationKey('item.hv_universal_circuit') + + event.create('tfg:ev_universal_circuit') + .translationKey('item.ev_universal_circuit') + + event.create('tfg:iv_universal_circuit') + .translationKey('item.iv_universal_circuit') + + event.create('tfg:luv_universal_circuit') + .translationKey('item.luv_universal_circuit') + + event.create('tfg:zpm_universal_circuit') + .translationKey('item.zpm_universal_circuit') + + event.create('tfg:uv_universal_circuit') + .translationKey('item.uv_universal_circuit') + + event.create('tfg:uhv_universal_circuit') + .translationKey('item.uhv_universal_circuit') + } diff --git a/kubejs/startup_scripts/gtceu/materials.js b/kubejs/startup_scripts/gtceu/materials.js index c172117ce..592027bd4 100644 --- a/kubejs/startup_scripts/gtceu/materials.js +++ b/kubejs/startup_scripts/gtceu/materials.js @@ -36,6 +36,7 @@ const registerGTCEuMaterialModification = (event) => { GENERATE_GEAR, GENERATE_FRAME, GENERATE_PLATE, + GENERATE_DENSE, GENERATE_RING } = $MATERIAL_FLAGS @@ -167,7 +168,7 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Silver.addFlags(HAS_SMALL_NATIVE_TFC_ORE); // // /* Π˜ΠΌΠ΅ΡŽΡ‚ Π΄Π²ΠΎΠΉΠ½Ρ‹Π΅ слитки */ - GTMaterials.RedAlloy.addFlags(GENERATE_DOUBLE_INGOTS); + GTMaterials.RedAlloy.addFlags(GENERATE_DOUBLE_INGOTS, GENERATE_SMALL_GEAR); GTMaterials.TinAlloy.addFlags(GENERATE_DOUBLE_INGOTS); // // /* Π”Ρ€ΡƒΠ³ΠΎΠ΅ */ @@ -187,7 +188,8 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.Wood.addFlags(GENERATE_SMALL_GEAR); GTMaterials.Brass.addFlags(GENERATE_SMALL_GEAR, GENERATE_RING); - GTMaterials.BismuthBronze.addFlags(GENERATE_GEAR); + GTMaterials.BlackBronze.addFlags(GENERATE_SMALL_GEAR); + GTMaterials.BismuthBronze.addFlags(GENERATE_SMALL_GEAR); GTMaterials.Nickel.addFlags(GENERATE_ROD, GENERATE_LONG_ROD); GTMaterials.BlackSteel.addFlags(GENERATE_LONG_ROD, GENERATE_BOLT_SCREW, GENERATE_SMALL_GEAR); @@ -199,7 +201,16 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.DamascusSteel.addFlags(GENERATE_BOLT_SCREW); GTMaterials.Duranium.addFlags(GENERATE_BOLT_SCREW); + GTMaterials.Cupronickel.addFlags(GENERATE_BOLT_SCREW, GENERATE_RING); + + GTMaterials.Invar.addFlags(GENERATE_RING); + GTMaterials.Magnalium.addFlags(GENERATE_RING); + GTMaterials.TinAlloy.addFlags(GENERATE_RING); + GTMaterials.SterlingSilver.addFlags(GENERATE_RING); + GTMaterials.IronMagnetic.addFlags(GENERATE_PLATE) + + GTMaterials.Silicon.addFlags(GENERATE_DENSE); GTMaterials.TreatedWood.addFlags(GENERATE_LONG_ROD); @@ -281,6 +292,10 @@ const registerGTCEuMaterialModification = (event) => { GTMaterials.TungstenSteel.setMaterialSecondaryARGB(0x03192f) GTMaterials.RoseGold.setMaterialARGB(0xFCE4D8) GTMaterials.RoseGold.setMaterialSecondaryARGB(0xAB675A) + GTMaterials.Platinum.setMaterialARGB(0xccdff5) + GTMaterials.Platinum.setMaterialSecondaryARGB(0x59563a) + GTMaterials.Nickel.setMaterialARGB(0xfff4ba) + GTMaterials.Nickel.setMaterialSecondaryARGB(0x8d8d71) global.MINECRAFT_DYE_NAMES.forEach(colorName => diff --git a/kubejs/startup_scripts/gtceu/tag_prefixes.js b/kubejs/startup_scripts/gtceu/tag_prefixes.js index 6e6799af0..550433706 100644 --- a/kubejs/startup_scripts/gtceu/tag_prefixes.js +++ b/kubejs/startup_scripts/gtceu/tag_prefixes.js @@ -95,4 +95,6 @@ const registerGTCEuTagPrefixes = (event) => { TagPrefix.turbineBlade.defaultTagPath("turbine_blades/%s") TagPrefix.turbineBlade.unformattedTagPath("turbine_blades") + TagPrefix.rawOreBlock.defaultTagPath("raw_ore_blocks/%s") + TagPrefix.rawOreBlock.unformattedTagPath("raw_ore_blocks") } \ No newline at end of file diff --git a/kubejs/startup_scripts/horornot/constants.js b/kubejs/startup_scripts/horornot/constants.js index 544611c11..ed60a260c 100644 --- a/kubejs/startup_scripts/horornot/constants.js +++ b/kubejs/startup_scripts/horornot/constants.js @@ -1,32 +1,4 @@ // priority: 0 global.HOT_OR_NOT_DISABLED_ITEMS = [ -]; - -// Can't just use the #tfchotornot:insulating tag here because tags don't exist at startup -global.HOT_OR_NOT_ITEMS = [ - 'tfchotornot:mittens', - 'tfchotornot:burlap_potholder', - 'tfchotornot:silk_potholder', - 'tfchotornot:wool_potholder', - 'tfchotornot:tongs/wood', - 'tfchotornot:tongs/bismuth', - 'tfchotornot:tongs/bismuth_bronze', - 'tfchotornot:tongs/black_bronze', - 'tfchotornot:tongs/bronze', - 'tfchotornot:tongs/brass', - 'tfchotornot:tongs/copper', - 'tfchotornot:tongs/gold', - 'tfchotornot:tongs/nickel', - 'tfchotornot:tongs/rose_gold', - 'tfchotornot:tongs/silver', - 'tfchotornot:tongs/tin', - 'tfchotornot:tongs/zinc', - 'tfchotornot:tongs/sterling_silver', - 'tfchotornot:tongs/wrought_iron', - 'tfchotornot:tongs/cast_iron', - 'tfchotornot:tongs/steel', - 'tfchotornot:tongs/black_steel', - 'tfchotornot:tongs/red_steel', - 'tfchotornot:tongs/blue_steel', ]; \ No newline at end of file diff --git a/kubejs/startup_scripts/horornot/modifications.js b/kubejs/startup_scripts/horornot/modifications.js deleted file mode 100644 index e4138548c..000000000 --- a/kubejs/startup_scripts/horornot/modifications.js +++ /dev/null @@ -1,10 +0,0 @@ -// priority: 0 - -function registerHotOrNotItemModifications(event) { - - global.HOT_OR_NOT_ITEMS.forEach(i => { - event.modify(i, item => { - item.maxDamage = item.maxDamage * 3 - }) - }) -} \ No newline at end of file diff --git a/kubejs/startup_scripts/main_startup_script.js b/kubejs/startup_scripts/main_startup_script.js index c93d56db9..cdf916826 100644 --- a/kubejs/startup_scripts/main_startup_script.js +++ b/kubejs/startup_scripts/main_startup_script.js @@ -27,7 +27,6 @@ BlockEvents.modification(event => { */ ItemEvents.modification(event => { registerBeneathItemModifications(event) - registerHotOrNotItemModifications(event) registerMinecraftItemModifications(event) }) diff --git a/kubejs/startup_scripts/minecraft/constants.js b/kubejs/startup_scripts/minecraft/constants.js index 2833fb522..d7f07dfed 100644 --- a/kubejs/startup_scripts/minecraft/constants.js +++ b/kubejs/startup_scripts/minecraft/constants.js @@ -595,7 +595,6 @@ global.MINECRAFT_DISABLED_ITEMS = [ 'minecraft:frogspawn', 'minecraft:cactus', 'minecraft:sweet_berries', - 'minecraft:campfire', 'minecraft:soul_campfire', 'minecraft:bee_nest', 'minecraft:fletching_table', diff --git a/kubejs/startup_scripts/tfc/constants.js b/kubejs/startup_scripts/tfc/constants.js index 18ceab785..f89d0156b 100644 --- a/kubejs/startup_scripts/tfc/constants.js +++ b/kubejs/startup_scripts/tfc/constants.js @@ -1017,6 +1017,18 @@ global.TFC_MILKS = [ {id: 'firmalife:coconut_milk'}, ]; +global.TFC_ALCOHOL = [ + {id: 'tfc:beer'}, + {id: 'tfc:cider'}, + {id: 'tfc:rum'}, + {id: 'tfc:sake'}, + {id: 'tfc:vodka'}, + {id: 'tfc:whiskey'}, + {id: 'tfc:corn_whiskey'}, + {id: 'tfc:rye_whiskey'}, + {id: 'firmalife:mead'}, +]; + global.TFC_MAGMA_BLOCKS = [ 'tfc:rock/magma/granite', 'tfc:rock/magma/diorite', diff --git a/kubejs/startup_scripts/tfc/icon_sets.js b/kubejs/startup_scripts/tfc/icon_sets.js index bf2378eae..6acd4afc2 100644 --- a/kubejs/startup_scripts/tfc/icon_sets.js +++ b/kubejs/startup_scripts/tfc/icon_sets.js @@ -18,7 +18,7 @@ function registerTFCIconSets(event) { event.create('tfc_ruby').parent('ruby') event.create('tfc_sapphire').parent('gem_horizontal') event.create('tfc_topaz').parent('gem_vertical') - event.create('tfc_realgar').parent('fine') + event.create('tfc_realgar').parent('emerald') event.create('tfc_bismuth').parent('bright') event.create('tfc_cassiterite').parent('bright') diff --git a/kubejs/startup_scripts/tfc/materials.js b/kubejs/startup_scripts/tfc/materials.js index 6ea57a9cc..296f9acc6 100644 --- a/kubejs/startup_scripts/tfc/materials.js +++ b/kubejs/startup_scripts/tfc/materials.js @@ -85,10 +85,10 @@ const registerTFCMaterials = (event) => { GTMaterials.Almandine.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_realgar')) GTMaterials.Beryllium.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_copper')) GTMaterials.Cobalt.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_sphalerite')) - GTMaterials.Cobaltite.setMaterialIconSet(GTMaterialIconSet.LAPIS) + GTMaterials.Cobaltite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_borax')) GTMaterials.Lead.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_magnetite')) GTMaterials.Lazurite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_ruby')) - GTMaterials.Asbestos.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_lapis')) + GTMaterials.Asbestos.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_graphite')) GTMaterials.Lithium.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_hematite')) GTMaterials.Galena.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_copper')) GTMaterials.Grossular.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_sapphire')) @@ -107,8 +107,8 @@ const registerTFCMaterials = (event) => { GTMaterials.Apatite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_opal')) GTMaterials.Pyrope.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_opal')) GTMaterials.Scheelite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_saltpeter')) - GTMaterials.Tantalite.setMaterialIconSet(GTMaterialIconSet.LIGNITE) - GTMaterials.Stibnite.setMaterialIconSet(GTMaterialIconSet.LAPIS) + GTMaterials.Tantalite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_saltpeter')) + GTMaterials.Stibnite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_sulfur')) GTMaterials.Tungstate.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_borax')) GTMaterials.Uraninite.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_limonite')) GTMaterials.Pitchblende.setMaterialIconSet(GTMaterialIconSet.getByName('tfc_magnetite')) diff --git a/kubejs/startup_scripts/tfc/tag_prefixes.js b/kubejs/startup_scripts/tfc/tag_prefixes.js index d3a4026f5..81a1f11e9 100644 --- a/kubejs/startup_scripts/tfc/tag_prefixes.js +++ b/kubejs/startup_scripts/tfc/tag_prefixes.js @@ -2,7 +2,7 @@ const registerTFCTagPrefixes = (event) => { - TagPrefix.ORES.remove(TagPrefix.ore) + TagPrefix.ORES.remove(TagPrefix.oreDeepslate) TagPrefix.ORES.remove(TagPrefix.oreTuff) TagPrefix.ORES.remove(TagPrefix.oreSand) diff --git a/kubejs/startup_scripts/tfg/constants.js b/kubejs/startup_scripts/tfg/constants.js index baeaa7533..72ad3a186 100644 --- a/kubejs/startup_scripts/tfg/constants.js +++ b/kubejs/startup_scripts/tfg/constants.js @@ -17,4 +17,6 @@ global.AIRCRAFT_UPGRADES = [ "aluminium_hull_reinforcement", "stainless_steel_hull_reinforcement", "titanium_hull_reinforcement" -] \ No newline at end of file +] + +global.UNIVERSAL_CIRCUIT_TIERS = ["ulv", "lv", "mv", "hv", "ev", "iv", "luv", "zpm", "uv", "uhv"]; \ No newline at end of file diff --git a/kubejs/startup_scripts/tfg/items.js b/kubejs/startup_scripts/tfg/items.js index 1ec58c60a..d665f28a6 100644 --- a/kubejs/startup_scripts/tfg/items.js +++ b/kubejs/startup_scripts/tfg/items.js @@ -133,19 +133,82 @@ const registerTFGItems = (event) => { //#endregion //#region Wax - event.create(`tfg:paraffin_wax`) - .translationKey(`item.tfg.paraffin_wax`) + event.create('tfg:paraffin_wax') + .translationKey('item.tfg.paraffin_wax') event.create('tfg:conifer_rosin') .translationKey('item.tfg.conifer_rosin') //#endregion - //#region Arrow Parts + //#region Cloth & String + event.create('tfg:polycaprolactam_fabric') + .translationKey('item.tfg.polycaprolactam_fabric') + + event.create('tfg:polycaprolactam_string') + .translationKey('item.tfg.polycaprolactam_string') + + event.create('tfg:phantom_silk') + .translationKey('item.tfg.phantom_silk') + + event.create('tfg:phantom_thread') + .translationKey('item.tfg.phantom_thread') + //#endregion + + //#region Tools event.create('tfg:flint_arrow_head') .translationKey('item.tfg.flint_arrow_head') event.create('tfg:fletching') .translationKey('item.tfg.fletching') + + event.create('tfg:fishing_net/wood') + .translationKey('item.tfg.fishing_net.wood') + .parentModel('tfg:item/fishing_nets/wood_fishing_net') + .texture('tfg:item/fishing_nets/wood_fishing_net') + .maxDamage(112) + + event.create('tfg:fishing_net/brass') + .translationKey('item.tfg.fishing_net.brass') + .parentModel('tfg:item/fishing_nets/brass_fishing_net') + .texture('tfg:item/fishing_nets/brass_fishing_net') + .maxDamage(326) + + event.create('tfg:fishing_net/rose_gold') + .translationKey('item.tfg.fishing_net.rose_gold') + .parentModel('tfg:item/fishing_nets/rose_gold_fishing_net') + .texture('tfg:item/fishing_nets/rose_gold_fishing_net') + .maxDamage(380) + + event.create('tfg:fishing_net/sterling_silver') + .translationKey('item.tfg.fishing_net.sterling_silver') + .parentModel('tfg:item/fishing_nets/sterling_silver_fishing_net') + .texture('tfg:item/fishing_nets/sterling_silver_fishing_net') + .maxDamage(380) + + event.create('tfg:fishing_net/invar') + .translationKey('item.tfg.fishing_net.invar') + .parentModel('tfg:item/fishing_nets/invar_fishing_net') + .texture('tfg:item/fishing_nets/invar_fishing_net') + .maxDamage(740) + + event.create('tfg:fishing_net/tin_alloy') + .translationKey('item.tfg.fishing_net.tin_alloy') + .parentModel('tfg:item/fishing_nets/tin_alloy_fishing_net') + .texture('tfg:item/fishing_nets/tin_alloy_fishing_net') + .maxDamage(710) + + event.create('tfg:fishing_net/cupronickel') + .translationKey('item.tfg.fishing_net.cupronickel') + .parentModel('tfg:item/fishing_nets/cupronickel_fishing_net') + .texture('tfg:item/fishing_nets/cupronickel_fishing_net') + .maxDamage(560) + + event.create('tfg:fishing_net/magnalium') + .translationKey('item.tfg.fishing_net.magnalium') + .parentModel('tfg:item/fishing_nets/magnalium_fishing_net') + .texture('tfg:item/fishing_nets/magnalium_fishing_net') + .maxDamage(1830) + //#endregion //#region Immersive Aircraft Impl diff --git a/kubejs/startup_scripts/tfg/materials.js b/kubejs/startup_scripts/tfg/materials.js index 1f7d13754..360785bb6 100644 --- a/kubejs/startup_scripts/tfg/materials.js +++ b/kubejs/startup_scripts/tfg/materials.js @@ -37,4 +37,5 @@ const registerTFGMaterials = (event) => { .iconSet(GTMaterialIconSet.FINE) .color('0xede8da') .secondaryColor('0xeddcad') + .components('12x carbon', '22x hydrogen', '11x oxygen') } \ No newline at end of file diff --git a/kubejs/startup_scripts/vintage_improvements/constants.js b/kubejs/startup_scripts/vintage_improvements/constants.js index e1fc1244b..ae62bef07 100644 --- a/kubejs/startup_scripts/vintage_improvements/constants.js +++ b/kubejs/startup_scripts/vintage_improvements/constants.js @@ -1,7 +1,7 @@ // priority: 0 -global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER = 1.5; +global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER = 2; global.VINTAGE_IMPROVEMENTS_DISABLED_ITEMS = [ @@ -13,6 +13,7 @@ global.VINTAGE_IMPROVEMENTS_DISABLED_ITEMS = [ 'vintageimprovements:v_shaped_curving_head', 'vintageimprovements:grinder_belt', 'vintageimprovements:spring_coiling_machine_wheel', + 'vintageimprovements:laser', 'vintageimprovements:laser_item', 'vintageimprovements:sulfur_chunk', 'vintageimprovements:sulfur', @@ -57,6 +58,7 @@ global.VINTAGE_IMPROVEMENTS_DISABLED_ITEMS = [ 'vintageimprovements:hepatizon_rod', 'vintageimprovements:invar_rod', 'vintageimprovements:lead_rod', + 'vintageimprovements:zinc_rod', 'vintageimprovements:lumium_rod', 'vintageimprovements:manyullyn_rod', 'vintageimprovements:nickel_rod', diff --git a/mods b/mods index ffeea9861..4438b5286 160000 --- a/mods +++ b/mods @@ -1 +1 @@ -Subproject commit ffeea9861f4266858a98d7be602b11eb3b8df073 +Subproject commit 4438b5286e38f6f2f531e0154bb580ab2a026541 diff --git a/pakku-lock.json b/pakku-lock.json index 17997219d..29bb376b6 100644 --- a/pakku-lock.json +++ b/pakku-lock.json @@ -372,7 +372,7 @@ "files": [ { "type": "curseforge", - "file_name": "alltheleaks-0.1.2-beta+1.20.1-forge.jar", + "file_name": "alltheleaks-0.1.4-beta+1.20.1-forge.jar", "mc_versions": [ "1.20.1" ], @@ -380,16 +380,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6321/543/alltheleaks-0.1.2-beta+1.20.1-forge.jar", - "id": "6321543", + "url": "https://edge.forgecdn.net/files/6482/449/alltheleaks-0.1.4-beta+1.20.1-forge.jar", + "id": "6482449", "parent_id": "1091339", "hashes": { - "sha1": "29c1d160dcb1e726101497bcabbb6903b01e218d", - "md5": "253ba2355cbff97b8c6e5f4066389703" + "sha1": "31064c1cebcc90d9e914f1e17a5530385e14544d", + "md5": "bc2454a8103dbf517bb3145f4528bc25" }, "required_dependencies": [], - "size": 523165, - "date_published": "2025-03-19T09:19:08.017Z" + "size": 523888, + "date_published": "2025-05-01T04:32:00.873Z" } ] }, @@ -482,7 +482,7 @@ "files": [ { "type": "modrinth", - "file_name": "AmbientSounds_FORGE_v6.1.8_mc1.20.1.jar", + "file_name": "AmbientSounds_FORGE_v6.1.9_mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -491,22 +491,22 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/fM515JnW/versions/PDmfRznc/AmbientSounds_FORGE_v6.1.8_mc1.20.1.jar", - "id": "PDmfRznc", + "url": "https://cdn.modrinth.com/data/fM515JnW/versions/Azcdw9vT/AmbientSounds_FORGE_v6.1.9_mc1.20.1.jar", + "id": "Azcdw9vT", "parent_id": "fM515JnW", "hashes": { - "sha512": "10b8e34696583a6354c857ff00a15f7fa8978686a0dab4301bfc8cf11d24661ac296af9d481642f18145f21c241876eb40189b095b0505818fe44769ab63b665", - "sha1": "cf86d8e1f8de7fd9450a05d8cded6f5763849794" + "sha512": "7f50aca7fd415b8ccbab47d28b5f7fecc5bc83f7c6964d6b40222f02119f453e515e00659b11f3c4797e403d39e11796b467d7f06a0ec30c257a6a1948767eec", + "sha1": "934e8939b27625532cce257cd4fc57765eaa2de9" }, "required_dependencies": [ "OsZiaDHq" ], - "size": 83885939, - "date_published": "2025-04-08T22:11:03.624331Z" + "size": 83885807, + "date_published": "2025-04-22T12:25:27.402652Z" }, { "type": "curseforge", - "file_name": "AmbientSounds_FORGE_v6.1.8_mc1.20.1.jar", + "file_name": "AmbientSounds_FORGE_v6.1.9_mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -515,23 +515,26 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6400/880/AmbientSounds_FORGE_v6.1.8_mc1.20.1.jar", - "id": "6400880", + "url": "https://edge.forgecdn.net/files/6451/670/AmbientSounds_FORGE_v6.1.9_mc1.20.1.jar", + "id": "6451670", "parent_id": "254284", "hashes": { - "sha1": "cf86d8e1f8de7fd9450a05d8cded6f5763849794", - "md5": "aeabd3a86153a2af1231a7b857627dd0" + "sha1": "934e8939b27625532cce257cd4fc57765eaa2de9", + "md5": "dd203c11ba29f4a6056efc726f3ba5a7" }, "required_dependencies": [ "257814" ], - "size": 83885939, - "date_published": "2025-04-08T22:10:36.207Z" + "size": 83885807, + "date_published": "2025-04-22T12:24:57.987Z" } ] }, { "pakku_id": "hEH6ly65CC6Sw1pf", + "pakku_links": [ + "xIYXAtMQYLSiAsji" + ], "type": "MOD", "side": "BOTH", "slug": { @@ -547,31 +550,9 @@ "modrinth": "XxWD5pD3" }, "files": [ - { - "type": "curseforge", - "file_name": "appliedenergistics2-forge-15.3.3.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6091/401/appliedenergistics2-forge-15.3.3.jar", - "id": "6091401", - "parent_id": "223794", - "hashes": { - "sha1": "37ba16fa86aeab788d7b916bb45c25638df5cfb0", - "md5": "c7e870e3200139ebe8f260c4ea52b622" - }, - "required_dependencies": [], - "size": 9746146, - "date_published": "2025-01-15T23:06:41.440Z" - }, { "type": "modrinth", - "file_name": "appliedenergistics2-forge-15.3.3.jar", + "file_name": "appliedenergistics2-forge-15.3.4.jar", "mc_versions": [ "1.20.1" ], @@ -580,16 +561,38 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/XxWD5pD3/versions/JSY0V9J5/appliedenergistics2-forge-15.3.3.jar", - "id": "JSY0V9J5", + "url": "https://cdn.modrinth.com/data/XxWD5pD3/versions/Ap6Grcvz/appliedenergistics2-forge-15.3.4.jar", + "id": "Ap6Grcvz", "parent_id": "XxWD5pD3", "hashes": { - "sha512": "e1da8e1666b3d221fe82ec14a4f88b15c34c0ef445c526ae0f3baa8f50d52276b35360433413db6af0e7232fc4e5a685fdd05754d912c7b1e387ad8fbaf2527c", - "sha1": "37ba16fa86aeab788d7b916bb45c25638df5cfb0" + "sha512": "b24496c052d8c56673e7b8fd68fb171c851a442928e5a88d0121b5e6e388f748c0588b5965bda1b12d65944b4288bc60607bb7c5017a4fdd6c12c86f33a3d9ea", + "sha1": "fa899580dddd44500586a43874c504c7e4620d7a" }, "required_dependencies": [], - "size": 9746146, - "date_published": "2025-01-15T23:06:49.856833Z" + "size": 9746206, + "date_published": "2025-03-27T20:34:07.359242Z" + }, + { + "type": "curseforge", + "file_name": "appliedenergistics2-forge-15.3.4.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6357/138/appliedenergistics2-forge-15.3.4.jar", + "id": "6357138", + "parent_id": "223794", + "hashes": { + "sha1": "fa899580dddd44500586a43874c504c7e4620d7a", + "md5": "7df1bee0c97c2d819ef6c745f6213fa8" + }, + "required_dependencies": [], + "size": 9746206, + "date_published": "2025-03-27T20:34:05.820Z" } ] }, @@ -687,32 +690,31 @@ "files": [ { "type": "modrinth", - "file_name": "afc-1.0.13-1.20.1.jar", + "file_name": "afc-1.0.14-1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "forge", - "neoforge" + "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/9q4wtMjp/versions/yZ9b2MTz/afc-1.0.13-1.20.1.jar", - "id": "yZ9b2MTz", + "url": "https://cdn.modrinth.com/data/9q4wtMjp/versions/1gtiOOBp/afc-1.0.14-1.20.1.jar", + "id": "1gtiOOBp", "parent_id": "9q4wtMjp", "hashes": { - "sha512": "d8a466ad0477065ac1da0d0eb6be173ca3fdbf3063fb4e686e6af73992afdba67dcbbe84690106d95383a3f81ba0fd5895d06580da6cb22a4d9a1600fdef5085", - "sha1": "64c78e916235aa269384e56b59cf69130e86ade8" + "sha512": "b97815066ed37ee831643efcf86ae05cb1fd6497fba054ea5afb349a2f29767858ea82a705cea273c1a6788eaceb1a81cdae119b3ca149e50b389cb1526f2208", + "sha1": "24bd927904e8110faf34dabaac0cb399f789eb23" }, "required_dependencies": [ - "JaCEZUhg", - "nU0bVIaL" + "nU0bVIaL", + "JaCEZUhg" ], - "size": 5076912, - "date_published": "2024-07-14T18:34:58.784309Z" + "size": 5097284, + "date_published": "2025-05-04T07:43:49.537922Z" }, { "type": "curseforge", - "file_name": "afc-1.0.13-1.20.1.jar", + "file_name": "afc-1.0.14-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -721,16 +723,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5525/258/afc-1.0.13-1.20.1.jar", - "id": "5525258", + "url": "https://edge.forgecdn.net/files/6494/110/afc-1.0.14-1.20.1.jar", + "id": "6494110", "parent_id": "877545", "hashes": { - "sha1": "64c78e916235aa269384e56b59cf69130e86ade8", - "md5": "7acadcf609664412eb5f62502cd96983" + "sha1": "24bd927904e8110faf34dabaac0cb399f789eb23", + "md5": "5195933c25079363b92bf8b4b03dd444" }, - "required_dependencies": [], - "size": 5076912, - "date_published": "2024-07-12T07:24:28.673Z" + "required_dependencies": [ + "302973" + ], + "size": 5097284, + "date_published": "2025-05-04T07:41:58.767Z" } ] }, @@ -1061,69 +1065,6 @@ } ] }, - { - "pakku_id": "Jb0rTeH1FtOgJKci", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "auroras", - "modrinth": "auroras" - }, - "name": { - "curseforge": "Auroras", - "modrinth": "Auroras" - }, - "id": { - "curseforge": "1105290", - "modrinth": "Q7VPWopC" - }, - "files": [ - { - "type": "curseforge", - "file_name": "Auroras-1.20.1-1.6.2.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6040/671/Auroras-1.20.1-1.6.2.jar", - "id": "6040671", - "parent_id": "1105290", - "hashes": { - "sha1": "f7ba6e761a5c439325c93f6d33b6b3feda3182bd", - "md5": "7fff40d58f53aea9c9767ca8b0d0efd3" - }, - "required_dependencies": [], - "size": 2119153, - "date_published": "2024-12-31T19:57:57.427Z" - }, - { - "type": "modrinth", - "file_name": "Auroras-1.20.1-1.6.2.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge", - "neoforge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/Q7VPWopC/versions/Y1QQeYYi/Auroras-1.20.1-1.6.2.jar", - "id": "Y1QQeYYi", - "parent_id": "Q7VPWopC", - "hashes": { - "sha512": "41a678484369764a2acbd98ae153b0eb104a8e201cd5600dd1cd5b31ec4d94d72266044102c2d82273ddbd8c089cd854a18d6b1366ffa1e2aa403b58ecf5cfce", - "sha1": "f7ba6e761a5c439325c93f6d33b6b3feda3182bd" - }, - "required_dependencies": [], - "size": 2119153, - "date_published": "2024-12-31T20:00:15.446246Z" - } - ] - }, { "pakku_id": "IaAWVyyrZaHMumyk", "type": "MOD", @@ -1143,7 +1084,7 @@ "files": [ { "type": "modrinth", - "file_name": "BadOptimizations-2.2.1-1.20.1.jar", + "file_name": "BadOptimizations-2.2.2-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -1152,20 +1093,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/g96Z4WVZ/versions/M0bM4C3I/BadOptimizations-2.2.1-1.20.1.jar", - "id": "M0bM4C3I", + "url": "https://cdn.modrinth.com/data/g96Z4WVZ/versions/5kAwHDZz/BadOptimizations-2.2.2-1.20.1.jar", + "id": "5kAwHDZz", "parent_id": "g96Z4WVZ", "hashes": { - "sha512": "5cb3a2cfe8c84f40ceb506e32c4ef9b8a4e560f7583a54adf7a402121cb285b37aae417d3c94314264a615b4fda0c8b974be115a1c18d783d80537acbc14b736", - "sha1": "5f7a3dcc4ecb52a028ea4ee2010f81465544319e" + "sha512": "df830eefa6143399e5d6c0590f029c5794578c6ec30a7b6cc868dd237a7ad99ecc327e18820dac50296534c7a5688d9ca474e2eecaf6c1835bc235a260a75afe", + "sha1": "04a3b472e31ab2c71ed7ae6051b718a0900302fb" }, "required_dependencies": [], - "size": 439771, - "date_published": "2024-12-04T05:26:46.708509Z" + "size": 440152, + "date_published": "2025-04-28T23:35:52.782680Z" }, { "type": "curseforge", - "file_name": "BadOptimizations-2.2.1-1.20.1.jar", + "file_name": "BadOptimizations-2.2.2-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -1174,16 +1115,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5961/397/BadOptimizations-2.2.1-1.20.1.jar", - "id": "5961397", + "url": "https://edge.forgecdn.net/files/6475/95/BadOptimizations-2.2.2-1.20.1.jar", + "id": "6475095", "parent_id": "949555", "hashes": { - "sha1": "5f7a3dcc4ecb52a028ea4ee2010f81465544319e", - "md5": "eae6018cb889b2d14386c6d40dc4e953" + "sha1": "04a3b472e31ab2c71ed7ae6051b718a0900302fb", + "md5": "b039d1d934cc6c623eae051052c5397f" }, "required_dependencies": [], - "size": 439771, - "date_published": "2024-12-04T05:26:46.540Z" + "size": 440152, + "date_published": "2025-04-28T23:30:09.857Z" } ] }, @@ -1206,7 +1147,7 @@ "files": [ { "type": "modrinth", - "file_name": "balm-forge-1.20.1-7.3.25-all.jar", + "file_name": "balm-forge-1.20.1-7.3.27-all.jar", "mc_versions": [ "1.20", "1.20.1" @@ -1215,20 +1156,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/MBAkmtvl/versions/hk6Zuxrh/balm-forge-1.20.1-7.3.25-all.jar", - "id": "hk6Zuxrh", + "url": "https://cdn.modrinth.com/data/MBAkmtvl/versions/GmMJVPH4/balm-forge-1.20.1-7.3.27-all.jar", + "id": "GmMJVPH4", "parent_id": "MBAkmtvl", "hashes": { - "sha512": "47bf74e27686abe0aabdd19075dbcf3bd67d08c112d21b9000ba077dd8aea652de25294db01437a190fc006c192a46ad387f5a8fe65ae312d568a21a5cafdbd8", - "sha1": "9ea708714bae53e9aac894f034fd7d37840a8ced" + "sha512": "a740f45553c945e0cc255390c5f84db9de2efc0f801c5c3a8580662fd5521b5ee9633c07ae8453f3a54d785f49aef7eed97e279ccd714137c4ab3d560c3600d3", + "sha1": "ca67b7528946937c609d8d3bfb9ea69a56f4b4b4" }, "required_dependencies": [], - "size": 473917, - "date_published": "2025-03-24T07:57:06.335261Z" + "size": 475315, + "date_published": "2025-03-29T09:50:05.774689Z" }, { "type": "curseforge", - "file_name": "balm-forge-1.20.1-7.3.25-all.jar", + "file_name": "balm-forge-1.20.1-7.3.27-all.jar", "mc_versions": [ "1.20.1", "1.20" @@ -1237,16 +1178,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6338/295/balm-forge-1.20.1-7.3.25-all.jar", - "id": "6338295", + "url": "https://edge.forgecdn.net/files/6362/504/balm-forge-1.20.1-7.3.27-all.jar", + "id": "6362504", "parent_id": "531761", "hashes": { - "sha1": "384db53619c4c1f4d22d39c0ba536298737de81a", - "md5": "2e84b519da3eef234fa77d4110429e23" + "sha1": "8c0364c8e7fe47f86505d2a4c53c6022ebd7b9d2", + "md5": "f602ed9d2c722942623165fec6eb538f" }, "required_dependencies": [], - "size": 473917, - "date_published": "2025-03-24T07:57:19.600Z" + "size": 475315, + "date_published": "2025-03-29T09:50:06.680Z" } ] }, @@ -1390,80 +1331,6 @@ } ] }, - { - "pakku_id": "BlX16Sv4PU9CrHXV", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "better-biome-reblend", - "modrinth": "bbrb" - }, - "name": { - "curseforge": "Better Biome Reblend", - "modrinth": "Better Biome Reblend" - }, - "id": { - "curseforge": "1018276", - "modrinth": "Xh8hkQmD" - }, - "files": [ - { - "type": "modrinth", - "file_name": "betterbiomeblend-1.4.2.jar", - "mc_versions": [ - "1.20", - "1.20.1", - "1.20.2", - "1.20.3", - "1.20.4", - "1.20.5", - "1.20.6" - ], - "loaders": [ - "forge", - "neoforge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/Xh8hkQmD/versions/FBM8BqFa/betterbiomeblend-1.4.2.jar", - "id": "FBM8BqFa", - "parent_id": "Xh8hkQmD", - "hashes": { - "sha512": "f3ed0ae1d5c6940f04ba77087f128919c7ec0bb1d98965a967e8ce8a733f90efed4e620f428522579ea8a4fb1b07fe8b750cb6776c6399c0f71a686406cf204e", - "sha1": "02cb03cfd38763177928855083207e8381bf659f" - }, - "required_dependencies": [], - "size": 54314, - "date_published": "2024-05-21T23:33:56.785624Z" - }, - { - "type": "curseforge", - "file_name": "betterbiomeblend-1.4.2.jar", - "mc_versions": [ - "1.20.2", - "1.20.5", - "1.20.3", - "1.20.1", - "1.20", - "1.20.6", - "1.20.4" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5362/745/betterbiomeblend-1.4.2.jar", - "id": "5362745", - "parent_id": "1018276", - "hashes": { - "sha1": "02cb03cfd38763177928855083207e8381bf659f", - "md5": "2381ec29c676484732f7243d1da2db47" - }, - "required_dependencies": [], - "size": 54314, - "date_published": "2024-05-21T23:35:18.680Z" - } - ] - }, { "pakku_id": "ySlgxfqolWwH2GXk", "type": "MOD", @@ -2239,7 +2106,7 @@ "files": [ { "type": "modrinth", - "file_name": "chat_heads-0.13.13-forge-1.20.jar", + "file_name": "chat_heads-0.13.18-forge-1.20.jar", "mc_versions": [ "1.20", "1.20.1" @@ -2248,20 +2115,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/PXpM1WCy/chat_heads-0.13.13-forge-1.20.jar", - "id": "PXpM1WCy", + "url": "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/45EJNtBe/chat_heads-0.13.18-forge-1.20.jar", + "id": "45EJNtBe", "parent_id": "Wb5oqrBJ", "hashes": { - "sha512": "8b990fcdab738d73c03186a0e8fb6abc7927855fb8cbf38896757db8cd9df12178425ba8f8db05b9aaa42aa2eb43a6b356c7e0dd2db31de13b588878afcd5200", - "sha1": "08be219d79d6b42551bc6ade3dd4e9297c46c3d1" + "sha512": "626e418bfab8262970533f790b76257d366b4f6ca595255dd6f6b09ba874bfcdcfad90d1a4136144efc5406c7313a7defef5e8787284ead276f7a52b4d9e5db1", + "sha1": "f775daaaa9ec1b6ec4ad0c217382f9d9a3565e18" }, "required_dependencies": [], - "size": 266987, - "date_published": "2025-02-08T13:33:16.519984Z" + "size": 269811, + "date_published": "2025-05-01T09:28:29.620280Z" }, { "type": "curseforge", - "file_name": "chat_heads-0.13.13-forge-1.20.jar", + "file_name": "chat_heads-0.13.18-forge-1.20.jar", "mc_versions": [ "1.20.1", "1.20" @@ -2270,16 +2137,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6171/85/chat_heads-0.13.13-forge-1.20.jar", - "id": "6171085", + "url": "https://edge.forgecdn.net/files/6483/21/chat_heads-0.13.18-forge-1.20.jar", + "id": "6483021", "parent_id": "407206", "hashes": { - "sha1": "08be219d79d6b42551bc6ade3dd4e9297c46c3d1", - "md5": "d5921acbc304dd65051a5cdbae5072d8" + "sha1": "f775daaaa9ec1b6ec4ad0c217382f9d9a3565e18", + "md5": "0ad4f0d6fce38b3fb9f9b037c701ed99" }, "required_dependencies": [], - "size": 266987, - "date_published": "2025-02-08T13:33:20.770Z" + "size": 269811, + "date_published": "2025-05-01T09:28:33.300Z" } ] }, @@ -3067,7 +2934,7 @@ "files": [ { "type": "modrinth", - "file_name": "CraftPresence-2.5.3+1.20.1-forge.jar", + "file_name": "CraftPresence-2.5.5+1.20.1-forge.jar", "mc_versions": [ "1.20", "1.20.1" @@ -3077,22 +2944,22 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/DFqQfIBR/versions/bidlFDsi/CraftPresence-2.5.3+1.20.1-forge.jar", - "id": "bidlFDsi", + "url": "https://cdn.modrinth.com/data/DFqQfIBR/versions/4Qt4lFlj/CraftPresence-2.5.5+1.20.1-forge.jar", + "id": "4Qt4lFlj", "parent_id": "DFqQfIBR", "hashes": { - "sha512": "1150620372dadfd31c7b67d873897fdba66924bfee71d2b6a24ccd684aa1f5d309f33e818e0c550f2168f59f3d9210d537a1bb892e991f429684c72bd6fe29a8", - "sha1": "7a350de8adcfff12b8606f1ab0de8422974d7e52" + "sha512": "9ba45610311c9db7ddeb3bdb2eeabc284e88f353778bdd811bd8e94b870da70117acdd23d23ae04e2b7c66d7a21bdebb5855ec1ffb886910f584d251c867682e", + "sha1": "33adc43455affa85e1570e1992d034e9b14267d2" }, "required_dependencies": [ "nT86WUER" ], - "size": 2032016, - "date_published": "2025-01-15T02:17:46.973451Z" + "size": 2050483, + "date_published": "2025-04-24T18:12:23.688459Z" }, { "type": "curseforge", - "file_name": "CraftPresence-2.5.3+1.20.1-forge.jar", + "file_name": "CraftPresence-2.5.5+1.20.1-forge.jar", "mc_versions": [ "1.20.1", "1.20" @@ -3102,18 +2969,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6088/518/CraftPresence-2.5.3+1.20.1-forge.jar", - "id": "6088518", + "url": "https://edge.forgecdn.net/files/6460/301/CraftPresence-2.5.5+1.20.1-forge.jar", + "id": "6460301", "parent_id": "297038", "hashes": { - "sha1": "7a350de8adcfff12b8606f1ab0de8422974d7e52", - "md5": "b08827d5e8a3ecfa580a7e660ec4a1f6" + "sha1": "33adc43455affa85e1570e1992d034e9b14267d2", + "md5": "f27f3a73b06aeb6148b68f4688e4f5a3" }, "required_dependencies": [ "1056812" ], - "size": 2032016, - "date_published": "2025-01-15T02:17:23.247Z" + "size": 2050483, + "date_published": "2025-04-24T18:12:02.433Z" } ] }, @@ -3764,7 +3631,7 @@ "files": [ { "type": "modrinth", - "file_name": "CreativeCore_FORGE_v2.12.31_mc1.20.1.jar", + "file_name": "CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -3773,20 +3640,20 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/OsZiaDHq/versions/ERxjjtmi/CreativeCore_FORGE_v2.12.31_mc1.20.1.jar", - "id": "ERxjjtmi", + "url": "https://cdn.modrinth.com/data/OsZiaDHq/versions/IbFWHI5h/CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", + "id": "IbFWHI5h", "parent_id": "OsZiaDHq", "hashes": { - "sha512": "def780dc76c9701ad3947c5f4dba4f75a4717c51bd1b9433967ed5f5ae88a23e03dab61a32b1d8217f86fe9cbaa230a76b8d07c3926bf5b7ff54989602d476b1", - "sha1": "0a4331b9670a3ad2467aac1d766d12cb9c0d4629" + "sha512": "7f7c684a35020a0327e31f5521a363d1c29312a22839c69c5dbdf51d77428298dbd0ca685166c06d8426010448e777e087e141fef6b5093fd67cb73c4bd51f8a", + "sha1": "d49e8c29748677d0a530432f1c1bda4e9865da00" }, "required_dependencies": [], - "size": 1158550, - "date_published": "2025-01-21T14:14:09.469983Z" + "size": 1158417, + "date_published": "2025-04-04T12:49:13.885436Z" }, { "type": "curseforge", - "file_name": "CreativeCore_FORGE_v2.12.31_mc1.20.1.jar", + "file_name": "CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -3795,16 +3662,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6109/933/CreativeCore_FORGE_v2.12.31_mc1.20.1.jar", - "id": "6109933", + "url": "https://edge.forgecdn.net/files/6383/884/CreativeCore_FORGE_v2.12.32_mc1.20.1.jar", + "id": "6383884", "parent_id": "257814", "hashes": { - "sha1": "0a4331b9670a3ad2467aac1d766d12cb9c0d4629", - "md5": "1ba328e0a3dfb34261c234b5f02f8935" + "sha1": "d49e8c29748677d0a530432f1c1bda4e9865da00", + "md5": "7aabe100af362d0df92d8ea1dbc2667b" }, "required_dependencies": [], - "size": 1158550, - "date_published": "2025-01-21T14:14:12.967Z" + "size": 1158417, + "date_published": "2025-04-04T12:49:16.510Z" } ] }, @@ -3925,7 +3792,7 @@ "files": [ { "type": "modrinth", - "file_name": "curios-forge-5.12.1+1.20.1.jar", + "file_name": "curios-forge-5.14.1+1.20.1.jar", "mc_versions": [ "1.20", "1.20.1" @@ -3935,20 +3802,20 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/vvuO3ImH/versions/aFw6K2Jy/curios-forge-5.12.1+1.20.1.jar", - "id": "aFw6K2Jy", + "url": "https://cdn.modrinth.com/data/vvuO3ImH/versions/IPQlZkz1/curios-forge-5.14.1+1.20.1.jar", + "id": "IPQlZkz1", "parent_id": "vvuO3ImH", "hashes": { - "sha512": "3d78f4918056d91641fe50b78011b62aa1b6973fd078bd5d986e3d7411f27dce5a57c2a770f8b4dadaf8ff024d1af099b0b14e7fe6db0619349bd5e15e239df3", - "sha1": "aae5dcf04a670133953839360ad236f0890c0be6" + "sha512": "1373f95fd111c977db2f6adcef8e4eb486a2d926a3e17374692dee4ac3d65857de6446c16922b531aa5ace2c23c666a7fcc28c720b2917c1e04808d15648ba87", + "sha1": "452175b95ad3db6ff58bb8968f6bf7a9d1e0f480" }, "required_dependencies": [], - "size": 395966, - "date_published": "2025-02-26T10:45:02.998362Z" + "size": 398066, + "date_published": "2025-04-13T13:09:28.168539Z" }, { "type": "curseforge", - "file_name": "curios-forge-5.12.1+1.20.1.jar", + "file_name": "curios-forge-5.14.1+1.20.1.jar", "mc_versions": [ "1.20.1", "1.20" @@ -3958,16 +3825,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6238/756/curios-forge-5.12.1+1.20.1.jar", - "id": "6238756", + "url": "https://edge.forgecdn.net/files/6418/456/curios-forge-5.14.1+1.20.1.jar", + "id": "6418456", "parent_id": "309927", "hashes": { - "sha1": "aae5dcf04a670133953839360ad236f0890c0be6", - "md5": "35855cd2282e9499e35f17c23c353c7b" + "sha1": "452175b95ad3db6ff58bb8968f6bf7a9d1e0f480", + "md5": "2fdcc97cbc66c4b2492b407c792e7159" }, "required_dependencies": [], - "size": 395966, - "date_published": "2025-02-26T10:45:05.590Z" + "size": 398066, + "date_published": "2025-04-13T13:09:30.850Z" } ] }, @@ -4337,7 +4204,7 @@ "files": [ { "type": "modrinth", - "file_name": "drippyloadingscreen_forge_3.0.11_MC_1.20.1.jar", + "file_name": "drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4345,23 +4212,23 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/v3CYg2V9/versions/iR874weD/drippyloadingscreen_forge_3.0.11_MC_1.20.1.jar", - "id": "iR874weD", + "url": "https://cdn.modrinth.com/data/v3CYg2V9/versions/SCbkqLQR/drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", + "id": "SCbkqLQR", "parent_id": "v3CYg2V9", "hashes": { - "sha512": "d164b5c7538a9a7e907da9eca01b19b85ba843be18ba734481565647261bb2d6224db4e82778b5c9460a3b95f4f185729518208c002ac0e8a47e547b3869489c", - "sha1": "04a0dacd153d8809877f663057004bba04668bee" + "sha512": "b253926f9faab8ae069bb6cf4a5380ff3cc04071d44216ebc8cd032f68a4ae760320a03059fe5fa2daf6563f6fa39e90fc659b6e64bae94079ae8e74ae8342d5", + "sha1": "ea21436917b84780835b041cd27b7f86679dc6a1" }, "required_dependencies": [ - "Wq5SjeWM", - "J81TRJWm" + "J81TRJWm", + "Wq5SjeWM" ], - "size": 240085, - "date_published": "2025-02-08T20:40:05.906123Z" + "size": 239365, + "date_published": "2025-04-11T20:29:48.819686Z" }, { "type": "curseforge", - "file_name": "drippyloadingscreen_forge_3.0.11_MC_1.20.1.jar", + "file_name": "drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4369,19 +4236,19 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6172/518/drippyloadingscreen_forge_3.0.11_MC_1.20.1.jar", - "id": "6172518", + "url": "https://edge.forgecdn.net/files/6412/211/drippyloadingscreen_forge_3.0.12_MC_1.20.1.jar", + "id": "6412211", "parent_id": "511770", "hashes": { - "sha1": "04a0dacd153d8809877f663057004bba04668bee", - "md5": "a49a0e0bf7b5b48204328ed415e6bedd" + "sha1": "ea21436917b84780835b041cd27b7f86679dc6a1", + "md5": "a8cbcca4541cb6eb794ded4a10c57ac9" }, "required_dependencies": [ "410295", "367706" ], - "size": 240085, - "date_published": "2025-02-08T20:40:01.767Z" + "size": 239365, + "date_published": "2025-04-11T20:29:43.010Z" } ] }, @@ -4404,7 +4271,7 @@ "files": [ { "type": "modrinth", - "file_name": "emi-1.1.20+1.20.1+forge.jar", + "file_name": "emi-1.1.22+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -4412,20 +4279,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/fRiHVvU7/versions/3fJ5PcgX/emi-1.1.20+1.20.1+forge.jar", - "id": "3fJ5PcgX", + "url": "https://cdn.modrinth.com/data/fRiHVvU7/versions/WtJS5tVw/emi-1.1.22+1.20.1+forge.jar", + "id": "WtJS5tVw", "parent_id": "fRiHVvU7", "hashes": { - "sha512": "32ecb901c18cadc76059afebcfa889f72985252205c18863b70048bbba456c938ce135c085caadea76cd9fa96843e4b471619f82b98ef56a628726e39d4a822b", - "sha1": "f6ee97d1f49e106b2dc887df3c238bb06b84bada" + "sha512": "fcc80ee419a96682d157e8fd0993e0f13031dafc6399dabb17b9696636e791a903e7d3d15131edd3b533544454f072c4b19e92b146c80d4be6980bb20a0dbb7b", + "sha1": "d8049d6ec86befcd100a0ff0fc8ebc289f735997" }, "required_dependencies": [], - "size": 1028204, - "date_published": "2025-02-18T04:58:54.075523Z" + "size": 1048567, + "date_published": "2025-04-14T03:37:26.013177Z" }, { "type": "curseforge", - "file_name": "emi-1.1.20+1.20.1+forge.jar", + "file_name": "emi-1.1.22+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -4433,16 +4300,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6205/514/emi-1.1.20+1.20.1+forge.jar", - "id": "6205514", + "url": "https://edge.forgecdn.net/files/6420/945/emi-1.1.22+1.20.1+forge.jar", + "id": "6420945", "parent_id": "580555", "hashes": { - "sha1": "f6ee97d1f49e106b2dc887df3c238bb06b84bada", - "md5": "dc29b4d99258b76f28aa3ad5ce5e6e2d" + "sha1": "d8049d6ec86befcd100a0ff0fc8ebc289f735997", + "md5": "441c582c6e8a1d6fd9e3d16a27c1a39e" }, "required_dependencies": [], - "size": 1028204, - "date_published": "2025-02-18T04:58:55.627Z" + "size": 1048567, + "date_published": "2025-04-14T03:37:30.690Z" } ] }, @@ -4606,7 +4473,7 @@ "files": [ { "type": "modrinth", - "file_name": "EnhancedVisuals_FORGE_v1.8.1_mc1.20.1.jar", + "file_name": "EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4615,22 +4482,22 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/KjL0jE2w/versions/mi9Ew0CA/EnhancedVisuals_FORGE_v1.8.1_mc1.20.1.jar", - "id": "mi9Ew0CA", + "url": "https://cdn.modrinth.com/data/KjL0jE2w/versions/m3cjYtkA/EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar", + "id": "m3cjYtkA", "parent_id": "KjL0jE2w", "hashes": { - "sha512": "300b4dc6e5dc70b4fa003bfae60ae2eaa3fb7b017b5be0a040363b2bcef42453ef8621be92b28167697436ea269da5a2105547668fc7006b279b23633a28db5b", - "sha1": "647b4dfdb721fc873092ccfaca40c03235034ed8" + "sha512": "d3e6fca63651f262b07a75053453beb8ccf963f096a8aaffef13cc16a27666e3b31bb4eab36282c27b3c7586b030cb53f74b7534f756c26d5f2b9b745cc39941", + "sha1": "780caf39421ccfc495d14cb287856ced97c32985" }, "required_dependencies": [ "OsZiaDHq" ], - "size": 4726281, - "date_published": "2024-05-25T08:46:10.730967Z" + "size": 4726286, + "date_published": "2025-02-14T13:11:40.681177Z" }, { "type": "curseforge", - "file_name": "EnhancedVisuals_FORGE_v1.8.1_mc1.20.1.jar", + "file_name": "EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4639,18 +4506,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5370/490/EnhancedVisuals_FORGE_v1.8.1_mc1.20.1.jar", - "id": "5370490", + "url": "https://edge.forgecdn.net/files/6192/498/EnhancedVisuals_FORGE_v1.8.2_mc1.20.1.jar", + "id": "6192498", "parent_id": "255389", "hashes": { - "sha1": "647b4dfdb721fc873092ccfaca40c03235034ed8", - "md5": "de2418c4becb5e0030d3c8d35659d101" + "sha1": "780caf39421ccfc495d14cb287856ced97c32985", + "md5": "8df8c9043267068df9f4e52de0116c93" }, "required_dependencies": [ "257814" ], - "size": 4726281, - "date_published": "2024-05-25T08:46:14.527Z" + "size": 4726286, + "date_published": "2025-02-14T13:11:44.420Z" } ] }, @@ -4674,7 +4541,7 @@ "files": [ { "type": "modrinth", - "file_name": "entityculling-forge-1.7.3-mc1.20.1.jar", + "file_name": "entityculling-forge-1.7.4-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -4682,37 +4549,37 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/NNAgCjsB/versions/SdwRMvNg/entityculling-forge-1.7.3-mc1.20.1.jar", - "id": "SdwRMvNg", + "url": "https://cdn.modrinth.com/data/NNAgCjsB/versions/kMC7OLoZ/entityculling-forge-1.7.4-mc1.20.1.jar", + "id": "kMC7OLoZ", "parent_id": "NNAgCjsB", "hashes": { - "sha512": "2a5989064f58342b98045857113aa6e9b7889dcb92bebee2b2de3f97a29f52d26d4b29d7ce4026e6420992064e0f86397e00aeb5777a4d6a568588e42381c088", - "sha1": "09c17c8794a0e00d2ccb51b8d7c1b812498c5c33" + "sha512": "b9d36a1320dbe41deec4b19b292b6936c3b9f699621beb148330e7dd8b4d63e9107967a6bcd658d89db69e953d8690c33ce686dc17f37862be7e53f200f987c0", + "sha1": "f68ae39bd2a78d405a193757fd328a60ceea0323" }, "required_dependencies": [], - "size": 77548, - "date_published": "2025-02-25T19:44:40.265577Z" + "size": 75290, + "date_published": "2025-03-27T15:50:42.857730Z" }, { "type": "curseforge", - "file_name": "entityculling-forge-1.7.3-mc1.20.1.jar", + "file_name": "entityculling-forge-1.7.4-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ "forge" ], - "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6236/056/entityculling-forge-1.7.3-mc1.20.1.jar", - "id": "6236056", + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6355/861/entityculling-forge-1.7.4-mc1.20.1.jar", + "id": "6355861", "parent_id": "448233", "hashes": { - "sha1": "09c17c8794a0e00d2ccb51b8d7c1b812498c5c33", - "md5": "34ae0d54004066bac5c13ab2129978b8" + "sha1": "f68ae39bd2a78d405a193757fd328a60ceea0323", + "md5": "a6bc8ba692b23fac2aa0e6d3afad47cf" }, "required_dependencies": [], - "size": 77548, - "date_published": "2025-02-25T19:44:37.793Z" + "size": 75290, + "date_published": "2025-03-27T15:50:42.303Z" } ] }, @@ -4835,30 +4702,9 @@ "modrinth": "hB899VmG" }, "files": [ - { - "type": "curseforge", - "file_name": "exposure-1.20.1-1.7.10-forge.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6304/406/exposure-1.20.1-1.7.10-forge.jar", - "id": "6304406", - "parent_id": "871755", - "hashes": { - "sha1": "a8595144c369937987152ba3661f04c821443c4d", - "md5": "b7772ed21e7a5422c5d6d85991aba2bc" - }, - "required_dependencies": [], - "size": 1333973, - "date_published": "2025-03-14T19:42:36.340Z" - }, { "type": "modrinth", - "file_name": "exposure-1.20.1-1.7.10-forge.jar", + "file_name": "exposure-1.20.1-1.7.13-forge.jar", "mc_versions": [ "1.20.1" ], @@ -4866,16 +4712,37 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/hB899VmG/versions/8oUcWZTh/exposure-1.20.1-1.7.10-forge.jar", - "id": "8oUcWZTh", + "url": "https://cdn.modrinth.com/data/hB899VmG/versions/xmqarwFl/exposure-1.20.1-1.7.13-forge.jar", + "id": "xmqarwFl", "parent_id": "hB899VmG", "hashes": { - "sha512": "bb91b3d59414bb58bdd24e1570fee33be714ec7e816d3f70b2196dd597a7b1da3420f7bc781986f8a20a6f87d89f6c0a80a4f1f4ea4ee0e6f789610fc7148254", - "sha1": "a8595144c369937987152ba3661f04c821443c4d" + "sha512": "ac2292b91dd3dc1a5e9524350e13992a50c6c7c5d9121f47d39d07e95467878de839961d2e32f28fd417910f1815a9bb274736a621b03bb9ff0bba634465a78a", + "sha1": "d02564001309a6129f519c6fcbf9f920e6d2036b" }, "required_dependencies": [], - "size": 1333973, - "date_published": "2025-03-14T19:42:36.029110Z" + "size": 1333908, + "date_published": "2025-04-18T13:21:00.833767Z" + }, + { + "type": "curseforge", + "file_name": "exposure-1.20.1-1.7.13-forge.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6436/177/exposure-1.20.1-1.7.13-forge.jar", + "id": "6436177", + "parent_id": "871755", + "hashes": { + "sha1": "d02564001309a6129f519c6fcbf9f920e6d2036b", + "md5": "eaf0495f4119654986c92f6a925691e4" + }, + "required_dependencies": [], + "size": 1333908, + "date_published": "2025-04-18T13:19:19.177Z" } ] }, @@ -5087,7 +4954,7 @@ "files": [ { "type": "curseforge", - "file_name": "ftb-filter-system-forge-1.0.2.jar", + "file_name": "ftb-filter-system-forge-20.0.1.jar", "mc_versions": [ "1.20.1" ], @@ -5095,19 +4962,19 @@ "neoforge", "forge" ], - "release_type": "beta", - "url": "https://edge.forgecdn.net/files/4926/70/ftb-filter-system-forge-1.0.2.jar", - "id": "4926070", + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6466/153/ftb-filter-system-forge-20.0.1.jar", + "id": "6466153", "parent_id": "943925", "hashes": { - "sha1": "d45c6bc341e50ba1b133c378de8938a3d349f4f3", - "md5": "582fc5a14bd1b74f33552676f4408000" + "sha1": "812de9759fe87cb405e14cbb0fe5b72a7ee11f42", + "md5": "e94ddd33cf0d6ed5a5eeaefcea8f5089" }, "required_dependencies": [ "419699" ], - "size": 196440, - "date_published": "2023-12-04T14:11:50.307Z" + "size": 197884, + "date_published": "2025-04-26T08:49:57.267Z" } ] }, @@ -5167,7 +5034,7 @@ "files": [ { "type": "curseforge", - "file_name": "ftb-quests-forge-2001.4.11.jar", + "file_name": "ftb-quests-forge-2001.4.13.jar", "mc_versions": [ "1.20.1" ], @@ -5175,20 +5042,20 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6167/56/ftb-quests-forge-2001.4.11.jar", - "id": "6167056", + "url": "https://edge.forgecdn.net/files/6431/737/ftb-quests-forge-2001.4.13.jar", + "id": "6431737", "parent_id": "289412", "hashes": { - "sha1": "8d128193018b64efec3a6dda14c7cffbca7d20ec", - "md5": "9a517a062ee32a9daba22b65a534b415" + "sha1": "ad087e2dc897c7e2eea36901a05da9518bc0673f", + "md5": "182d3bc7450d50ba9b71e5a08e903d9e" }, "required_dependencies": [ "404468", "404465", "419699" ], - "size": 1192604, - "date_published": "2025-02-07T10:19:05.973Z" + "size": 1215007, + "date_published": "2025-04-17T08:08:04.603Z" } ] }, @@ -5246,7 +5113,7 @@ "files": [ { "type": "curseforge", - "file_name": "ftb-teams-forge-2001.3.0.jar", + "file_name": "ftb-teams-forge-2001.3.1.jar", "mc_versions": [ "1.20.1" ], @@ -5254,19 +5121,19 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5267/190/ftb-teams-forge-2001.3.0.jar", - "id": "5267190", + "url": "https://edge.forgecdn.net/files/6130/786/ftb-teams-forge-2001.3.1.jar", + "id": "6130786", "parent_id": "404468", "hashes": { - "sha1": "bb5a1f3ac9d44c5e9b319768e7166e877879aaaa", - "md5": "31acf433df9d13282fa12bd6974c44f9" + "sha1": "c2af94e0b86631cb75daa8de2377ff72527651ca", + "md5": "98efb58ba7cecfb39034544eced0389f" }, "required_dependencies": [ - "419699", - "404465" + "404465", + "419699" ], - "size": 247666, - "date_published": "2024-04-16T09:41:27.820Z" + "size": 248592, + "date_published": "2025-01-27T16:07:52.110Z" } ] }, @@ -5289,7 +5156,7 @@ "files": [ { "type": "curseforge", - "file_name": "ftb-xmod-compat-forge-2.1.2.jar", + "file_name": "ftb-xmod-compat-forge-2.1.3.jar", "mc_versions": [ "1.20.1" ], @@ -5297,19 +5164,19 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6046/20/ftb-xmod-compat-forge-2.1.2.jar", - "id": "6046020", + "url": "https://edge.forgecdn.net/files/6402/486/ftb-xmod-compat-forge-2.1.3.jar", + "id": "6402486", "parent_id": "889915", "hashes": { - "sha1": "68e497eadb936bf9e92591f9c2e34288a52b01f4", - "md5": "270efcd953102996e26d318ef8c3c09d" + "sha1": "0584f628d2bc6a612d79dee368324357ebae1423", + "md5": "6d01bd4bc73c6ce36d0d91c56bb27772" }, "required_dependencies": [ - "404465", - "419699" + "419699", + "404465" ], - "size": 129682, - "date_published": "2025-01-02T15:28:42.713Z" + "size": 129725, + "date_published": "2025-04-09T10:47:38.837Z" } ] }, @@ -5336,7 +5203,7 @@ "files": [ { "type": "modrinth", - "file_name": "fancymenu_forge_3.4.6_MC_1.20.1.jar", + "file_name": "fancymenu_forge_3.5.0_MC_1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5344,23 +5211,23 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/Wq5SjeWM/versions/UQK8sljp/fancymenu_forge_3.4.6_MC_1.20.1.jar", - "id": "UQK8sljp", + "url": "https://cdn.modrinth.com/data/Wq5SjeWM/versions/FRgAQGvw/fancymenu_forge_3.5.0_MC_1.20.1.jar", + "id": "FRgAQGvw", "parent_id": "Wq5SjeWM", "hashes": { - "sha512": "cf75b236d9c9d459eed187b2c52be837ebaea0bac6fc447e198fa2994507b80fac0d5a998b12a1c30e4718e809379845e52f19ede53590cc43c357f82a50fc1c", - "sha1": "9e7fc73dacca36b8b93fc5e67ed919dd295ae9c9" + "sha512": "09470968e5b2fd6c4570f1868febc5dd0d2164d7fc844e948253f0fc97cb781ec0b6b4b2385bac84db83920a8a5b3a72dc62d69d93dc12327b6cad67d636c991", + "sha1": "3217f4a8fdaa919fc11d03f07306edc868efa0d6" }, "required_dependencies": [ - "J81TRJWm", - "CVT4pFB2" + "CVT4pFB2", + "J81TRJWm" ], - "size": 3236834, - "date_published": "2025-02-24T20:03:26.499398Z" + "size": 3280422, + "date_published": "2025-04-10T23:23:20.411380Z" }, { "type": "curseforge", - "file_name": "fancymenu_forge_3.4.6_MC_1.20.1.jar", + "file_name": "fancymenu_forge_3.5.0_MC_1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5368,19 +5235,19 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6231/136/fancymenu_forge_3.4.6_MC_1.20.1.jar", - "id": "6231136", + "url": "https://edge.forgecdn.net/files/6408/859/fancymenu_forge_3.5.0_MC_1.20.1.jar", + "id": "6408859", "parent_id": "367706", "hashes": { - "sha1": "9e7fc73dacca36b8b93fc5e67ed919dd295ae9c9", - "md5": "cf03ba79512e5466e253c27889f7ec94" + "sha1": "3217f4a8fdaa919fc11d03f07306edc868efa0d6", + "md5": "4da459780fb51757bd0e467460c01e63" }, "required_dependencies": [ - "410295", - "938643" + "938643", + "410295" ], - "size": 3236834, - "date_published": "2025-02-24T20:03:16.967Z" + "size": 3280422, + "date_published": "2025-04-10T23:23:12.083Z" } ] }, @@ -5763,32 +5630,9 @@ "modrinth": "h1WsEaNH" }, "files": [ - { - "type": "curseforge", - "file_name": "firmacivplus-1.0.0-1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6426/37/firmacivplus-1.0.0-1.20.1.jar", - "id": "6426037", - "parent_id": "1243743", - "hashes": { - "sha1": "9bdb54e464ca7ad507242d9f2d12c1b8c0761625", - "md5": "8d57bbca2c9c48353fbedcef674387a1" - }, - "required_dependencies": [ - "714158" - ], - "size": 7027607, - "date_published": "2025-04-15T15:21:19.367Z" - }, { "type": "modrinth", - "file_name": "firmacivplus-1.0.0-1.20.1.jar", + "file_name": "firmacivplus-1.0.1-1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5796,18 +5640,41 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/h1WsEaNH/versions/YGsrlUXs/firmacivplus-1.0.0-1.20.1.jar", - "id": "YGsrlUXs", + "url": "https://cdn.modrinth.com/data/h1WsEaNH/versions/tamQr4CM/firmacivplus-1.0.1-1.20.1.jar", + "id": "tamQr4CM", "parent_id": "h1WsEaNH", "hashes": { - "sha512": "903faad27e53240af384ab78178bdc7cd772556d72da755cf6d1fcd6a0588b2e47d185fe5deb9dc60f03d500d13d5e4e175e6b09c2309b0fae56dd84ea95e7c6", - "sha1": "9bdb54e464ca7ad507242d9f2d12c1b8c0761625" + "sha512": "4785f2dedcd5f34b8b3f9f07869d1928af324a7b6bf5807a83837aa6e78b7ec80a2661073b4e91e6061d8ef30f0eb4776208e28cdc51a5b92495b30e31ad1707", + "sha1": "5d21f85a95332dc002cd26ce085934a0d3605e08" }, "required_dependencies": [ "6o49a8Vz" ], - "size": 7027607, - "date_published": "2025-03-09T20:59:03.534218Z" + "size": 7028524, + "date_published": "2025-05-03T17:00:39.650381Z" + }, + { + "type": "curseforge", + "file_name": "firmacivplus-1.0.1-1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6491/888/firmacivplus-1.0.1-1.20.1.jar", + "id": "6491888", + "parent_id": "1243743", + "hashes": { + "sha1": "5d21f85a95332dc002cd26ce085934a0d3605e08", + "md5": "3b710aaeab30cd4846047f3eb464cec2" + }, + "required_dependencies": [ + "714158" + ], + "size": 7028524, + "date_published": "2025-05-03T17:04:21.067Z" } ] }, @@ -5830,7 +5697,7 @@ "files": [ { "type": "modrinth", - "file_name": "Firmalife-1.20.1-2.1.17.jar", + "file_name": "Firmalife-1.20.1-2.1.18.jar", "mc_versions": [ "1.20.1" ], @@ -5839,22 +5706,22 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/5bKeBHw2/versions/gJiot3h6/Firmalife-1.20.1-2.1.17.jar", - "id": "gJiot3h6", + "url": "https://cdn.modrinth.com/data/5bKeBHw2/versions/3pqbYHWH/Firmalife-1.20.1-2.1.18.jar", + "id": "3pqbYHWH", "parent_id": "5bKeBHw2", "hashes": { - "sha512": "1993b13c8119d635b208c8b9a938860439f161829b678773a663c3c2017bdfbe32ab9bc196833258251419d456a1bf008e376ea7fc7ea5d417784cbed6040ea0", - "sha1": "9f25104803df71aac481885d20282d46dd624a01" + "sha512": "1a135f81b4249972213758cac6d663bf6c8bb846bd14328b6d04b0664c031fd43014b258258c8e461c96d1c7e32f61dd36f213cd51aafd3e72377ba60ebd7c89", + "sha1": "de9ec2980e5f09a28415e489aa24eec5840a010d" }, "required_dependencies": [ "JaCEZUhg" ], - "size": 4532304, - "date_published": "2025-04-03T02:22:20.561569Z" + "size": 4597517, + "date_published": "2025-04-19T02:25:00.538403Z" }, { "type": "curseforge", - "file_name": "Firmalife-1.20.1-2.1.17.jar", + "file_name": "Firmalife-1.20.1-2.1.18.jar", "mc_versions": [ "1.20.1" ], @@ -5863,18 +5730,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6379/742/Firmalife-1.20.1-2.1.17.jar", - "id": "6379742", + "url": "https://edge.forgecdn.net/files/6438/438/Firmalife-1.20.1-2.1.18.jar", + "id": "6438438", "parent_id": "453394", "hashes": { - "sha1": "9f25104803df71aac481885d20282d46dd624a01", - "md5": "a954970500b6b78adf392e696d1e4c47" + "sha1": "de9ec2980e5f09a28415e489aa24eec5840a010d", + "md5": "1275fd720bd36ed1144e558d8c395267" }, "required_dependencies": [ "302973" ], - "size": 4532304, - "date_published": "2025-04-03T02:22:17.440Z" + "size": 4597517, + "date_published": "2025-04-19T02:24:56.657Z" } ] }, @@ -5896,30 +5763,9 @@ }, "redistributable": false, "files": [ - { - "type": "curseforge", - "file_name": "firstperson-forge-2.4.8-mc1.20.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6011/928/firstperson-forge-2.4.8-mc1.20.1.jar", - "id": "6011928", - "parent_id": "333287", - "hashes": { - "sha1": "1ab303f2e074acf090bb150b929d0d5737dc1183", - "md5": "c1c1281332086f06f3906774f36503ed" - }, - "required_dependencies": [], - "size": 126470, - "date_published": "2024-12-21T23:24:09.477Z" - }, { "type": "modrinth", - "file_name": "firstperson-forge-2.4.8-mc1.20.1.jar", + "file_name": "firstperson-forge-2.4.9-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -5927,16 +5773,41 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/H5XMjpHi/versions/iwodXe68/firstperson-forge-2.4.8-mc1.20.1.jar", - "id": "iwodXe68", + "url": "https://cdn.modrinth.com/data/H5XMjpHi/versions/QgNMKdd7/firstperson-forge-2.4.9-mc1.20.1.jar", + "id": "QgNMKdd7", "parent_id": "H5XMjpHi", "hashes": { - "sha512": "f2bcd626c3b634959d1dc375c9ef4df379b137a8f8f7120553e08fec87199bb1f8c690bd0395f6c1fa49d5610f1fbb58ac952dc8d75bb7fc985759c5c5113e8a", - "sha1": "1ab303f2e074acf090bb150b929d0d5737dc1183" + "sha512": "d1d7c0cffe0b1110c4ef27b02578de225dd1506c33a76b988bc512894224610838c63d7b8b0fecd125271f26aef9a7529bfe29e03f30fdf6abb3422c391d0b96", + "sha1": "b7e05fb6072e8b39512ce0485186cfc9751bf2ee" }, - "required_dependencies": [], - "size": 126470, - "date_published": "2024-12-21T23:24:11.155518Z" + "required_dependencies": [ + "MPCX6s5C" + ], + "size": 127349, + "date_published": "2025-03-27T18:13:27.545948Z" + }, + { + "type": "curseforge", + "file_name": "firstperson-forge-2.4.9-mc1.20.1.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6356/575/firstperson-forge-2.4.9-mc1.20.1.jar", + "id": "6356575", + "parent_id": "333287", + "hashes": { + "sha1": "b7e05fb6072e8b39512ce0485186cfc9751bf2ee", + "md5": "10ef2db76496d99760bc02a0b8edf4fc" + }, + "required_dependencies": [ + "433760" + ], + "size": 127349, + "date_published": "2025-03-27T18:13:26.607Z" } ] }, @@ -6193,7 +6064,7 @@ "files": [ { "type": "modrinth", - "file_name": "fzzy_config-0.6.2+1.20.1+forge.jar", + "file_name": "fzzy_config-0.6.9+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -6202,22 +6073,22 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/hYykXjDp/versions/QOLmBnu1/fzzy_config-0.6.2+1.20.1+forge.jar", - "id": "QOLmBnu1", + "url": "https://cdn.modrinth.com/data/hYykXjDp/versions/Jp0w2D0o/fzzy_config-0.6.9+1.20.1+forge.jar", + "id": "Jp0w2D0o", "parent_id": "hYykXjDp", "hashes": { - "sha512": "40cc9d874dfe2ed2cf4dd6115de3d508bd843ae07f3e0cb9c6c9851b5d58a92da316c177e1c510ad4d9754319ade387c2a0beb966168f87d1acfdac29f544f22", - "sha1": "a5bc43c8a4d999981aba47a1b0bf3fab3fa39f31" + "sha512": "dfc78eb1f07767c9b0d69f75a2d9160d470dd25c366fbbc149dbea0fecc018225d6513be9aad6b06d5bebbc4e40773da1cbd58c2a50e61aa2a03c221e5523a82", + "sha1": "749df31acdf11c562ad689b26ef478da37807f94" }, "required_dependencies": [ "ordsPcFz" ], - "size": 1865000, - "date_published": "2025-01-18T00:11:40.677921Z" + "size": 2158962, + "date_published": "2025-04-09T23:12:08.437182Z" }, { "type": "curseforge", - "file_name": "fzzy_config-0.6.2+1.20.1+forge.jar", + "file_name": "fzzy_config-0.6.9+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -6226,18 +6097,18 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6097/787/fzzy_config-0.6.2+1.20.1+forge.jar", - "id": "6097787", + "url": "https://edge.forgecdn.net/files/6405/142/fzzy_config-0.6.9+1.20.1+forge.jar", + "id": "6405142", "parent_id": "1005914", "hashes": { - "sha1": "a5bc43c8a4d999981aba47a1b0bf3fab3fa39f31", - "md5": "bb2c58275b895f728e29fc557a137719" + "sha1": "749df31acdf11c562ad689b26ef478da37807f94", + "md5": "ed89b0cc00e3cf711112aba8ad0c58ba" }, "required_dependencies": [ "351264" ], - "size": 1865000, - "date_published": "2025-01-18T00:11:31.747Z" + "size": 2158962, + "date_published": "2025-04-09T23:12:00.580Z" } ] }, @@ -9091,68 +8962,6 @@ } ] }, - { - "pakku_id": "LygBbX5d2RFkLrzE", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "model-gap-fix", - "modrinth": "modelfix" - }, - "name": { - "curseforge": "Model Gap Fix", - "modrinth": "Model Gap Fix" - }, - "id": { - "curseforge": "676136", - "modrinth": "QdG47OkI" - }, - "files": [ - { - "type": "modrinth", - "file_name": "modelfix-1.15.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/QdG47OkI/versions/og4A1nN8/modelfix-1.15.jar", - "id": "og4A1nN8", - "parent_id": "QdG47OkI", - "hashes": { - "sha512": "b46d6b507b12c63a6fa96ca0571c1b94fc6525e48fdfdbcaa018aa3c4a4801da5c4bb80a173f7cca04b1591854147260163716e25041363b8640f20ff1c736d4", - "sha1": "5bdda0781bf9dfb5f992a7aa2bee64d5d3fe0b84" - }, - "required_dependencies": [], - "size": 45246, - "date_published": "2024-03-21T17:21:41.435809Z" - }, - { - "type": "curseforge", - "file_name": "modelfix-1.15.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/5200/949/modelfix-1.15.jar", - "id": "5200949", - "parent_id": "676136", - "hashes": { - "sha1": "5bdda0781bf9dfb5f992a7aa2bee64d5d3fe0b84", - "md5": "9afd060094be1353e818bd2b7c249cc9" - }, - "required_dependencies": [], - "size": 45246, - "date_published": "2024-03-21T17:21:36.727Z" - } - ] - }, { "pakku_id": "14yvPa78Z5Fni5hX", "type": "MOD", @@ -9172,7 +8981,7 @@ "files": [ { "type": "modrinth", - "file_name": "modernfix-forge-5.20.2+mc1.20.1.jar", + "file_name": "modernfix-forge-5.21.0+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -9180,20 +8989,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/nmDcB62a/versions/LmgaF8pW/modernfix-forge-5.20.2+mc1.20.1.jar", - "id": "LmgaF8pW", + "url": "https://cdn.modrinth.com/data/nmDcB62a/versions/5m06ltZw/modernfix-forge-5.21.0+mc1.20.1.jar", + "id": "5m06ltZw", "parent_id": "nmDcB62a", "hashes": { - "sha512": "e34badc237b2ef3e763d0d45a8a0d0c9f361e6b87ce02ccc92bd978855736713ace08069d7f3f78331b109f86dfa824a76329fed1affa9b2c63c195112b03c13", - "sha1": "23d49f71d56de4fdb8ec046507a42c48594daadb" + "sha512": "892bcd98869df037db9fa8bbefe62f48e9b0ae6ee65d5768a9a931a3fc3a8aaa436f35f5c643b36dd45545534f26b87a536ec955b8f474d79409ab9193ac6f70", + "sha1": "95eb1238db9d8229d57ee19999ff5478f092602e" }, "required_dependencies": [], - "size": 821631, - "date_published": "2025-01-26T00:47:27.319846Z" + "size": 824640, + "date_published": "2025-04-06T19:29:11.851601Z" }, { "type": "curseforge", - "file_name": "modernfix-forge-5.20.2+mc1.20.1.jar", + "file_name": "modernfix-forge-5.21.0+mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -9201,16 +9010,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6125/143/modernfix-forge-5.20.2+mc1.20.1.jar", - "id": "6125143", + "url": "https://edge.forgecdn.net/files/6392/741/modernfix-forge-5.21.0+mc1.20.1.jar", + "id": "6392741", "parent_id": "790626", "hashes": { - "sha1": "23d49f71d56de4fdb8ec046507a42c48594daadb", - "md5": "05ba904400eb9505f619689b0f5a220c" + "sha1": "95eb1238db9d8229d57ee19999ff5478f092602e", + "md5": "3231eb6ba18ea27d8dd3a66fc4fc952e" }, "required_dependencies": [], - "size": 821631, - "date_published": "2025-01-26T00:47:23.323Z" + "size": 824640, + "date_published": "2025-04-06T19:29:07.607Z" } ] }, @@ -9233,7 +9042,7 @@ "files": [ { "type": "modrinth", - "file_name": "moonlight-1.20-2.13.51-forge.jar", + "file_name": "moonlight-1.20-2.13.83-forge.jar", "mc_versions": [ "1.20.1" ], @@ -9242,20 +9051,20 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/twkfQtEc/versions/Qyu7D5xj/moonlight-1.20-2.13.51-forge.jar", - "id": "Qyu7D5xj", + "url": "https://cdn.modrinth.com/data/twkfQtEc/versions/xDOrVsJi/moonlight-1.20-2.13.83-forge.jar", + "id": "xDOrVsJi", "parent_id": "twkfQtEc", "hashes": { - "sha512": "2108dd8186a88ef4a60a75b74769f3dbfefefe7193eb863ed4c2b5ffbd2d3f97adefc115a2ac376b5185cf64bd1649b0d6b189024f11bda3329470004156e73d", - "sha1": "c32ada3857b70dff88aa698e4c2f0a1d36b956d6" + "sha512": "9ed0762915013ecd5c31e082af35ebfeb73dace5c05b2b559d0ac3c7f37ae8440fbfb9bc3aedaca4d1bc3f4d1eb34a13686bf23289843013b97fcbfb81019fa0", + "sha1": "bb8a7b044a384c764b0a521919d63fd1649e5ebc" }, "required_dependencies": [], - "size": 1223674, - "date_published": "2025-01-18T17:33:40.656520Z" + "size": 1254345, + "date_published": "2025-04-28T20:02:01.549258Z" }, { "type": "curseforge", - "file_name": "moonlight-1.20-2.13.51-forge.jar", + "file_name": "moonlight-1.20-2.13.83-forge.jar", "mc_versions": [ "1.20.1" ], @@ -9264,16 +9073,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6100/164/moonlight-1.20-2.13.51-forge.jar", - "id": "6100164", + "url": "https://edge.forgecdn.net/files/6474/665/moonlight-1.20-2.13.83-forge.jar", + "id": "6474665", "parent_id": "499980", "hashes": { - "sha1": "c32ada3857b70dff88aa698e4c2f0a1d36b956d6", - "md5": "37ec156a26377b695017e4568990427f" + "sha1": "bb8a7b044a384c764b0a521919d63fd1649e5ebc", + "md5": "05d183da7a21b4955de74715f89fefb6" }, "required_dependencies": [], - "size": 1223674, - "date_published": "2025-01-18T17:33:26.290Z" + "size": 1254345, + "date_published": "2025-04-28T20:01:47.290Z" } ] }, @@ -9759,7 +9568,7 @@ "files": [ { "type": "modrinth", - "file_name": "notenoughanimations-forge-1.9.2-mc1.20.1.jar", + "file_name": "notenoughanimations-forge-1.9.3-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], @@ -9767,37 +9576,37 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/MPCX6s5C/versions/9nsxApYz/notenoughanimations-forge-1.9.2-mc1.20.1.jar", - "id": "9nsxApYz", + "url": "https://cdn.modrinth.com/data/MPCX6s5C/versions/a2Q3t34g/notenoughanimations-forge-1.9.3-mc1.20.1.jar", + "id": "a2Q3t34g", "parent_id": "MPCX6s5C", "hashes": { - "sha512": "972bff34a36cdb198138372e30f975503a670897886a76ee6f3db537c08a73a635f6b6f56fcfcb54e449cd60b87e783a6363e8afdc24e599e78957e45bda6c73", - "sha1": "c9666025164bcafed9e6d03057ec8a31ebbce170" + "sha512": "9e6d501d6409c991d6d80474e76267ad7b8dfe91b5a8c2e7f8302726f4cf44a66e4ba4b6ff99b60f96f8cfc8cbe5e656a26dbc709aaa1cc8c9f7ae70f62491a4", + "sha1": "68e3ab1b89d39a48362a4741a50c73e7ebb2fe7a" }, "required_dependencies": [], - "size": 455945, - "date_published": "2025-02-10T18:15:03.719362Z" + "size": 453719, + "date_published": "2025-03-27T17:09:33.153226Z" }, { "type": "curseforge", - "file_name": "notenoughanimations-forge-1.9.2-mc1.20.1.jar", + "file_name": "notenoughanimations-forge-1.9.3-mc1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ "forge" ], - "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6179/086/notenoughanimations-forge-1.9.2-mc1.20.1.jar", - "id": "6179086", + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6356/205/notenoughanimations-forge-1.9.3-mc1.20.1.jar", + "id": "6356205", "parent_id": "433760", "hashes": { - "sha1": "c9666025164bcafed9e6d03057ec8a31ebbce170", - "md5": "315ca93cf31b1307abd9ad99a9a9e09b" + "sha1": "68e3ab1b89d39a48362a4741a50c73e7ebb2fe7a", + "md5": "57a955e091614c70105679d7ecad2ef7" }, "required_dependencies": [], - "size": 455945, - "date_published": "2025-02-10T18:15:01.423Z" + "size": 453719, + "date_published": "2025-03-27T17:09:31.037Z" } ] }, @@ -9888,27 +9697,26 @@ "files": [ { "type": "modrinth", - "file_name": "OctoLib-FORGE-0.4.2+1.20.1.jar", + "file_name": "OctoLib-FORGE-0.5.0.1+1.20.1.jar", "mc_versions": [ "1.20.1" ], "loaders": [ - "forge", - "neoforge" + "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/RH2KUdKJ/versions/9dJfM8hR/OctoLib-FORGE-0.4.2+1.20.1.jar", - "id": "9dJfM8hR", + "url": "https://cdn.modrinth.com/data/RH2KUdKJ/versions/HZ7KmyXp/OctoLib-FORGE-0.5.0.1+1.20.1.jar", + "id": "HZ7KmyXp", "parent_id": "RH2KUdKJ", "hashes": { - "sha512": "be8c3ee844e24a6ec68bd805ccae6fc54928aa211f44fb208454a835796e2405765e7cadcff5763782f3d9bc262b44626b69863d83804258501f5e6e0926d96e", - "sha1": "d39a7e4d7ebd4e6f427f5c0958b7e2080ba02800" + "sha512": "e0bbe3a999f3a8c32b7dc0fd5bae61f62915dc5be40ac97a777f0784cdfaaed74b74f48cd407b9a8abb081ff331fbd272c9d4e08125f48f091435c926468d5c6", + "sha1": "9eab28baff36942e1c924489e34753df10f40208" }, "required_dependencies": [ "lhGA9TYQ" ], - "size": 401032, - "date_published": "2024-08-21T12:25:46.019010Z" + "size": 424035, + "date_published": "2025-03-07T11:56:23.366463Z" }, { "type": "curseforge", @@ -10023,7 +9831,7 @@ "files": [ { "type": "modrinth", - "file_name": "open-parties-and-claims-forge-1.20.1-0.23.7.jar", + "file_name": "open-parties-and-claims-forge-1.20.1-0.24.0.jar", "mc_versions": [ "1.20", "1.20.1" @@ -10032,20 +9840,20 @@ "forge" ], "release_type": "beta", - "url": "https://cdn.modrinth.com/data/gF3BGWvG/versions/oeVpN9sy/open-parties-and-claims-forge-1.20.1-0.23.7.jar", - "id": "oeVpN9sy", + "url": "https://cdn.modrinth.com/data/gF3BGWvG/versions/pRiZtdXR/open-parties-and-claims-forge-1.20.1-0.24.0.jar", + "id": "pRiZtdXR", "parent_id": "gF3BGWvG", "hashes": { - "sha512": "02b257698f46ae57adc8c407b318d10c2463e6ab66b4840b1c467716d675c70999acb03f0458175d98b69e4ce5bcd53dc9a2bbe17012a5e040765736e1f702e4", - "sha1": "8f59207176cdc2fe53e5f7e65debc08a7dca3882" + "sha512": "351ff271cac9ff89e408b6e0fa6a473934496e34c10487610fb414cee61e721539be1d3ffabbf31408c2656b49c85bf8ae9c92aba16e5a7192e676d4ee3bee03", + "sha1": "884924b3820d51f0d6ae0f0b5b8bc35aefaf1920" }, "required_dependencies": [], - "size": 1245092, - "date_published": "2025-01-05T09:27:14.419271Z" + "size": 1246814, + "date_published": "2025-02-27T09:48:25.851280Z" }, { "type": "curseforge", - "file_name": "open-parties-and-claims-forge-1.20.1-0.23.7.jar", + "file_name": "open-parties-and-claims-forge-1.20.1-0.24.0.jar", "mc_versions": [ "1.20.1", "1.20" @@ -10054,16 +9862,16 @@ "forge" ], "release_type": "beta", - "url": "https://edge.forgecdn.net/files/6055/478/open-parties-and-claims-forge-1.20.1-0.23.7.jar", - "id": "6055478", + "url": "https://edge.forgecdn.net/files/6242/869/open-parties-and-claims-forge-1.20.1-0.24.0.jar", + "id": "6242869", "parent_id": "636608", "hashes": { - "sha1": "8f59207176cdc2fe53e5f7e65debc08a7dca3882", - "md5": "29b434029c7960a57ea1b70cb73bf7a9" + "sha1": "884924b3820d51f0d6ae0f0b5b8bc35aefaf1920", + "md5": "dc2c65305e9ce2ac6ff1c5d5801a31f8" }, "required_dependencies": [], - "size": 1245092, - "date_published": "2025-01-05T08:54:48.380Z" + "size": 1246814, + "date_published": "2025-02-27T09:15:57.640Z" } ] }, @@ -10304,7 +10112,7 @@ "files": [ { "type": "modrinth", - "file_name": "particle_core-0.2.5+1.20.1+forge.jar", + "file_name": "particle_core-0.2.6+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -10313,23 +10121,23 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/RSeLon5O/versions/2pgXWmty/particle_core-0.2.5+1.20.1+forge.jar", - "id": "2pgXWmty", + "url": "https://cdn.modrinth.com/data/RSeLon5O/versions/bqPuw9aZ/particle_core-0.2.6+1.20.1+forge.jar", + "id": "bqPuw9aZ", "parent_id": "RSeLon5O", "hashes": { - "sha512": "1da3ce936ce34f60ee96aa1faab9fec89f1227152a3c146bbe48a404cb93918f1f8722a6c44afc3eda8a9e4ea6f97a61ad6788da6085aec1816b1c3871e15c9c", - "sha1": "d791c2000b0985bdef906db93b9313319ac47aba" + "sha512": "58c88b1654f3b2d733860aa3358cfa322245f2edc4ee6e79150912bf675c6bdef936f2f4f043a7cc56472a24cdee7f5963b6db2631478446fdcaf14ebc17d94c", + "sha1": "91f302ab9b85016aeb3a9a0e85b80650a1d2e984" }, "required_dependencies": [ - "hYykXjDp", - "ordsPcFz" + "ordsPcFz", + "hYykXjDp" ], - "size": 95351, - "date_published": "2024-09-16T22:23:21.437733Z" + "size": 97943, + "date_published": "2025-04-16T00:24:40.146141Z" }, { "type": "curseforge", - "file_name": "particle_core-0.2.5+1.20.1+forge.jar", + "file_name": "particle_core-0.2.6+1.20.1+forge.jar", "mc_versions": [ "1.20.1" ], @@ -10338,19 +10146,19 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5729/965/particle_core-0.2.5+1.20.1+forge.jar", - "id": "5729965", + "url": "https://edge.forgecdn.net/files/6427/560/particle_core-0.2.6+1.20.1+forge.jar", + "id": "6427560", "parent_id": "985426", "hashes": { - "sha1": "d791c2000b0985bdef906db93b9313319ac47aba", - "md5": "e8ac337d4436d8b3dfbbb9edf503c338" + "sha1": "91f302ab9b85016aeb3a9a0e85b80650a1d2e984", + "md5": "ac9abf66740c4c6fa0436a369fe446a8" }, "required_dependencies": [ - "351264", - "1005914" + "1005914", + "351264" ], - "size": 95351, - "date_published": "2024-09-16T22:23:18.103Z" + "size": 97943, + "date_published": "2025-04-16T00:24:36.463Z" } ] }, @@ -10815,7 +10623,7 @@ "files": [ { "type": "modrinth", - "file_name": "PuzzlesLib-v8.1.29-1.20.1-Forge.jar", + "file_name": "PuzzlesLib-v8.1.32-1.20.1-Forge.jar", "mc_versions": [ "1.20.1" ], @@ -10823,20 +10631,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/QAGBst4M/versions/pbMkjqgd/PuzzlesLib-v8.1.29-1.20.1-Forge.jar", - "id": "pbMkjqgd", + "url": "https://cdn.modrinth.com/data/QAGBst4M/versions/YFZdsqXl/PuzzlesLib-v8.1.32-1.20.1-Forge.jar", + "id": "YFZdsqXl", "parent_id": "QAGBst4M", "hashes": { - "sha512": "75f2d77e61027b0ea2bd60ca2d5f1b6f7d3e860baad1d8f3955c4d33da7715ece5d028d086e9e34f1faa7c402f1159b9c9285a14e43a29565dea916cda983c53", - "sha1": "6d26b564e8fcc2757e63a735530ed22c345f6279" + "sha512": "f6420b4884583727ee66d7410ce5ad3ce2a5fd9aed49700ea4bba1fd944a4b63d2d3f15a3d0d64afa2ec1aa261f8ef52b6277712c7d19e6dd31ff9d9360f05ae", + "sha1": "1f24a25582fa6bb2569e32401a232ee90d34cc1a" }, "required_dependencies": [], - "size": 1321050, - "date_published": "2025-03-09T12:14:34.855400Z" + "size": 1342204, + "date_published": "2025-04-05T11:23:08.540092Z" }, { "type": "curseforge", - "file_name": "PuzzlesLib-v8.1.29-1.20.1-Forge.jar", + "file_name": "PuzzlesLib-v8.1.32-1.20.1-Forge.jar", "mc_versions": [ "1.20.1" ], @@ -10844,16 +10652,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6283/733/PuzzlesLib-v8.1.29-1.20.1-Forge.jar", - "id": "6283733", + "url": "https://edge.forgecdn.net/files/6387/81/PuzzlesLib-v8.1.32-1.20.1-Forge.jar", + "id": "6387081", "parent_id": "495476", "hashes": { - "sha1": "6d26b564e8fcc2757e63a735530ed22c345f6279", - "md5": "67ab6af1d19c585fedc9f1e44bf91a4d" + "sha1": "1f24a25582fa6bb2569e32401a232ee90d34cc1a", + "md5": "3ca3da58d71c0b14241df38578ffdb22" }, "required_dependencies": [], - "size": 1321050, - "date_published": "2025-03-09T12:14:28.217Z" + "size": 1342204, + "date_published": "2025-04-05T11:23:03.413Z" } ] }, @@ -10920,69 +10728,6 @@ } ] }, - { - "pakku_id": "8Xy6EP4mZpuTcXQt", - "type": "MOD", - "side": "CLIENT", - "slug": { - "curseforge": "rainboows", - "modrinth": "rainboows" - }, - "name": { - "curseforge": "Rainbows!", - "modrinth": "Rainbows" - }, - "id": { - "curseforge": "1121832", - "modrinth": "MdWygI5q" - }, - "files": [ - { - "type": "curseforge", - "file_name": "Rainbows-1.20.1-1.4.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "neoforge", - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6323/743/Rainbows-1.20.1-1.4.jar", - "id": "6323743", - "parent_id": "1121832", - "hashes": { - "sha1": "5eafa465c959b0483fd21daedf7da1a3849b59d1", - "md5": "4935728dbc603e867f3490a05d342e78" - }, - "required_dependencies": [], - "size": 2312766, - "date_published": "2025-03-19T22:42:59.493Z" - }, - { - "type": "modrinth", - "file_name": "Rainbows-1.20.1-1.4.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge", - "neoforge" - ], - "release_type": "release", - "url": "https://cdn.modrinth.com/data/MdWygI5q/versions/zCe8Wtfk/Rainbows-1.20.1-1.4.jar", - "id": "zCe8Wtfk", - "parent_id": "MdWygI5q", - "hashes": { - "sha512": "14c7a6b14b88abd354b0d92573343032f3abf4a1ce97faee4fe8b4533e0fa9bd91e61efec392e344a69cc46c837aac3c53587415a41b698f55ea94b65840880c", - "sha1": "5eafa465c959b0483fd21daedf7da1a3849b59d1" - }, - "required_dependencies": [], - "size": 2312766, - "date_published": "2025-03-19T22:44:41.887240Z" - } - ] - }, { "pakku_id": "mLvNtlnkhh3Rrdhq", "pakku_links": [ @@ -11164,7 +10909,7 @@ "files": [ { "type": "modrinth", - "file_name": "rhino-forge-2001.2.3-build.6.jar", + "file_name": "rhino-forge-2001.2.3-build.10.jar", "mc_versions": [ "1.20.1" ], @@ -11172,20 +10917,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/sk9knFPE/versions/maCpsT70/rhino-forge-2001.2.3-build.6.jar", - "id": "maCpsT70", + "url": "https://cdn.modrinth.com/data/sk9knFPE/versions/uNALdylI/rhino-forge-2001.2.3-build.10.jar", + "id": "uNALdylI", "parent_id": "sk9knFPE", "hashes": { - "sha512": "5e9f06561b776c472848d0f44461ad4daef64b08db9734ced785fede6198748f785f7ca721f806cf118c995bc43b2807e138845962b43fa2d91d97d972237341", - "sha1": "0c91c1710d7338f139b7cb3465f00590e210139e" + "sha512": "4eb6a635f3eff3baa158539bd55344421cf69b15e28f7da8bf55f370a11c071f3525063a6f81b67fbfca550ad8aaab7e6208df87f65ca6ed2851edd46f032b58", + "sha1": "c83c9b719a6bab33fbd2b3f2f680eb3adbfc1aa1" }, "required_dependencies": [], - "size": 1796600, - "date_published": "2024-08-23T12:53:19.932888Z" + "size": 1798244, + "date_published": "2025-02-12T21:26:49.669723Z" }, { "type": "curseforge", - "file_name": "rhino-forge-2001.2.3-build.6.jar", + "file_name": "rhino-forge-2001.2.3-build.10.jar", "mc_versions": [ "1.20.1" ], @@ -11193,16 +10938,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5655/836/rhino-forge-2001.2.3-build.6.jar", - "id": "5655836", + "url": "https://edge.forgecdn.net/files/6186/971/rhino-forge-2001.2.3-build.10.jar", + "id": "6186971", "parent_id": "416294", "hashes": { - "sha1": "0c91c1710d7338f139b7cb3465f00590e210139e", - "md5": "c6f376b91e330b5e220541aab5edd92f" + "sha1": "c83c9b719a6bab33fbd2b3f2f680eb3adbfc1aa1", + "md5": "59387620b0ef6becbff02c7c1636ad3e" }, "required_dependencies": [], - "size": 1796600, - "date_published": "2024-08-23T12:53:18.240Z" + "size": 1798244, + "date_published": "2025-02-12T21:26:47.347Z" } ] }, @@ -12175,7 +11920,7 @@ }, { "type": "curseforge", - "file_name": "tfcambiental-1.20.1-3.3.0.jar", + "file_name": "tfcambiental-1.20.1-3.3.1.jar", "mc_versions": [ "1.20.1" ], @@ -12184,16 +11929,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5313/702/tfcambiental-1.20.1-3.3.0.jar", - "id": "5313702", + "url": "https://edge.forgecdn.net/files/5655/440/tfcambiental-1.20.1-3.3.1.jar", + "id": "5655440", "parent_id": "940350", "hashes": { - "sha1": "e1bc92959d8cbfb1d8f16dc124a14a0709d6aba6", - "md5": "e3a22bddd9fc54081ac5a9ca6bdf1cc7" + "sha1": "0837547febfc05c18e224fd8b3f9ed4eef8eb9de", + "md5": "f057f8e13adacf35c50ae52cf312ee38" }, "required_dependencies": [], - "size": 640033, - "date_published": "2024-05-03T21:24:47.150Z" + "size": 640068, + "date_published": "2024-08-23T09:41:25.543Z" } ] }, @@ -12563,6 +12308,45 @@ } ] }, + { + "pakku_id": "41O7QIlbENx3hqx6", + "type": "MOD", + "slug": { + "curseforge": "tfc-punishment-for-death" + }, + "name": { + "curseforge": "TFC Punishment for Death" + }, + "id": { + "curseforge": "1258250" + }, + "files": [ + { + "type": "curseforge", + "file_name": "TFC_punishment_for_death-1.20.1-1.0.0.11.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "neoforge", + "forge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/6495/648/TFC_punishment_for_death-1.20.1-1.0.0.11.jar", + "id": "6495648", + "parent_id": "1258250", + "hashes": { + "sha1": "12ca24ed80edce1eaf0c725f52e61284c10c7e3e", + "md5": "26ff35272a9bdcb6258f88ffebfd97b7" + }, + "required_dependencies": [ + "302973" + ], + "size": 28200, + "date_published": "2025-05-04T15:55:53.890Z" + } + ] + }, { "pakku_id": "LdCEmxAyaiJBsONh", "pakku_links": [ @@ -13140,33 +12924,9 @@ "modrinth": "lNttW2Xl" }, "files": [ - { - "type": "curseforge", - "file_name": "TerraFirmaGreg-Core-Modern-0.6.1.jar", - "mc_versions": [ - "1.20.1" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6424/600/TerraFirmaGreg-Core-Modern-0.6.1.jar", - "id": "6424600", - "parent_id": "513402", - "hashes": { - "sha1": "5c23bc9e7d5948142b1d45ad8fca91e6a9467bf3", - "md5": "61d52e9c8fe1f38b3b327498c9d37128" - }, - "required_dependencies": [ - "302973", - "890405" - ], - "size": 241598, - "date_published": "2025-04-15T03:58:23.103Z" - }, { "type": "modrinth", - "file_name": "TerraFirmaGreg-Core-Modern-0.6.1.jar", + "file_name": "TerraFirmaGreg-Core-Modern-.jar", "mc_versions": [ "1.20.1" ], @@ -13174,19 +12934,42 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/lNttW2Xl/versions/V5J04AzG/TerraFirmaGreg-Core-Modern-0.6.1.jar", - "id": "V5J04AzG", + "url": "https://cdn.modrinth.com/data/lNttW2Xl/versions/eoJD3ctY/TerraFirmaGreg-Core-Modern-.jar", + "id": "eoJD3ctY", "parent_id": "lNttW2Xl", "hashes": { - "sha512": "49b5afb2a8b17309d5787a373b765cbbfb266de547bd67a91aa82ee01f14c504601b60e50ec562e1474963ec7060bc11ae246ea8e282f1eb71138f5aa820a0ef", - "sha1": "5c23bc9e7d5948142b1d45ad8fca91e6a9467bf3" + "sha512": "d142976b5caa236ed24b7653da4c29adebdba63cdb9e8c2c5a1f4111f51680f67d9da14e7c1fb7523cebf7ca3fd27eb91544e2f9d8c81296f2465ecb448bed26", + "sha1": "7f1b225c8f1669dcbf37198eb2ebc2e36e739ced" }, "required_dependencies": [ "JaCEZUhg", "7tG215v7" ], - "size": 241598, - "date_published": "2025-04-15T03:58:27.227420Z" + "size": 239158, + "date_published": "2025-05-04T06:26:11.060716Z" + }, + { + "type": "curseforge", + "file_name": "TerraFirmaGreg-Core-Modern-0.6.3.jar", + "mc_versions": [ + "1.20.1" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6493/960/TerraFirmaGreg-Core-Modern-0.6.3.jar", + "id": "6493960", + "parent_id": "513402", + "hashes": { + "sha1": "7f1b225c8f1669dcbf37198eb2ebc2e36e739ced", + "md5": "8afa25b0ad4e8e5efcb463d0a1e1db5f" + }, + "required_dependencies": [ + "302973" + ], + "size": 239158, + "date_published": "2025-05-04T06:31:31.180Z" } ] }, @@ -13345,7 +13128,7 @@ "files": [ { "type": "modrinth", - "file_name": "u_team_core-forge-1.20.1-5.1.4.346.jar", + "file_name": "u_team_core-forge-1.20.1-5.1.4.362.jar", "mc_versions": [ "1.20.1" ], @@ -13353,20 +13136,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/g2FGQs4R/versions/6kPqkkwS/u_team_core-forge-1.20.1-5.1.4.346.jar", - "id": "6kPqkkwS", + "url": "https://cdn.modrinth.com/data/g2FGQs4R/versions/E0xcADiW/u_team_core-forge-1.20.1-5.1.4.362.jar", + "id": "E0xcADiW", "parent_id": "g2FGQs4R", "hashes": { - "sha512": "6e81837e5173fd90ce7cda2be7050bf89ffbf298d642118c42c99208188ef608133679c2a87e4a325ecb8d56663db1f5070bd154336a5e0e869c80d7aea151f5", - "sha1": "56082ef86ba5513656bf6e555239ad050d07e1df" + "sha512": "1520395e10bdb017085638a67841425284a04d47379b80a998355629bc8acdb6ed8b1a1afcb0593271cd7839ec33f51de50256f10170590aa6dd1de13f389929", + "sha1": "a620177a6d39cd34ee4ed62f2dd66e2b2e1c64f5" }, "required_dependencies": [], "size": 587603, - "date_published": "2025-01-03T19:56:10.459519Z" + "date_published": "2025-04-06T17:57:40.320455Z" }, { "type": "curseforge", - "file_name": "u_team_core-forge-1.20.1-5.1.4.346.jar", + "file_name": "u_team_core-forge-1.20.1-5.1.4.362.jar", "mc_versions": [ "1.20.1" ], @@ -13374,16 +13157,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6050/182/u_team_core-forge-1.20.1-5.1.4.346.jar", - "id": "6050182", + "url": "https://edge.forgecdn.net/files/6392/410/u_team_core-forge-1.20.1-5.1.4.362.jar", + "id": "6392410", "parent_id": "273744", "hashes": { - "sha1": "56082ef86ba5513656bf6e555239ad050d07e1df", - "md5": "caa53c17a04f92025d147b8e6556fcd1" + "sha1": "a620177a6d39cd34ee4ed62f2dd66e2b2e1c64f5", + "md5": "71db48cee765cb109c393da532fa062b" }, "required_dependencies": [], "size": 587603, - "date_published": "2025-01-03T19:56:09.753Z" + "date_published": "2025-04-06T17:57:37.050Z" } ] }, @@ -13406,7 +13189,7 @@ "files": [ { "type": "modrinth", - "file_name": "UniLib-1.0.5+1.20.1-forge.jar", + "file_name": "UniLib-1.0.6+1.20.1-forge.jar", "mc_versions": [ "1.20", "1.20.1" @@ -13416,20 +13199,20 @@ "neoforge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/nT86WUER/versions/Q5oirb2U/UniLib-1.0.5+1.20.1-forge.jar", - "id": "Q5oirb2U", + "url": "https://cdn.modrinth.com/data/nT86WUER/versions/VHNcPnYG/UniLib-1.0.6+1.20.1-forge.jar", + "id": "VHNcPnYG", "parent_id": "nT86WUER", "hashes": { - "sha512": "47a86b45a41df7704e096d788bda23082b9742b85ca394991474d619b9196076d5e2958465efb90814a5bfc3acb28ea15a8c9373d672bf3ecf26632ec8b39041", - "sha1": "1ffef0d813d911d44105ea9e63dde970edee018e" + "sha512": "07edc0328a069145222148859c50c9c964c6248911dad104dfcecbb109c6cd53af912654388eb970cd194a9f67c2f17ff21439ccdb46cfd441535d43c886aac8", + "sha1": "04548f18aadced65d2962be0a3a15eea49189c41" }, "required_dependencies": [], - "size": 1045910, - "date_published": "2025-01-14T21:30:43.137872Z" + "size": 1626977, + "date_published": "2025-04-21T18:26:25.495112Z" }, { "type": "curseforge", - "file_name": "UniLib-1.0.5+1.20.1-forge.jar", + "file_name": "UniLib-1.0.6+1.20.1-forge.jar", "mc_versions": [ "1.20.1", "1.20" @@ -13439,16 +13222,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/6087/784/UniLib-1.0.5+1.20.1-forge.jar", - "id": "6087784", + "url": "https://edge.forgecdn.net/files/6448/929/UniLib-1.0.6+1.20.1-forge.jar", + "id": "6448929", "parent_id": "1056812", "hashes": { - "sha1": "1ffef0d813d911d44105ea9e63dde970edee018e", - "md5": "a5a75873d8138aa46decbdd733b3c244" + "sha1": "04548f18aadced65d2962be0a3a15eea49189c41", + "md5": "829173f9fd03d28cb8f486de74add028" }, "required_dependencies": [], - "size": 1045910, - "date_published": "2025-01-14T21:30:24.660Z" + "size": 1626977, + "date_published": "2025-04-21T18:26:05.427Z" } ] }, @@ -13534,31 +13317,9 @@ "modrinth": "1bokaNcj" }, "files": [ - { - "type": "curseforge", - "file_name": "Xaeros_Minimap_24.7.1_Forge_1.20.jar", - "mc_versions": [ - "1.20.1", - "1.20" - ], - "loaders": [ - "forge" - ], - "release_type": "release", - "url": "https://edge.forgecdn.net/files/6012/833/Xaeros_Minimap_24.7.1_Forge_1.20.jar", - "id": "6012833", - "parent_id": "263420", - "hashes": { - "sha1": "b1108546e4adad0d84401af546b9ed987b3fc437", - "md5": "c29078689ae23ddf4ded23b8b13d0727" - }, - "required_dependencies": [], - "size": 1621195, - "date_published": "2024-12-22T10:01:28.163Z" - }, { "type": "modrinth", - "file_name": "Xaeros_Minimap_24.7.1_Forge_1.20.jar", + "file_name": "Xaeros_Minimap_25.2.0_Forge_1.20.jar", "mc_versions": [ "1.20", "1.20.1" @@ -13567,16 +13328,38 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/1bokaNcj/versions/sr50tbXn/Xaeros_Minimap_24.7.1_Forge_1.20.jar", - "id": "sr50tbXn", + "url": "https://cdn.modrinth.com/data/1bokaNcj/versions/uhCZlwOM/Xaeros_Minimap_25.2.0_Forge_1.20.jar", + "id": "uhCZlwOM", "parent_id": "1bokaNcj", "hashes": { - "sha512": "8e82015a0307e854c18ff6b92f9fdfc17c2339631c9ecc02cdb9882d0826f558e50770022728f7c0c666ef2b5485824dd1abd9afed67024801e88341d40e5547", - "sha1": "b1108546e4adad0d84401af546b9ed987b3fc437" + "sha512": "ca1c0506a84122888f284702ecd3dbf2de32f9a46886bb2bb93884bb238aae5ee856dc77ed7aac3c84918a33fceae2715ff2bbd50eda88e171d15f97fbdab8be", + "sha1": "a68019d24a8dc4fb0e9d1b958f5473cde7f6db8c" }, "required_dependencies": [], - "size": 1621195, - "date_published": "2024-12-22T10:29:10.503180Z" + "size": 1704129, + "date_published": "2025-03-15T09:01:35.690870Z" + }, + { + "type": "curseforge", + "file_name": "Xaeros_Minimap_25.2.0_Forge_1.20.jar", + "mc_versions": [ + "1.20.1", + "1.20" + ], + "loaders": [ + "forge" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/6306/152/Xaeros_Minimap_25.2.0_Forge_1.20.jar", + "id": "6306152", + "parent_id": "263420", + "hashes": { + "sha1": "a68019d24a8dc4fb0e9d1b958f5473cde7f6db8c", + "md5": "e606d37df7888b3b4806712ec6095a82" + }, + "required_dependencies": [], + "size": 1704129, + "date_published": "2025-03-15T08:42:30.867Z" } ] }, @@ -13599,7 +13382,7 @@ "files": [ { "type": "modrinth", - "file_name": "XaerosWorldMap_1.39.2_Forge_1.20.jar", + "file_name": "XaerosWorldMap_1.39.4_Forge_1.20.jar", "mc_versions": [ "1.20", "1.20.1" @@ -13608,20 +13391,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/NcUtCpym/versions/3Wmpi0tR/XaerosWorldMap_1.39.2_Forge_1.20.jar", - "id": "3Wmpi0tR", + "url": "https://cdn.modrinth.com/data/NcUtCpym/versions/SMViC4Yw/XaerosWorldMap_1.39.4_Forge_1.20.jar", + "id": "SMViC4Yw", "parent_id": "NcUtCpym", "hashes": { - "sha512": "b719fba032ad51dd390a9d3906c801d17aa6dc88106b37a78f230144f3f435c35f0a0f3fc3193d199d09146800c11b64194b6aa246c7e3135b4d32c564c5cb90", - "sha1": "75fa377a33128aa0f294b310838032ddd697810f" + "sha512": "2b1060839325fd90ced491d7e58306d0473c616fcf7ca9714b70719bac03e0a2d37fd1b9ceca1ff37167b88527ee935e7b715a07486e430a26b26f953e3bb721", + "sha1": "cb2027cd4cb87704750c666205d16b6a0234a63d" }, "required_dependencies": [], - "size": 931860, - "date_published": "2024-12-13T08:34:56.041590Z" + "size": 933184, + "date_published": "2025-02-20T09:44:39.875266Z" }, { "type": "curseforge", - "file_name": "XaerosWorldMap_1.39.2_Forge_1.20.jar", + "file_name": "XaerosWorldMap_1.39.4_Forge_1.20.jar", "mc_versions": [ "1.20.1", "1.20" @@ -13630,16 +13413,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5987/149/XaerosWorldMap_1.39.2_Forge_1.20.jar", - "id": "5987149", + "url": "https://edge.forgecdn.net/files/6212/636/XaerosWorldMap_1.39.4_Forge_1.20.jar", + "id": "6212636", "parent_id": "317780", "hashes": { - "sha1": "75fa377a33128aa0f294b310838032ddd697810f", - "md5": "d052e96d54415b5073acec65ae548245" + "sha1": "cb2027cd4cb87704750c666205d16b6a0234a63d", + "md5": "3da6919fb4f0c993772c073d787403e1" }, "required_dependencies": [], - "size": 931860, - "date_published": "2024-12-13T08:18:53.190Z" + "size": 933184, + "date_published": "2025-02-20T09:16:59.333Z" } ] }, @@ -13723,7 +13506,7 @@ "files": [ { "type": "modrinth", - "file_name": "YetAnotherConfigLib-3.6.2+1.20.1-forge.jar", + "file_name": "yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar", "mc_versions": [ "1.20", "1.20.1" @@ -13732,22 +13515,20 @@ "forge" ], "release_type": "release", - "url": "https://cdn.modrinth.com/data/1eAoo2KR/versions/PI0hRkb0/YetAnotherConfigLib-3.6.2+1.20.1-forge.jar", - "id": "PI0hRkb0", + "url": "https://cdn.modrinth.com/data/1eAoo2KR/versions/sCWgXDYQ/yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar", + "id": "sCWgXDYQ", "parent_id": "1eAoo2KR", "hashes": { - "sha512": "c77f4cea583cbb4e057950e2a900916c4f0615a6a84173f7fc8185a5f73967bc43b543ef83a54d7e31be0909ce8616465ee321a1e07b8d5cb6c2f10077e50505", - "sha1": "044fe3b2bd50d2a00d07bd44a2cbdd677617786e" + "sha512": "7fdd923ae94c1ada9bf0524f21cdfbb4f870ea93b26d02f369829585892fc5a2f61e60f43a6686ee611ff11bde8f123f178279e2de453c8fb320264153a0e8d9", + "sha1": "644731e321c53a35a0b3177a3cc6347fe38002f4" }, - "required_dependencies": [ - "P7dR8mSH" - ], - "size": 1111897, - "date_published": "2024-12-04T21:02:46.112031Z" + "required_dependencies": [], + "size": 1105891, + "date_published": "2025-03-23T19:12:55.655767Z" }, { "type": "curseforge", - "file_name": "YetAnotherConfigLib-3.6.2+1.20.1-forge.jar", + "file_name": "yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar", "mc_versions": [ "1.20.1", "1.20" @@ -13756,18 +13537,16 @@ "forge" ], "release_type": "release", - "url": "https://edge.forgecdn.net/files/5963/252/YetAnotherConfigLib-3.6.2+1.20.1-forge.jar", - "id": "5963252", + "url": "https://edge.forgecdn.net/files/6336/646/yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar", + "id": "6336646", "parent_id": "667299", "hashes": { - "sha1": "044fe3b2bd50d2a00d07bd44a2cbdd677617786e", - "md5": "e8bb7648a2bc6f0108e363f6826f77b8" + "sha1": "644731e321c53a35a0b3177a3cc6347fe38002f4", + "md5": "2437cb642e24726a83f864e345f24479" }, - "required_dependencies": [ - "306612" - ], - "size": 1111897, - "date_published": "2024-12-04T21:02:45.487Z" + "required_dependencies": [], + "size": 1105891, + "date_published": "2025-03-23T19:12:56.087Z" } ] }, diff --git a/pakku.json b/pakku.json index 796b3396b..5f26d4655 100644 --- a/pakku.json +++ b/pakku.json @@ -1,6 +1,6 @@ { "name": "TerraFirmaGreg-Modern", - "version": "0.9.1", + "version": "0.9.2", "description": "An innovative modpack that contains GregTech and TerraFirmaCraft on 1.20.x.", "author": "Exception, Xikaro", "overrides": [ @@ -16,7 +16,8 @@ "server.properties", "server_starter.conf", "server-icon.png", - "start_server.bat" + "start_server.bat", + "README.md" ], "client_overrides": [ "resourcepacks"