From db4f30fb96f4f696a5addd6bb655cfa4e9fdef4f Mon Sep 17 00:00:00 2001 From: RadzRatz <106654292+RadzRatz@users.noreply.github.com> Date: Sat, 2 Nov 2024 01:08:03 -0600 Subject: [PATCH] A bit of code clean up as well, with some important additions - Added some new tags - Added First Wave of recipes - Added Brass, Constantan and Graphite materials - Removed Tiny Char/Coal for another project - Tweaked Fluorite and Peridot textures - Only missing some Zinc recipes and textures, Enderium, Lumium, Signalum and lastly the Gem Ore Blocks and dusts textures --- .../341c9885a13831e57b4b2ec5e2e3b493e00dc5c9 | 5 +- .../59eb3dbb5f86130e09b3c62d89b9525ee01cf52d | 5 +- .../5c218228dfbe07ada306527b9e846614d574de89 | 18 +++++-- .../d2ab0c7aaa4d7f1eba7e17d10575eaa6c0ca15f5 | 6 +-- .../e0d3d0b8d9c807675613821fa865a35f707cd83f | 2 - .../e4266b57f3fc507507d95bfbc65bb6458776bf9e | 11 +++- .../eternalitems/blockstates/brass_block.json | 7 +++ .../blockstates/constantan_block.json | 7 +++ .../blockstates/graphite_block.json | 7 +++ .../models/block/brass_block.json | 6 +++ .../models/block/constantan_block.json | 6 +++ .../models/block/graphite_block.json | 6 +++ .../eternalitems/models/item/brass_block.json | 3 ++ .../item/{tiny_coal.json => brass_dust.json} | 2 +- .../{tiny_charcoal.json => brass_ingot.json} | 2 +- ...nal_dark_hammer.json => brass_nugget.json} | 2 +- .../models/item/constantan_block.json | 3 ++ .../models/item/constantan_dust.json | 6 +++ .../models/item/constantan_ingot.json | 6 +++ .../models/item/constantan_nugget.json | 6 +++ .../models/item/graphite_block.json | 3 ++ .../models/item/graphite_nugget.json | 6 +++ .../eternalitems/models/item/plate_brass.json | 6 +++ .../models/item/plate_constantan.json | 6 +++ .../models/item/plate_graphite.json | 6 +++ .../eternalitems/models/item/rod_brass.json | 6 +++ .../models/item/rod_constantan.json | 6 +++ .../models/item/rod_graphite.json | 6 +++ .../loot_table/blocks/brass_block.json | 21 ++++++++ .../loot_table/blocks/constantan_block.json | 21 ++++++++ .../loot_table/blocks/graphite_block.json | 21 ++++++++ .../data/hammers/tags/item/hammers.json | 1 - .../tags/block/mineable/pickaxe.json | 3 ++ .../minecraft/tags/block/needs_iron_tool.json | 3 ++ .../data/minecraft/tags/item/coals.json | 6 --- .../data_maps/item/furnace_fuels.json | 10 ---- .../eternalitems/block/ModBlocks.java | 15 ++++++ .../eternalitems/datagen/DataGenerators.java | 2 - .../EternalBlockLootTableProvider.java | 5 +- .../datagen/EternalBlockStateProvider.java | 3 ++ .../datagen/EternalBlockTagProvider.java | 6 +++ .../datagen/EternalItemModelProvider.java | 18 +++++-- .../datagen/EternalItemTagProvider.java | 6 +-- .../datagen/EternalMapProvider.java | 23 --------- .../item/ModCreativeModeTabs.java | 17 ++++++- .../radzratz/eternalitems/item/Moditems.java | 38 ++++++++++---- .../eternalitems/item/custom/FuelItem.java | 21 -------- .../radzratz/eternalitems/util/ModTags.java | 48 ------------------ .../assets/eternalitems/lang/en_us.json | 19 +++++-- .../textures/block/brass_block.png | Bin 0 -> 434 bytes .../textures/block/constantan_block.png | Bin 0 -> 414 bytes .../textures/block/graphite_block.png | Bin 0 -> 350 bytes .../eternalitems/textures/item/brass_dust.png | Bin 0 -> 334 bytes .../textures/item/brass_ingot.png | Bin 0 -> 325 bytes .../textures/item/brass_nugget.png | Bin 0 -> 205 bytes .../textures/item/constantan_dust.png | Bin 0 -> 324 bytes .../textures/item/constantan_ingot.png | Bin 0 -> 310 bytes .../textures/item/constantan_nugget.png | Bin 0 -> 208 bytes .../eternalitems/textures/item/fluorite.png | Bin 505 -> 464 bytes .../textures/item/gem_peridot.png | Bin 428 -> 309 bytes .../textures/item/graphite_nugget.png | Bin 0 -> 191 bytes .../textures/item/plate_brass.png | Bin 0 -> 407 bytes .../textures/item/plate_constantan.png | Bin 0 -> 400 bytes .../textures/item/plate_graphite.png | Bin 0 -> 331 bytes .../eternalitems/textures/item/rod_brass.png | Bin 0 -> 284 bytes .../textures/item/rod_constantan.png | Bin 0 -> 304 bytes .../textures/item/rod_graphite.png | Bin 0 -> 235 bytes .../textures/item/tiny_charcoal.png | Bin 291 -> 0 bytes .../eternalitems/textures/item/tiny_coal.png | Bin 274 -> 0 bytes .../resources/data/c/tags/item/dusts.json | 2 + .../data/c/tags/item/dusts/brass.json | 6 +++ .../data/c/tags/item/dusts/constantan.json | 6 +++ .../data/c/tags/item/dusts/metal.json | 2 + .../resources/data/c/tags/item/ingots.json | 2 + .../data/c/tags/item/ingots/brass.json | 6 +++ .../data/c/tags/item/ingots/constantan.json | 6 +++ .../resources/data/c/tags/item/nuggets.json | 29 +++++++++++ .../data/c/tags/item/nuggets/aluminum.json | 6 +++ .../data/c/tags/item/nuggets/brass.json | 6 +++ .../data/c/tags/item/nuggets/bronze.json | 6 +++ .../data/c/tags/item/nuggets/cobalt.json | 6 +++ .../data/c/tags/item/nuggets/constantan.json | 6 +++ .../data/c/tags/item/nuggets/copper.json | 6 +++ .../data/c/tags/item/nuggets/electrum.json | 6 +++ .../data/c/tags/item/nuggets/enderium.json | 6 +++ .../data/c/tags/item/nuggets/graphite.json | 6 +++ .../data/c/tags/item/nuggets/invar.json | 6 +++ .../data/c/tags/item/nuggets/lead.json | 6 +++ .../data/c/tags/item/nuggets/lumium.json | 6 +++ .../data/c/tags/item/nuggets/nickel.json | 6 +++ .../data/c/tags/item/nuggets/osmium.json | 6 +++ .../data/c/tags/item/nuggets/platinum.json | 6 +++ .../data/c/tags/item/nuggets/plutonium.json | 6 +++ .../data/c/tags/item/nuggets/redstone.json | 6 +++ .../data/c/tags/item/nuggets/signalum.json | 6 +++ .../data/c/tags/item/nuggets/steel.json | 6 +++ .../data/c/tags/item/nuggets/tin.json | 6 +++ .../c/tags/item/nuggets/ultimatitanium.json | 6 +++ .../data/c/tags/item/nuggets/uranium.json | 6 +++ .../data/c/tags/item/nuggets/zinc.json | 6 +++ .../resources/data/c/tags/item/plates.json | 3 ++ .../data/c/tags/item/plates/brass.json | 5 ++ .../data/c/tags/item/plates/constantan.json | 6 +++ src/main/resources/data/c/tags/item/rods.json | 3 ++ .../data/c/tags/item/rods/brass.json | 6 +++ .../data/c/tags/item/rods/constantan.json | 6 +++ .../data/c/tags/item/storage_blocks.json | 3 ++ .../item/storage_blocks/raw_ore_block.json | 17 +++++++ .../recipe/{ => aluminum}/aluminum_block.json | 2 +- .../aluminum_block_to_ingot.json | 0 ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/aluminum/aluminum_dust_dupe.json | 16 ++++++ .../aluminum_dust_to_ingot_blasting.json | 2 +- .../aluminum_dust_to_ingot_furnace.json | 2 +- .../aluminum_ingot_to_dust.json | 0 .../{ => aluminum}/aluminum_nugget.json | 2 +- .../aluminum_nugget_to_ingot.json | 2 +- ...aluminum_ore_block_to_ingot_blasting.json} | 2 +- .../aluminum_ore_block_to_ingot_furnace.json} | 2 +- .../recipe/aluminum/aluminum_plate.json | 21 ++++++++ .../aluminum_raw_block_to_raw_ore.json | 13 +++++ ...minum_raw_ore_block_to_block_blasting.json | 0 ...uminum_raw_ore_block_to_block_furnace.json | 0 .../aluminum_raw_ore_to_ingot_blasting.json | 2 +- .../aluminum_raw_ore_to_ingot_furnace.json | 2 +- .../aluminum_raw_ore_to_raw_block.json} | 4 +- .../recipe/aluminum/aluminum_rod.json | 21 ++++++++ .../brass_block.json} | 4 +- .../recipe/brass/brass_block_to_ingot.json | 13 +++++ .../recipe/brass/brass_dust_creation.json | 22 ++++++++ .../brass/brass_dust_to_ingot_blasting.json | 13 +++++ .../brass/brass_dust_to_ingot_furnace.json | 13 +++++ .../recipe/brass/brass_ingot_to_dust.json | 16 ++++++ .../brass_nugget.json} | 4 +- .../recipe/brass/brass_nugget_to_ingot.json | 18 +++++++ .../recipe/brass/brass_plate.json | 21 ++++++++ .../eternalitems/recipe/brass/brass_rod.json | 21 ++++++++ .../recipe/bronze/bronze_block.json | 18 +++++++ .../recipe/bronze/bronze_block_to_ingot.json | 13 +++++ .../recipe/bronze/bronze_dust_creation.json | 22 ++++++++ .../bronze/bronze_dust_to_ingot_blasting.json | 13 +++++ .../bronze/bronze_dust_to_ingot_furnace.json | 13 +++++ .../recipe/bronze/bronze_ingot_to_dust.json | 16 ++++++ .../recipe/bronze/bronze_nugget.json | 13 +++++ .../recipe/bronze/bronze_nugget_to_ingot.json | 18 +++++++ .../recipe/bronze/bronze_plate.json | 21 ++++++++ .../recipe/bronze/bronze_rod.json | 21 ++++++++ .../recipe/cobalt/cobalt_block.json | 18 +++++++ .../recipe/cobalt/cobalt_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/cobalt/cobalt_dust_dupe.json | 16 ++++++ .../cobalt/cobalt_dust_to_ingot_blasting.json | 13 +++++ .../cobalt/cobalt_dust_to_ingot_furnace.json | 13 +++++ .../recipe/cobalt/cobalt_ingot_to_dust.json | 16 ++++++ .../recipe/cobalt/cobalt_nugget.json | 13 +++++ .../recipe/cobalt/cobalt_nugget_to_ingot.json | 18 +++++++ .../cobalt_ore_block_to_ingot_blasting.json | 13 +++++ .../cobalt_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/cobalt/cobalt_plate.json | 21 ++++++++ .../cobalt/cobalt_raw_block_to_raw_ore.json | 13 +++++ ...obalt_raw_ore_block_to_block_blasting.json | 13 +++++ ...cobalt_raw_ore_block_to_block_furnace.json | 13 +++++ .../cobalt_raw_ore_to_ingot_blasting.json | 13 +++++ .../cobalt_raw_ore_to_ingot_furnace.json | 13 +++++ .../cobalt/cobalt_raw_ore_to_raw_block.json | 18 +++++++ .../recipe/cobalt/cobalt_rod.json | 21 ++++++++ .../recipe/constantan/constantan_block.json | 18 +++++++ .../constantan/constantan_block_to_ingot.json | 13 +++++ .../constantan/constantan_dust_creation.json | 16 ++++++ .../constantan_dust_to_ingot_blasting.json | 13 +++++ .../constantan_dust_to_ingot_furnace.json | 13 +++++ .../constantan/constantan_ingot_to_dust.json | 16 ++++++ .../recipe/constantan/constantan_nugget.json | 13 +++++ .../constantan_nugget_to_ingot.json | 18 +++++++ .../recipe/constantan/constantan_plate.json | 21 ++++++++ .../recipe/constantan/constantan_rod.json | 21 ++++++++ .../recipe/copper/copper_dust_dupe.json | 16 ++++++ .../copper/copper_dust_to_ingot_blasting.json | 13 +++++ .../copper/copper_dust_to_ingot_furnace.json | 13 +++++ .../recipe/copper/copper_ingot_to_dust.json | 16 ++++++ .../recipe/copper/copper_nugget.json | 13 +++++ .../recipe/copper/copper_nugget_to_ingot.json | 18 +++++++ .../recipe/copper/copper_plate.json | 21 ++++++++ .../recipe/copper/copper_rod.json | 21 ++++++++ .../recipe/electrum/electrum_block.json | 18 +++++++ .../electrum/electrum_block_to_ingot.json | 13 +++++ .../electrum/electrum_dust_creation.json | 16 ++++++ .../electrum_dust_to_ingot_blasting.json | 13 +++++ .../electrum_dust_to_ingot_furnace.json | 13 +++++ .../electrum/electrum_ingot_to_dust.json | 16 ++++++ .../recipe/electrum/electrum_nugget.json | 13 +++++ .../electrum/electrum_nugget_to_ingot.json | 18 +++++++ .../recipe/electrum/electrum_plate.json | 21 ++++++++ .../recipe/electrum/electrum_rod.json | 21 ++++++++ .../recipe/graphite/graphite_block.json | 18 +++++++ .../graphite/graphite_block_to_ingot.json | 13 +++++ .../graphite/graphite_ingot_blasting.json | 13 +++++ .../graphite_ingot_furnace.json} | 0 .../recipe/graphite/graphite_nugget.json | 13 +++++ .../graphite/graphite_nugget_to_ingot.json | 18 +++++++ .../recipe/graphite/graphite_plate.json | 21 ++++++++ .../recipe/graphite/graphite_rod.json | 21 ++++++++ .../hammer_cobalt.json} | 0 .../hammer_copper.json} | 0 .../recipe/hammers/hammer_diamond.json | 24 +++++++++ .../recipe/hammers/hammer_iron.json | 24 +++++++++ .../recipe/hammers/hammer_stone.json | 24 +++++++++ .../lead_block.json} | 4 +- .../recipe/lead/lead_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/lead/lead_dust_dupe.json | 16 ++++++ .../lead/lead_dust_to_ingot_blasting.json | 13 +++++ .../lead/lead_dust_to_ingot_furnace.json | 13 +++++ .../recipe/lead/lead_ingot_to_dust.json | 16 ++++++ .../lead_nugget.json} | 4 +- .../recipe/lead/lead_nugget_to_ingot.json | 18 +++++++ .../lead_ore_block_to_ingot_blasting.json | 13 +++++ .../lead/lead_ore_block_to_ingot_furnace.json | 13 +++++ .../eternalitems/recipe/lead/lead_plate.json | 21 ++++++++ .../lead/lead_raw_block_to_raw_ore.json | 13 +++++ .../lead_raw_ore_block_to_block_blasting.json | 13 +++++ .../lead_raw_ore_block_to_block_furnace.json | 13 +++++ .../lead/lead_raw_ore_to_ingot_blasting.json | 13 +++++ .../lead/lead_raw_ore_to_ingot_furnace.json | 13 +++++ .../lead/lead_raw_ore_to_raw_block.json | 18 +++++++ .../eternalitems/recipe/lead/lead_rod.json | 21 ++++++++ .../aluminum_plate_to_dust.json | 16 ++++++ .../aluminum_rod_to_dust.json | 16 ++++++ .../bronze_plate_to_dust.json | 16 ++++++ .../bronze_rod_to_dust.json | 16 ++++++ .../recipe/misc/redstone_ingot_piston.json | 27 ++++++++++ .../recipe/nickel/nickel_block.json | 18 +++++++ .../recipe/nickel/nickel_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/nickel/nickel_dust_dupe.json | 16 ++++++ .../nickel/nickel_dust_to_ingot_blasting.json | 13 +++++ .../nickel/nickel_dust_to_ingot_furnace.json | 13 +++++ .../recipe/nickel/nickel_ingot_to_dust.json | 16 ++++++ .../recipe/nickel/nickel_nugget.json | 13 +++++ .../recipe/nickel/nickel_nugget_to_ingot.json | 18 +++++++ .../nickel_ore_block_to_ingot_blasting.json | 13 +++++ .../nickel_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/nickel/nickel_plate.json | 21 ++++++++ .../nickel/nickel_raw_block_to_raw_ore.json | 13 +++++ ...ickel_raw_ore_block_to_block_blasting.json | 13 +++++ ...nickel_raw_ore_block_to_block_furnace.json | 13 +++++ .../nickel_raw_ore_to_ingot_blasting.json | 13 +++++ .../nickel_raw_ore_to_ingot_furnace.json | 13 +++++ .../nickel/nickel_raw_ore_to_raw_block.json | 18 +++++++ .../recipe/nickel/nickel_rod.json | 21 ++++++++ .../recipe/osmium/osmium_block.json | 18 +++++++ .../recipe/osmium/osmium_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/osmium/osmium_dust_dupe.json | 16 ++++++ .../osmium/osmium_dust_to_ingot_blasting.json | 13 +++++ .../osmium/osmium_dust_to_ingot_furnace.json | 13 +++++ .../recipe/osmium/osmium_ingot_to_dust.json | 16 ++++++ .../recipe/osmium/osmium_nugget.json | 13 +++++ .../recipe/osmium/osmium_nugget_to_ingot.json | 18 +++++++ .../osmium_ore_block_to_ingot_blasting.json | 13 +++++ .../osmium_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/osmium/osmium_plate.json | 21 ++++++++ .../osmium/osmium_raw_block_to_raw_ore.json | 13 +++++ ...smium_raw_ore_block_to_block_blasting.json | 13 +++++ ...osmium_raw_ore_block_to_block_furnace.json | 13 +++++ .../osmium_raw_ore_to_ingot_blasting.json | 13 +++++ .../osmium_raw_ore_to_ingot_furnace.json | 13 +++++ .../osmium/osmium_raw_ore_to_raw_block.json | 18 +++++++ .../recipe/osmium/osmium_rod.json | 21 ++++++++ .../recipe/platinum/platinum_block.json | 18 +++++++ .../platinum/platinum_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/platinum/platinum_dust_dupe.json | 16 ++++++ .../platinum_dust_to_ingot_blasting.json | 13 +++++ .../platinum_dust_to_ingot_furnace.json | 13 +++++ .../platinum/platinum_ingot_to_dust.json | 16 ++++++ .../recipe/platinum/platinum_nugget.json | 13 +++++ .../platinum/platinum_nugget_to_ingot.json | 18 +++++++ .../platinum_ore_block_to_ingot_blasting.json | 13 +++++ .../platinum_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/platinum/platinum_plate.json | 21 ++++++++ .../platinum_raw_block_to_raw_ore.json | 13 +++++ ...tinum_raw_ore_block_to_block_blasting.json | 13 +++++ ...atinum_raw_ore_block_to_block_furnace.json | 13 +++++ .../platinum_raw_ore_to_ingot_blasting.json | 13 +++++ .../platinum_raw_ore_to_ingot_furnace.json | 13 +++++ .../platinum_raw_ore_to_raw_block.json | 18 +++++++ .../recipe/platinum/platinum_rod.json | 21 ++++++++ .../recipe/plutonium/plutonium_block.json | 18 +++++++ .../plutonium/plutonium_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/plutonium/plutonium_dust_dupe.json | 16 ++++++ .../plutonium_dust_to_ingot_blasting.json | 13 +++++ .../plutonium_dust_to_ingot_furnace.json | 13 +++++ .../plutonium/plutonium_ingot_to_dust.json | 16 ++++++ .../recipe/plutonium/plutonium_nugget.json | 13 +++++ .../plutonium/plutonium_nugget_to_ingot.json | 18 +++++++ ...plutonium_ore_block_to_ingot_blasting.json | 13 +++++ .../plutonium_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/plutonium/plutonium_plate.json | 21 ++++++++ .../plutonium_raw_block_to_raw_ore.json | 13 +++++ ...onium_raw_ore_block_to_block_blasting.json | 13 +++++ ...tonium_raw_ore_block_to_block_furnace.json | 13 +++++ .../plutonium_raw_ore_to_ingot_blasting.json | 13 +++++ .../plutonium_raw_ore_to_ingot_furnace.json | 13 +++++ .../plutonium_raw_ore_to_raw_block.json | 18 +++++++ .../recipe/plutonium/plutonium_rod.json | 21 ++++++++ .../recipe/silver/silver_block.json | 18 +++++++ .../recipe/silver/silver_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/silver/silver_dust_dupe.json | 16 ++++++ .../silver/silver_dust_to_ingot_blasting.json | 13 +++++ .../silver/silver_dust_to_ingot_furnace.json | 13 +++++ .../recipe/silver/silver_ingot_to_dust.json | 16 ++++++ .../recipe/silver/silver_nugget.json | 13 +++++ .../recipe/silver/silver_nugget_to_ingot.json | 18 +++++++ .../silver_ore_block_to_ingot_blasting.json | 13 +++++ .../silver_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/silver/silver_plate.json | 21 ++++++++ .../silver/silver_raw_block_to_raw_ore.json | 13 +++++ ...ilver_raw_ore_block_to_block_blasting.json | 13 +++++ ...silver_raw_ore_block_to_block_furnace.json | 13 +++++ .../silver_raw_ore_to_ingot_blasting.json | 13 +++++ .../silver_raw_ore_to_ingot_furnace.json | 13 +++++ .../silver/silver_raw_ore_to_raw_block.json | 18 +++++++ .../recipe/silver/silver_rod.json | 21 ++++++++ .../eternalitems/recipe/tin/tin_block.json | 18 +++++++ .../recipe/tin/tin_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/tin/tin_dust_dupe.json | 16 ++++++ .../tin/tin_dust_to_ingot_blasting.json | 13 +++++ .../recipe/tin/tin_dust_to_ingot_furnace.json | 13 +++++ .../recipe/tin/tin_ingot_to_dust.json | 16 ++++++ .../eternalitems/recipe/tin/tin_nugget.json | 13 +++++ .../recipe/tin/tin_nugget_to_ingot.json | 18 +++++++ .../tin/tin_ore_block_to_ingot_blasting.json | 13 +++++ .../tin/tin_ore_block_to_ingot_furnace.json | 13 +++++ .../eternalitems/recipe/tin/tin_plate.json | 21 ++++++++ .../recipe/tin/tin_raw_block_to_raw_ore.json | 13 +++++ .../tin_raw_ore_block_to_block_blasting.json | 13 +++++ .../tin_raw_ore_block_to_block_furnace.json | 13 +++++ .../tin/tin_raw_ore_to_ingot_blasting.json | 13 +++++ .../tin/tin_raw_ore_to_ingot_furnace.json | 13 +++++ .../recipe/tin/tin_raw_ore_to_raw_block.json | 18 +++++++ .../data/eternalitems/recipe/tin/tin_rod.json | 21 ++++++++ .../recipe/uranium/uranium_block.json | 18 +++++++ .../uranium/uranium_block_to_ingot.json | 13 +++++ ...deepslate_ore_block_to_ingot_blasting.json | 13 +++++ ..._deepslate_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/uranium/uranium_dust_dupe.json | 16 ++++++ .../uranium_dust_to_ingot_blasting.json | 13 +++++ .../uranium_dust_to_ingot_furnace.json | 13 +++++ .../recipe/uranium/uranium_ingot_to_dust.json | 16 ++++++ .../recipe/uranium/uranium_nugget.json | 13 +++++ .../uranium/uranium_nugget_to_ingot.json | 18 +++++++ .../uranium_ore_block_to_ingot_blasting.json | 13 +++++ .../uranium_ore_block_to_ingot_furnace.json | 13 +++++ .../recipe/uranium/uranium_plate.json | 21 ++++++++ .../uranium/uranium_raw_block_to_raw_ore.json | 13 +++++ ...anium_raw_ore_block_to_block_blasting.json | 13 +++++ ...ranium_raw_ore_block_to_block_furnace.json | 13 +++++ .../uranium_raw_ore_to_ingot_blasting.json | 13 +++++ .../uranium_raw_ore_to_ingot_furnace.json | 13 +++++ .../uranium/uranium_raw_ore_to_raw_block.json | 18 +++++++ .../recipe/uranium/uranium_rod.json | 21 ++++++++ 374 files changed, 4359 insertions(+), 172 deletions(-) delete mode 100644 src/generated/resources/.cache/e0d3d0b8d9c807675613821fa865a35f707cd83f create mode 100644 src/generated/resources/assets/eternalitems/blockstates/brass_block.json create mode 100644 src/generated/resources/assets/eternalitems/blockstates/constantan_block.json create mode 100644 src/generated/resources/assets/eternalitems/blockstates/graphite_block.json create mode 100644 src/generated/resources/assets/eternalitems/models/block/brass_block.json create mode 100644 src/generated/resources/assets/eternalitems/models/block/constantan_block.json create mode 100644 src/generated/resources/assets/eternalitems/models/block/graphite_block.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/brass_block.json rename src/generated/resources/assets/eternalitems/models/item/{tiny_coal.json => brass_dust.json} (58%) rename src/generated/resources/assets/eternalitems/models/item/{tiny_charcoal.json => brass_ingot.json} (56%) rename src/generated/resources/assets/eternalitems/models/item/{eternal_dark_hammer.json => brass_nugget.json} (53%) create mode 100644 src/generated/resources/assets/eternalitems/models/item/constantan_block.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/constantan_dust.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/constantan_ingot.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/constantan_nugget.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/graphite_block.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/graphite_nugget.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/plate_brass.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/plate_constantan.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/plate_graphite.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/rod_brass.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/rod_constantan.json create mode 100644 src/generated/resources/assets/eternalitems/models/item/rod_graphite.json create mode 100644 src/generated/resources/data/eternalitems/loot_table/blocks/brass_block.json create mode 100644 src/generated/resources/data/eternalitems/loot_table/blocks/constantan_block.json create mode 100644 src/generated/resources/data/eternalitems/loot_table/blocks/graphite_block.json delete mode 100644 src/generated/resources/data/minecraft/tags/item/coals.json delete mode 100644 src/generated/resources/data/neoforge/data_maps/item/furnace_fuels.json delete mode 100644 src/main/java/net/radzratz/eternalitems/datagen/EternalMapProvider.java delete mode 100644 src/main/java/net/radzratz/eternalitems/item/custom/FuelItem.java create mode 100644 src/main/resources/assets/eternalitems/textures/block/brass_block.png create mode 100644 src/main/resources/assets/eternalitems/textures/block/constantan_block.png create mode 100644 src/main/resources/assets/eternalitems/textures/block/graphite_block.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/brass_dust.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/brass_ingot.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/brass_nugget.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/constantan_dust.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/constantan_ingot.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/constantan_nugget.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/graphite_nugget.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/plate_brass.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/plate_constantan.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/plate_graphite.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/rod_brass.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/rod_constantan.png create mode 100644 src/main/resources/assets/eternalitems/textures/item/rod_graphite.png delete mode 100644 src/main/resources/assets/eternalitems/textures/item/tiny_charcoal.png delete mode 100644 src/main/resources/assets/eternalitems/textures/item/tiny_coal.png create mode 100644 src/main/resources/data/c/tags/item/dusts/brass.json create mode 100644 src/main/resources/data/c/tags/item/dusts/constantan.json create mode 100644 src/main/resources/data/c/tags/item/ingots/brass.json create mode 100644 src/main/resources/data/c/tags/item/ingots/constantan.json create mode 100644 src/main/resources/data/c/tags/item/nuggets.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/aluminum.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/brass.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/bronze.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/cobalt.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/constantan.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/copper.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/electrum.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/enderium.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/graphite.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/invar.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/lead.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/lumium.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/nickel.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/osmium.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/platinum.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/plutonium.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/redstone.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/signalum.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/steel.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/tin.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/ultimatitanium.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/uranium.json create mode 100644 src/main/resources/data/c/tags/item/nuggets/zinc.json create mode 100644 src/main/resources/data/c/tags/item/plates/brass.json create mode 100644 src/main/resources/data/c/tags/item/plates/constantan.json create mode 100644 src/main/resources/data/c/tags/item/rods/brass.json create mode 100644 src/main/resources/data/c/tags/item/rods/constantan.json create mode 100644 src/main/resources/data/c/tags/item/storage_blocks/raw_ore_block.json rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_block.json (83%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_block_to_ingot.json (100%) create mode 100644 src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_dupe.json rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_dust_to_ingot_blasting.json (83%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_dust_to_ingot_furnace.json (83%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_ingot_to_dust.json (100%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_nugget.json (80%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_nugget_to_ingot.json (83%) rename src/main/resources/data/eternalitems/recipe/{aluminum_ingot_blasting.json => aluminum/aluminum_ore_block_to_ingot_blasting.json} (82%) rename src/main/resources/data/eternalitems/recipe/{aluminum_ingot_furnace.json => aluminum/aluminum_ore_block_to_ingot_furnace.json} (82%) create mode 100644 src/main/resources/data/eternalitems/recipe/aluminum/aluminum_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_block_to_raw_ore.json rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_raw_ore_block_to_block_blasting.json (100%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_raw_ore_block_to_block_furnace.json (100%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_raw_ore_to_ingot_blasting.json (84%) rename src/main/resources/data/eternalitems/recipe/{ => aluminum}/aluminum_raw_ore_to_ingot_furnace.json (84%) rename src/main/resources/data/eternalitems/recipe/{raw_aluminum_to_raw_aluminum_block.json => aluminum/aluminum_raw_ore_to_raw_block.json} (78%) create mode 100644 src/main/resources/data/eternalitems/recipe/aluminum/aluminum_rod.json rename src/main/resources/data/eternalitems/recipe/{tinycharcoal_to_charcoal.json => brass/brass_block.json} (71%) create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_dust_creation.json create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_ingot_to_dust.json rename src/main/resources/data/eternalitems/recipe/{charcoal_to_tinycharcoal.json => brass/brass_nugget.json} (64%) create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/brass/brass_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_creation.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/bronze/bronze_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/cobalt/cobalt_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_creation.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/constantan/constantan_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/copper/copper_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_creation.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/electrum/electrum_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/graphite/graphite_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/graphite/graphite_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/graphite/graphite_ingot_blasting.json rename src/main/resources/data/eternalitems/recipe/{coal_to_graphite_ingot_furnace.json => graphite/graphite_ingot_furnace.json} (100%) create mode 100644 src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/graphite/graphite_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/graphite/graphite_rod.json rename src/main/resources/data/eternalitems/recipe/{cobalt_hammer.json => hammers/hammer_cobalt.json} (100%) rename src/main/resources/data/eternalitems/recipe/{copper_hammer.json => hammers/hammer_copper.json} (100%) create mode 100644 src/main/resources/data/eternalitems/recipe/hammers/hammer_diamond.json create mode 100644 src/main/resources/data/eternalitems/recipe/hammers/hammer_iron.json create mode 100644 src/main/resources/data/eternalitems/recipe/hammers/hammer_stone.json rename src/main/resources/data/eternalitems/recipe/{tinycoal_to_coal.json => lead/lead_block.json} (73%) create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_ingot_to_dust.json rename src/main/resources/data/eternalitems/recipe/{coal_to_tinycoal.json => lead/lead_nugget.json} (67%) create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/lead/lead_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_plate_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_rod_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_plate_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_rod_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/misc/redstone_ingot_piston.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/nickel/nickel_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/osmium/osmium_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/platinum/platinum_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/plutonium/plutonium_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/silver/silver_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/tin/tin_rod.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_block_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_dupe.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_ingot_to_dust.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget_to_ingot.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_plate.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_block_to_raw_ore.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_blasting.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_furnace.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_raw_block.json create mode 100644 src/main/resources/data/eternalitems/recipe/uranium/uranium_rod.json diff --git a/src/generated/resources/.cache/341c9885a13831e57b4b2ec5e2e3b493e00dc5c9 b/src/generated/resources/.cache/341c9885a13831e57b4b2ec5e2e3b493e00dc5c9 index a8773ae..e24d3e6 100644 --- a/src/generated/resources/.cache/341c9885a13831e57b4b2ec5e2e3b493e00dc5c9 +++ b/src/generated/resources/.cache/341c9885a13831e57b4b2ec5e2e3b493e00dc5c9 @@ -1,3 +1,2 @@ -// 1.21.1 2024-10-31T22:30:27.1564572 Tags for minecraft:item mod id eternalitems -e0b89fbdf6630d519b334279059cac8266dacaa9 data/hammers/tags/item/hammers.json -9f01ebdb47305dd46bb5942415bebd97ac75fd8b data/minecraft/tags/item/coals.json +// 1.21.1 2024-11-01T03:06:09.6801641 Tags for minecraft:item mod id eternalitems +db98a58ef5f951bc3b206cbf2c4dda9bf6bb1119 data/hammers/tags/item/hammers.json diff --git a/src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d b/src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d index 02c780c..3fcab62 100644 --- a/src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d +++ b/src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d @@ -1,9 +1,11 @@ -// 1.21.1 2024-10-31T22:30:27.1564572 Loot Tables +// 1.21.1 2024-11-02T00:37:06.8917418 Loot Tables 9d46450fd9d06e90e4eb79749240d146deca5fb7 data/eternalitems/loot_table/blocks/aluminum_block.json b2e8a28cbbf1a0885dc667c6a432a0e69b43a51a data/eternalitems/loot_table/blocks/aluminum_ore_block.json +237a2854a7a139938396c3429319bb7426d79a09 data/eternalitems/loot_table/blocks/brass_block.json 7c037f2ee0817a7fc0f723bd0c1258d8f857abcf data/eternalitems/loot_table/blocks/bronze_block.json 71e9ca95aee845370092d26ad0d93c25828fcec3 data/eternalitems/loot_table/blocks/cobalt_block.json 9e7d499569907b6131575b98bdd7de126bda784f data/eternalitems/loot_table/blocks/cobalt_ore_block.json +ae68dbe51a73190121e4e9f16bc667223c20abb1 data/eternalitems/loot_table/blocks/constantan_block.json f9ee71e0f4158d1a22e492c63d870525dca8d668 data/eternalitems/loot_table/blocks/deepslate_aluminum_ore_block.json 89e9bb73715f5441084736e63e4e26dafe050dd1 data/eternalitems/loot_table/blocks/deepslate_cobalt_ore_block.json 10600377e8c2eeca25d8939fa1bfb50b5bc04dd2 data/eternalitems/loot_table/blocks/deepslate_fluorite_ore_block.json @@ -19,6 +21,7 @@ e4e83ad4ec785108db84e1edf24ee8504c76a101 data/eternalitems/loot_table/blocks/dee 13b6f075a1b7b72b1e62914d87d8b2fdc7023366 data/eternalitems/loot_table/blocks/electrum_block.json 0ceffc8eba3080b08f02c6f2177420fb4df15441 data/eternalitems/loot_table/blocks/enderium_block.json c3de1780735104c42e6a4a30d2d5c2e5946fbb60 data/eternalitems/loot_table/blocks/fluorite_ore_block.json +0b83cf834e50ebd060460819073289f0928a6d69 data/eternalitems/loot_table/blocks/graphite_block.json fb9c5e390c2788e98d542cdc1d46e132c366972f data/eternalitems/loot_table/blocks/invar_block.json d335bacd4ab4c71043e9e33fd6fb04d885a7ad70 data/eternalitems/loot_table/blocks/lead_block.json c1fe92a23acbd6ebccc12c31249be12f57a4ad0b data/eternalitems/loot_table/blocks/lead_ore_block.json diff --git a/src/generated/resources/.cache/5c218228dfbe07ada306527b9e846614d574de89 b/src/generated/resources/.cache/5c218228dfbe07ada306527b9e846614d574de89 index 8fa2aae..d04ac7f 100644 --- a/src/generated/resources/.cache/5c218228dfbe07ada306527b9e846614d574de89 +++ b/src/generated/resources/.cache/5c218228dfbe07ada306527b9e846614d574de89 @@ -1,7 +1,10 @@ -// 1.21.1 2024-10-31T22:30:27.1534566 Item Models: eternalitems +// 1.21.1 2024-11-02T00:37:06.8877417 Item Models: eternalitems f8b4dc9c72f694edafd5a8dfc6923f2eb1eb1761 assets/eternalitems/models/item/aluminum_dust.json 02c83395e9f13183b3f678e7dca5cd980e623572 assets/eternalitems/models/item/aluminum_ingot.json dadf922c6870a58f314f1653d3a4c8b6504f6e34 assets/eternalitems/models/item/aluminum_nugget.json +2a5d04124c787b429bc1a177685473a7db6e784a assets/eternalitems/models/item/brass_dust.json +cf7501e5cd74a86ceee629567f394f8dc8cf34b3 assets/eternalitems/models/item/brass_ingot.json +06ed34231feca5aeba8a25141cb8ad74ecb0dc37 assets/eternalitems/models/item/brass_nugget.json afce91b30c58c9f15686f395a10cddfb53aea0b1 assets/eternalitems/models/item/bronze_dust.json 874a5b5c1d2fc2ee15b07eb2b1e50db3fb06ea55 assets/eternalitems/models/item/bronze_ingot.json 5f5253760c10df15a711301233e06bfcf499bf80 assets/eternalitems/models/item/bronze_nugget.json @@ -9,6 +12,9 @@ aaca3e57943a42f5736bd8805f18e7daa5daaf98 assets/eternalitems/models/item/cobalt_ 193b61d1f9b191b103e04e2d01daca23f5096a41 assets/eternalitems/models/item/cobalt_hammer.json e7c138561d83f5c3ff28ea99296371dc32d89bfa assets/eternalitems/models/item/cobalt_ingot.json 18f194b876989eb5eff57e77e929c309ae826b04 assets/eternalitems/models/item/cobalt_nugget.json +f39630ae283565aa4c5a6ddc9df95b18012785bf assets/eternalitems/models/item/constantan_dust.json +e2ee30a86b4ac671284a0ec4662626aaf8b8893d assets/eternalitems/models/item/constantan_ingot.json +14a17a655be3622d65bc9fab86fe71dadd4e1727 assets/eternalitems/models/item/constantan_nugget.json ec64e86546e82723649c84b989329ffe98f3b0c9 assets/eternalitems/models/item/copper_dust.json a58a784148447aa771d128da118fabc1e48a4c63 assets/eternalitems/models/item/copper_hammer.json 7763ac67fe83ccfba19f9c6fc04da91456c10f34 assets/eternalitems/models/item/copper_nugget.json @@ -20,7 +26,6 @@ b68457702c0f5f78b1a15e04f37c2c3e9750229d assets/eternalitems/models/item/electru cf9117ce34951e97cf1f9ce5cd31a8bc8403bd71 assets/eternalitems/models/item/enderium_ingot.json 509bb72ba4b3a4ea3074233a26e440563809756d assets/eternalitems/models/item/enderium_nugget.json c65659a75b5d30335115270d74ca7a74a3d294a3 assets/eternalitems/models/item/ender_dust.json -7c1849f7d38da7e90a8f89d640ea49a304e3f5ed assets/eternalitems/models/item/eternal_dark_hammer.json 02ad44495e981b0f38099185d382f0599ce294aa assets/eternalitems/models/item/eternal_dark_ingot.json 869ec02392532238e1b3c58f16e7bf035a43f2eb assets/eternalitems/models/item/eternal_light_ingot.json b54b07327139e2f07c76abca6aa6eed8288ce53f assets/eternalitems/models/item/fluorite.json @@ -32,6 +37,7 @@ d347eb13f705f5ec1314dac1daec1209cc67347f assets/eternalitems/models/item/gem_obs 2226b44193b7c9a3cb0fa0d5ba3b65ba35275f78 assets/eternalitems/models/item/gem_sapphire.json 2273a6244f62bb5156b7e2f8ad6e560fcc87026f assets/eternalitems/models/item/gold_dust.json 32f386e31bf31b928eddad43689cae3105658c99 assets/eternalitems/models/item/graphite_ingot.json +817d553b1dc3e0949fe77425c6ac6ccd26fcf6e8 assets/eternalitems/models/item/graphite_nugget.json 06253a8e0794b1a7e3f86d6c93f24a786717987a assets/eternalitems/models/item/invar_dust.json 1d9ba0d95d170038c7460a8c88eef4e49ed8dad4 assets/eternalitems/models/item/invar_ingot.json 916d6d3693e403a4f4a8339931c290ff127756e0 assets/eternalitems/models/item/invar_nugget.json @@ -50,12 +56,15 @@ e8c1007523da9904b68955cc1ab9d210b9338a9b assets/eternalitems/models/item/nickel_ 7367fce7e8354ce2973307b1ee6d6165f4221fe4 assets/eternalitems/models/item/osmium_ingot.json 61a61fd9454598c0f942963c5cf99c5a99bae4b8 assets/eternalitems/models/item/osmium_nugget.json d6a1374d4426f3a25926828ac21e0a6146de7bba assets/eternalitems/models/item/plate_aluminum.json +a9fb1fc3d79fbb8a800b27e265860be653e0ced0 assets/eternalitems/models/item/plate_brass.json 83dae443fbe628aef0e0c8cdf27e020e5296e4f5 assets/eternalitems/models/item/plate_bronze.json 43f703dff634c21d84ecb5f204ad8cadc75fae05 assets/eternalitems/models/item/plate_cobalt.json +436232809c4d7ca98acd45fdde0b90aef8ab6950 assets/eternalitems/models/item/plate_constantan.json 6b166bd623e7815a17ba0a704eb41064db471c87 assets/eternalitems/models/item/plate_copper.json aaf0ea38b7db42c27c6c9ebae4fb0bb1d0eb03b1 assets/eternalitems/models/item/plate_electrum.json 2160c83a5720c3ba323671b08ee9e87c2a4ff92d assets/eternalitems/models/item/plate_enderium.json ff10ed527600690b49191604204dfa541371fa73 assets/eternalitems/models/item/plate_gold.json +452a34df2e8230a7029548f4c68576a8897b53a5 assets/eternalitems/models/item/plate_graphite.json 5b3b5531443c663b463936d956ff29f00191c618 assets/eternalitems/models/item/plate_invar.json 4002e440a9a8aff5e7bc8239574f3837d9e89a08 assets/eternalitems/models/item/plate_iron.json 41d639b510f6a2d74b64a02c4d35d75be1bd9d36 assets/eternalitems/models/item/plate_lead.json @@ -90,12 +99,15 @@ b967a30688328fb2e098b075034afbcfa20e8fef assets/eternalitems/models/item/raw_ura 017e9fdf1e14ce97b80943f574cae258c0c798be assets/eternalitems/models/item/raw_zinc.json 014c0ffa141276718d3b520f6bb287234a3057aa assets/eternalitems/models/item/redstone_ingot.json 73a8e9a0f56abcf4a4f9b274e1c68cee9e0ba772 assets/eternalitems/models/item/rod_aluminum.json +eff833daed46ffbe546b9d4b2ba5614fce3f8b7d assets/eternalitems/models/item/rod_brass.json 282670eeb2a1eca53a71c0729dfbda0b176af831 assets/eternalitems/models/item/rod_bronze.json 733e20dcbe7546e062df16debaa5b6ce09760bab assets/eternalitems/models/item/rod_cobalt.json +6fb9d1091b6941cb1b77eb938598b81cd18a7afb assets/eternalitems/models/item/rod_constantan.json ce9ffb917579926b50db8758e782566ff26cc4d4 assets/eternalitems/models/item/rod_copper.json 3ce22b202338c7e8adbedf55fe4380c6e24ecd4c assets/eternalitems/models/item/rod_electrum.json fc62e8be9895d4617d7a271070464dd9fca41a7f assets/eternalitems/models/item/rod_enderium.json 4dd21909c20e796cd5cf91ac4d6a09c0aa886705 assets/eternalitems/models/item/rod_gold.json +b9ecc26831b0781462a258258367e647f96813cd assets/eternalitems/models/item/rod_graphite.json 9800260e20a29748161e7a389136908b3ee00e07 assets/eternalitems/models/item/rod_invar.json 99dcde8d696755c48888408b6faaf0147a429189 assets/eternalitems/models/item/rod_iron.json b471f4b33e89b803631165b49e1862c0d821db88 assets/eternalitems/models/item/rod_lead.json @@ -120,8 +132,6 @@ d49a5ab98211186611e6a3ad5022560bdeb0b892 assets/eternalitems/models/item/silver_ 9c5984acd15dff66431f6a9134b57d8a7e16950d assets/eternalitems/models/item/stone_hammer.json 18fdb798ccae7659508333694faff1326d181632 assets/eternalitems/models/item/sulfur.json 14e6cb0b7922e0abdb8e674fc670a134db3f00d8 assets/eternalitems/models/item/sulfur_dust.json -7c4f2f16b5360779ebb60a4608233e4734b34514 assets/eternalitems/models/item/tiny_charcoal.json -e2ed25f8aa5a281be543bf36e31b8b3b7c0e36b9 assets/eternalitems/models/item/tiny_coal.json 1d31f8786598925dddaf5c9ecbfa88a6accf3783 assets/eternalitems/models/item/tin_dust.json f8bb6e46cad91f8e3d4c64f6deb3c00f4a011939 assets/eternalitems/models/item/tin_ingot.json 340a78734e97dceff8110ac3887df94a70d584ea assets/eternalitems/models/item/tin_nugget.json diff --git a/src/generated/resources/.cache/d2ab0c7aaa4d7f1eba7e17d10575eaa6c0ca15f5 b/src/generated/resources/.cache/d2ab0c7aaa4d7f1eba7e17d10575eaa6c0ca15f5 index b8158f1..e545f32 100644 --- a/src/generated/resources/.cache/d2ab0c7aaa4d7f1eba7e17d10575eaa6c0ca15f5 +++ b/src/generated/resources/.cache/d2ab0c7aaa4d7f1eba7e17d10575eaa6c0ca15f5 @@ -1,4 +1,4 @@ -// 1.21.1 2024-10-31T22:30:27.1554569 Tags for minecraft:block mod id eternalitems -f6eea0fdebcba8962200462c8faaa967511167af data/minecraft/tags/block/mineable/pickaxe.json +// 1.21.1 2024-11-02T00:37:06.8917418 Tags for minecraft:block mod id eternalitems +a480345f22f816b1c2fabed0d4950a3627cfbe75 data/minecraft/tags/block/mineable/pickaxe.json 03237abdb9d266df82fa61c493720b33fde93ae8 data/minecraft/tags/block/needs_diamond_tool.json -823a895c55bf7bd5e99cc919e20c4b258f769484 data/minecraft/tags/block/needs_iron_tool.json +9eb2077a9e94ea690bee1013be1b0b2cd14ba621 data/minecraft/tags/block/needs_iron_tool.json diff --git a/src/generated/resources/.cache/e0d3d0b8d9c807675613821fa865a35f707cd83f b/src/generated/resources/.cache/e0d3d0b8d9c807675613821fa865a35f707cd83f deleted file mode 100644 index 2f4515b..0000000 --- a/src/generated/resources/.cache/e0d3d0b8d9c807675613821fa865a35f707cd83f +++ /dev/null @@ -1,2 +0,0 @@ -// 1.21.1 2024-10-31T22:30:27.1524563 Data Maps -eb54779c8430e4d989743586ac9f7c0368c88bee data/neoforge/data_maps/item/furnace_fuels.json diff --git a/src/generated/resources/.cache/e4266b57f3fc507507d95bfbc65bb6458776bf9e b/src/generated/resources/.cache/e4266b57f3fc507507d95bfbc65bb6458776bf9e index ae7e4ab..ae5aedf 100644 --- a/src/generated/resources/.cache/e4266b57f3fc507507d95bfbc65bb6458776bf9e +++ b/src/generated/resources/.cache/e4266b57f3fc507507d95bfbc65bb6458776bf9e @@ -1,9 +1,11 @@ -// 1.21.1 2024-10-31T22:30:27.1584577 Block States: eternalitems +// 1.21.1 2024-11-02T00:37:06.8927416 Block States: eternalitems f40d4cdcc09485a90bf9f7c5248c9adcdf95d1dd assets/eternalitems/blockstates/aluminum_block.json 065006eee49806bb9edcf4280f1988727faee35d assets/eternalitems/blockstates/aluminum_ore_block.json +4cb0a04ef08def3637e7057ebf2be98ad959003b assets/eternalitems/blockstates/brass_block.json c104c4f247b4af765ff5ae94d1e2980c54117fdb assets/eternalitems/blockstates/bronze_block.json 80115f16ed885de9c3715904545800bba3498d62 assets/eternalitems/blockstates/cobalt_block.json 978b4801f968153504510bbc94736fed2804c75e assets/eternalitems/blockstates/cobalt_ore_block.json +c3ad0e422e21373c309884ef9231857b6dec3c0c assets/eternalitems/blockstates/constantan_block.json a3823689323a91a94f5df58efe2dd7d428ae9d4f assets/eternalitems/blockstates/deepslate_aluminum_ore_block.json c3c12ad74e154a94cd1ec24c852834cd8ac288df assets/eternalitems/blockstates/deepslate_cobalt_ore_block.json c56831032f7370a58c1240668573319cb1e51ea9 assets/eternalitems/blockstates/deepslate_fluorite_ore_block.json @@ -19,6 +21,7 @@ c9a7026f3342e20ba0973191c3c40e9063bf9bf3 assets/eternalitems/blockstates/deepsla 1bb293518eed5796be1c9bb1c5474a8186e5636b assets/eternalitems/blockstates/electrum_block.json 040c560b5870e45d7bd03754e8297b727c303a85 assets/eternalitems/blockstates/enderium_block.json fe4fd050962ec168f8e3206986e97a49037094d2 assets/eternalitems/blockstates/fluorite_ore_block.json +8492b711d9093710075eede38989f24301f0e026 assets/eternalitems/blockstates/graphite_block.json f91e2a63b3703c7507f9843ec5b7584465966950 assets/eternalitems/blockstates/invar_block.json 5e39fcd837344bfe7b1117a8a4ad37ebfe303cd6 assets/eternalitems/blockstates/lead_block.json 12652bd5bff12fbc936cd8ca2d5643790a48e28e assets/eternalitems/blockstates/lead_ore_block.json @@ -53,9 +56,11 @@ a1fa35007a67e95af6ffd216cc64cf1b3beb0c7e assets/eternalitems/blockstates/uranium 17f5d63cd55c237e4bfe38ff5cca353c664348ee assets/eternalitems/blockstates/uranium_ore_block.json 0bffa36214c8bb369b741637627be99f2e8b8503 assets/eternalitems/models/block/aluminum_block.json 003da36c1b2751b0077f65abdad0e04b1fff9b1d assets/eternalitems/models/block/aluminum_ore_block.json +ecd637507545f4709ccef3f03d36f0729c2b4053 assets/eternalitems/models/block/brass_block.json 9514149ddc37cce6c9d8f8bab14e3ec563a6ec3a assets/eternalitems/models/block/bronze_block.json ddea10770cea4b701a7758540d8539fb3a836cfa assets/eternalitems/models/block/cobalt_block.json 37ab36c4495cf97a6d033faa2d821a737086f634 assets/eternalitems/models/block/cobalt_ore_block.json +18b7bf06d489998637bc161e08eb10b50c3075ff assets/eternalitems/models/block/constantan_block.json af64c7840db9a9c313cca615bb39690c2840d4e8 assets/eternalitems/models/block/deepslate_aluminum_ore_block.json 313dbc832fbefe8c02da526a3d119ef7fd4b899d assets/eternalitems/models/block/deepslate_cobalt_ore_block.json e4ea5dc98636af14974cfec67ecd82d97a937f62 assets/eternalitems/models/block/deepslate_fluorite_ore_block.json @@ -71,6 +76,7 @@ ea3faf4e004e5d88726658fc5339410d2e03b7cb assets/eternalitems/models/block/deepsl c814a1f6bd217ecc992682de6f2f3bfec06cf9ce assets/eternalitems/models/block/electrum_block.json 0bc816ca4a37a22df691f9f9eaa3f7949f7c5db1 assets/eternalitems/models/block/enderium_block.json 990bd04eb10834229297d1f65acf3a11c4b09ffe assets/eternalitems/models/block/fluorite_ore_block.json +a687ef548b7a5def2250c4b3fba9d20482d3fa8c assets/eternalitems/models/block/graphite_block.json 598a44c75ad0920c2e645ac8e96e82b3e5308964 assets/eternalitems/models/block/invar_block.json d10f8ef1667709acd330d13e90bc2d0b75d0dba4 assets/eternalitems/models/block/lead_block.json 93fc51708f475606a2b7b2b7bced7a36caf5a15b assets/eternalitems/models/block/lead_ore_block.json @@ -105,9 +111,11 @@ d0ed3d6f44e6628eb6ae631b7025556159f5a4e0 assets/eternalitems/models/block/ultima aad8945bbbcc9565d52ed45071715d5aa07d1b00 assets/eternalitems/models/block/uranium_ore_block.json 4601a0130e5ae8e81ce5b732acdcb90a6136352a assets/eternalitems/models/item/aluminum_block.json 33d8c63b80ec9885b1ded10f949d354c8693e85d assets/eternalitems/models/item/aluminum_ore_block.json +f38cd028763b860411ae194142d41c033da1fe30 assets/eternalitems/models/item/brass_block.json db251e42b8f987dabc0e2cd3aa3b6b1ca50361a3 assets/eternalitems/models/item/bronze_block.json e7de2fab1c20675b52570044a7e2e0bf28e4319d assets/eternalitems/models/item/cobalt_block.json 78ebbdb11585cf727de6c20762e671e92a7281b6 assets/eternalitems/models/item/cobalt_ore_block.json +23fa74708a6abf1bb33d69fafb0b2602309df838 assets/eternalitems/models/item/constantan_block.json a2ce343c76d50b99ec72f987d90ea20f282a4f8c assets/eternalitems/models/item/deepslate_aluminum_ore_block.json 9e3a4472f1f054f6ecfdd8ba1c5210d605029ec4 assets/eternalitems/models/item/deepslate_cobalt_ore_block.json e1346f414dfc95b1544106c2ff9c4f3adffcce2b assets/eternalitems/models/item/deepslate_fluorite_ore_block.json @@ -123,6 +131,7 @@ be2f2785339a2e4fe41b0f6003dfb6850f0bd139 assets/eternalitems/models/item/deepsla 4064d4d6af138941e4fd122cc0396e8eb3224134 assets/eternalitems/models/item/electrum_block.json 4ba55094eaac009f685315e1da92baef967cea4b assets/eternalitems/models/item/enderium_block.json 35f31eaf82740b28bb0051c448cb0e1163ef65fd assets/eternalitems/models/item/fluorite_ore_block.json +c4f7910552e722ac0c58f45a5f1afd18b5e5bf3c assets/eternalitems/models/item/graphite_block.json 4a35c473ac0f270bdbbea95db9b2e3d90be3ac1f assets/eternalitems/models/item/invar_block.json 34ba1bb118df6ab125036578c06b1ee3d72f0854 assets/eternalitems/models/item/lead_block.json 077dff3f9a353dcb1a7b3c2199b02696d949b260 assets/eternalitems/models/item/lead_ore_block.json diff --git a/src/generated/resources/assets/eternalitems/blockstates/brass_block.json b/src/generated/resources/assets/eternalitems/blockstates/brass_block.json new file mode 100644 index 0000000..7e42ac6 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/blockstates/brass_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "eternalitems:block/brass_block" + } + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/blockstates/constantan_block.json b/src/generated/resources/assets/eternalitems/blockstates/constantan_block.json new file mode 100644 index 0000000..56f31a0 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/blockstates/constantan_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "eternalitems:block/constantan_block" + } + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/blockstates/graphite_block.json b/src/generated/resources/assets/eternalitems/blockstates/graphite_block.json new file mode 100644 index 0000000..8e3b671 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/blockstates/graphite_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "eternalitems:block/graphite_block" + } + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/block/brass_block.json b/src/generated/resources/assets/eternalitems/models/block/brass_block.json new file mode 100644 index 0000000..5b2bccf --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/block/brass_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "eternalitems:block/brass_block" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/block/constantan_block.json b/src/generated/resources/assets/eternalitems/models/block/constantan_block.json new file mode 100644 index 0000000..139f96e --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/block/constantan_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "eternalitems:block/constantan_block" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/block/graphite_block.json b/src/generated/resources/assets/eternalitems/models/block/graphite_block.json new file mode 100644 index 0000000..7a5f2f9 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/block/graphite_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "eternalitems:block/graphite_block" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/brass_block.json b/src/generated/resources/assets/eternalitems/models/item/brass_block.json new file mode 100644 index 0000000..1bb75cd --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/brass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "eternalitems:block/brass_block" +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/tiny_coal.json b/src/generated/resources/assets/eternalitems/models/item/brass_dust.json similarity index 58% rename from src/generated/resources/assets/eternalitems/models/item/tiny_coal.json rename to src/generated/resources/assets/eternalitems/models/item/brass_dust.json index d79248f..2a6078e 100644 --- a/src/generated/resources/assets/eternalitems/models/item/tiny_coal.json +++ b/src/generated/resources/assets/eternalitems/models/item/brass_dust.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "eternalitems:item/tiny_coal" + "layer0": "eternalitems:item/brass_dust" } } \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/tiny_charcoal.json b/src/generated/resources/assets/eternalitems/models/item/brass_ingot.json similarity index 56% rename from src/generated/resources/assets/eternalitems/models/item/tiny_charcoal.json rename to src/generated/resources/assets/eternalitems/models/item/brass_ingot.json index 35efd5f..5257a4c 100644 --- a/src/generated/resources/assets/eternalitems/models/item/tiny_charcoal.json +++ b/src/generated/resources/assets/eternalitems/models/item/brass_ingot.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "eternalitems:item/tiny_charcoal" + "layer0": "eternalitems:item/brass_ingot" } } \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/eternal_dark_hammer.json b/src/generated/resources/assets/eternalitems/models/item/brass_nugget.json similarity index 53% rename from src/generated/resources/assets/eternalitems/models/item/eternal_dark_hammer.json rename to src/generated/resources/assets/eternalitems/models/item/brass_nugget.json index 18ce285..2f7b067 100644 --- a/src/generated/resources/assets/eternalitems/models/item/eternal_dark_hammer.json +++ b/src/generated/resources/assets/eternalitems/models/item/brass_nugget.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "eternalitems:item/eternal_dark_hammer" + "layer0": "eternalitems:item/brass_nugget" } } \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/constantan_block.json b/src/generated/resources/assets/eternalitems/models/item/constantan_block.json new file mode 100644 index 0000000..0e23762 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/constantan_block.json @@ -0,0 +1,3 @@ +{ + "parent": "eternalitems:block/constantan_block" +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/constantan_dust.json b/src/generated/resources/assets/eternalitems/models/item/constantan_dust.json new file mode 100644 index 0000000..79e1354 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/constantan_dust.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "eternalitems:item/constantan_dust" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/constantan_ingot.json b/src/generated/resources/assets/eternalitems/models/item/constantan_ingot.json new file mode 100644 index 0000000..93885cf --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/constantan_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "eternalitems:item/constantan_ingot" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/constantan_nugget.json b/src/generated/resources/assets/eternalitems/models/item/constantan_nugget.json new file mode 100644 index 0000000..ee85789 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/constantan_nugget.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "eternalitems:item/constantan_nugget" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/graphite_block.json b/src/generated/resources/assets/eternalitems/models/item/graphite_block.json new file mode 100644 index 0000000..c2a8e6b --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/graphite_block.json @@ -0,0 +1,3 @@ +{ + "parent": "eternalitems:block/graphite_block" +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/graphite_nugget.json b/src/generated/resources/assets/eternalitems/models/item/graphite_nugget.json new file mode 100644 index 0000000..b35768c --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/graphite_nugget.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "eternalitems:item/graphite_nugget" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/plate_brass.json b/src/generated/resources/assets/eternalitems/models/item/plate_brass.json new file mode 100644 index 0000000..ab63a52 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/plate_brass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "eternalitems:item/plate_brass" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/plate_constantan.json b/src/generated/resources/assets/eternalitems/models/item/plate_constantan.json new file mode 100644 index 0000000..89842a1 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/plate_constantan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "eternalitems:item/plate_constantan" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/plate_graphite.json b/src/generated/resources/assets/eternalitems/models/item/plate_graphite.json new file mode 100644 index 0000000..74c0eed --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/plate_graphite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "eternalitems:item/plate_graphite" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/rod_brass.json b/src/generated/resources/assets/eternalitems/models/item/rod_brass.json new file mode 100644 index 0000000..5534362 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/rod_brass.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "eternalitems:item/rod_brass" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/rod_constantan.json b/src/generated/resources/assets/eternalitems/models/item/rod_constantan.json new file mode 100644 index 0000000..0c8992c --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/rod_constantan.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "eternalitems:item/rod_constantan" + } +} \ No newline at end of file diff --git a/src/generated/resources/assets/eternalitems/models/item/rod_graphite.json b/src/generated/resources/assets/eternalitems/models/item/rod_graphite.json new file mode 100644 index 0000000..b820fe1 --- /dev/null +++ b/src/generated/resources/assets/eternalitems/models/item/rod_graphite.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "eternalitems:item/rod_graphite" + } +} \ No newline at end of file diff --git a/src/generated/resources/data/eternalitems/loot_table/blocks/brass_block.json b/src/generated/resources/data/eternalitems/loot_table/blocks/brass_block.json new file mode 100644 index 0000000..3177d0e --- /dev/null +++ b/src/generated/resources/data/eternalitems/loot_table/blocks/brass_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "eternalitems:brass_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "eternalitems:blocks/brass_block" +} \ No newline at end of file diff --git a/src/generated/resources/data/eternalitems/loot_table/blocks/constantan_block.json b/src/generated/resources/data/eternalitems/loot_table/blocks/constantan_block.json new file mode 100644 index 0000000..d5a8587 --- /dev/null +++ b/src/generated/resources/data/eternalitems/loot_table/blocks/constantan_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "eternalitems:constantan_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "eternalitems:blocks/constantan_block" +} \ No newline at end of file diff --git a/src/generated/resources/data/eternalitems/loot_table/blocks/graphite_block.json b/src/generated/resources/data/eternalitems/loot_table/blocks/graphite_block.json new file mode 100644 index 0000000..94d6b15 --- /dev/null +++ b/src/generated/resources/data/eternalitems/loot_table/blocks/graphite_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "eternalitems:graphite_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "eternalitems:blocks/graphite_block" +} \ No newline at end of file diff --git a/src/generated/resources/data/hammers/tags/item/hammers.json b/src/generated/resources/data/hammers/tags/item/hammers.json index 89a34d5..a5cc5ee 100644 --- a/src/generated/resources/data/hammers/tags/item/hammers.json +++ b/src/generated/resources/data/hammers/tags/item/hammers.json @@ -4,7 +4,6 @@ "eternalitems:stone_hammer", "eternalitems:diamond_hammer", "eternalitems:iron_hammer", - "eternalitems:eternal_dark_hammer", "eternalitems:cobalt_hammer" ] } \ No newline at end of file diff --git a/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json b/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json index 5da741e..2ca6503 100644 --- a/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json +++ b/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json @@ -41,6 +41,9 @@ "eternalitems:ultimatitanium_block", "eternalitems:uranium_block", "eternalitems:silver_block", + "eternalitems:graphite_block", + "eternalitems:constantan_block", + "eternalitems:brass_block", "eternalitems:raw_aluminum_block", "eternalitems:raw_cobalt_block", "eternalitems:raw_lead_block", diff --git a/src/generated/resources/data/minecraft/tags/block/needs_iron_tool.json b/src/generated/resources/data/minecraft/tags/block/needs_iron_tool.json index 7c0b1a9..efe41f7 100644 --- a/src/generated/resources/data/minecraft/tags/block/needs_iron_tool.json +++ b/src/generated/resources/data/minecraft/tags/block/needs_iron_tool.json @@ -31,6 +31,9 @@ "eternalitems:ultimatitanium_block", "eternalitems:uranium_block", "eternalitems:silver_block", + "eternalitems:graphite_block", + "eternalitems:constantan_block", + "eternalitems:brass_block", "eternalitems:raw_aluminum_block", "eternalitems:raw_cobalt_block", "eternalitems:raw_lead_block", diff --git a/src/generated/resources/data/minecraft/tags/item/coals.json b/src/generated/resources/data/minecraft/tags/item/coals.json deleted file mode 100644 index 14c5ff8..0000000 --- a/src/generated/resources/data/minecraft/tags/item/coals.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "eternalitems:tiny_coal", - "eternalitems:tiny_charcoal" - ] -} \ No newline at end of file diff --git a/src/generated/resources/data/neoforge/data_maps/item/furnace_fuels.json b/src/generated/resources/data/neoforge/data_maps/item/furnace_fuels.json deleted file mode 100644 index 821091f..0000000 --- a/src/generated/resources/data/neoforge/data_maps/item/furnace_fuels.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "values": { - "eternalitems:tiny_charcoal": { - "burn_time": 200 - }, - "eternalitems:tiny_coal": { - "burn_time": 200 - } - } -} \ No newline at end of file diff --git a/src/main/java/net/radzratz/eternalitems/block/ModBlocks.java b/src/main/java/net/radzratz/eternalitems/block/ModBlocks.java index 4ad86d5..269f14c 100644 --- a/src/main/java/net/radzratz/eternalitems/block/ModBlocks.java +++ b/src/main/java/net/radzratz/eternalitems/block/ModBlocks.java @@ -294,6 +294,21 @@ public class ModBlocks { .strength(3f) .requiresCorrectToolForDrops() .sound(SoundType.METAL))); + public static final DeferredBlock GRAPHITE_BLOCK = registerBlock("graphite_block", + () -> new Block(BlockBehaviour.Properties.of() + .strength(3f) + .requiresCorrectToolForDrops() + .sound(SoundType.METAL))); + public static final DeferredBlock CONSTANTAN_BLOCK = registerBlock("constantan_block", + () -> new Block(BlockBehaviour.Properties.of() + .strength(3f) + .requiresCorrectToolForDrops() + .sound(SoundType.METAL))); + public static final DeferredBlock BRASS_BLOCK = registerBlock("brass_block", + () -> new Block(BlockBehaviour.Properties.of() + .strength(3f) + .requiresCorrectToolForDrops() + .sound(SoundType.METAL))); diff --git a/src/main/java/net/radzratz/eternalitems/datagen/DataGenerators.java b/src/main/java/net/radzratz/eternalitems/datagen/DataGenerators.java index a4f6adf..c4fe3e9 100644 --- a/src/main/java/net/radzratz/eternalitems/datagen/DataGenerators.java +++ b/src/main/java/net/radzratz/eternalitems/datagen/DataGenerators.java @@ -35,8 +35,6 @@ public static void gatherData(GatherDataEvent event) { generator.addProvider(event.includeClient(), new EternalItemModelProvider(packOutput, existingFileHelper)); generator.addProvider(event.includeClient(), new EternalBlockStateProvider(packOutput, existingFileHelper)); - - generator.addProvider(event.includeServer(), new EternalMapProvider(packOutput, lookupProvider)); } } diff --git a/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockLootTableProvider.java b/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockLootTableProvider.java index bcf5e53..fef92af 100644 --- a/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockLootTableProvider.java +++ b/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockLootTableProvider.java @@ -4,7 +4,6 @@ import net.minecraft.core.HolderLookup; import net.minecraft.core.registries.Registries; import net.minecraft.data.loot.BlockLootSubProvider; -import net.minecraft.world.flag.FeatureFlagSet; import net.minecraft.world.flag.FeatureFlags; import net.minecraft.world.item.Item; import net.minecraft.world.item.enchantment.Enchantment; @@ -15,7 +14,6 @@ import net.minecraft.world.level.storage.loot.functions.ApplyBonusCount; import net.minecraft.world.level.storage.loot.functions.SetItemCountFunction; import net.minecraft.world.level.storage.loot.providers.number.UniformGenerator; -import net.neoforged.fml.common.Mod; import net.radzratz.eternalitems.block.ModBlocks; import net.radzratz.eternalitems.item.Moditems; import org.jetbrains.annotations.NotNull; @@ -47,6 +45,9 @@ protected void generate() { dropSelf(ModBlocks.NICKEL_BLOCK.get()); dropSelf(ModBlocks.SIGNALUM_BLOCK.get()); dropSelf(ModBlocks.SILVER_BLOCK.get()); + dropSelf(ModBlocks.GRAPHITE_BLOCK.get()); + dropSelf(ModBlocks.CONSTANTAN_BLOCK.get()); + dropSelf(ModBlocks.BRASS_BLOCK.get()); //RAW ORE BLOCKS dropSelf(ModBlocks.RAW_ALUMINUM_BLOCK.get()); dropSelf(ModBlocks.RAW_COBALT_BLOCK.get()); diff --git a/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockStateProvider.java b/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockStateProvider.java index 20096ac..aa7cc15 100644 --- a/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockStateProvider.java +++ b/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockStateProvider.java @@ -18,6 +18,7 @@ protected void registerStatesAndModels() { blockWithItem(ModBlocks.ALUMINUM_BLOCK); blockWithItem(ModBlocks.BRONZE_BLOCK); blockWithItem(ModBlocks.COBALT_BLOCK); + blockWithItem(ModBlocks.CONSTANTAN_BLOCK); blockWithItem(ModBlocks.ELECTRUM_BLOCK); blockWithItem(ModBlocks.ENDERIUM_BLOCK); blockWithItem(ModBlocks.INVAR_BLOCK); @@ -32,6 +33,8 @@ protected void registerStatesAndModels() { blockWithItem(ModBlocks.URANIUM_BLOCK); blockWithItem(ModBlocks.ULTIMATITANIUM_BLOCK); blockWithItem(ModBlocks.SILVER_BLOCK); + blockWithItem(ModBlocks.GRAPHITE_BLOCK); + blockWithItem(ModBlocks.BRASS_BLOCK); //RAW BLOCKS blockWithItem(ModBlocks.RAW_ALUMINUM_BLOCK); diff --git a/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockTagProvider.java b/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockTagProvider.java index 94a92c6..db8869e 100644 --- a/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockTagProvider.java +++ b/src/main/java/net/radzratz/eternalitems/datagen/EternalBlockTagProvider.java @@ -64,6 +64,9 @@ protected void addTags(HolderLookup.@NotNull Provider provider) { .add(ModBlocks.ULTIMATITANIUM_BLOCK.get()) .add(ModBlocks.URANIUM_BLOCK.get()) .add(ModBlocks.SILVER_BLOCK.get()) + .add(ModBlocks.GRAPHITE_BLOCK.get()) + .add(ModBlocks.CONSTANTAN_BLOCK.get()) + .add(ModBlocks.BRASS_BLOCK.get()) //RAW ORE BLOCKS .add(ModBlocks.RAW_ALUMINUM_BLOCK.get()) .add(ModBlocks.RAW_COBALT_BLOCK.get()) @@ -111,6 +114,9 @@ protected void addTags(HolderLookup.@NotNull Provider provider) { .add(ModBlocks.ULTIMATITANIUM_BLOCK.get()) .add(ModBlocks.URANIUM_BLOCK.get()) .add(ModBlocks.SILVER_BLOCK.get()) + .add(ModBlocks.GRAPHITE_BLOCK.get()) + .add(ModBlocks.CONSTANTAN_BLOCK.get()) + .add(ModBlocks.BRASS_BLOCK.get()) //RAW ORE BLOCKS .add(ModBlocks.RAW_ALUMINUM_BLOCK.get()) .add(ModBlocks.RAW_COBALT_BLOCK.get()) diff --git a/src/main/java/net/radzratz/eternalitems/datagen/EternalItemModelProvider.java b/src/main/java/net/radzratz/eternalitems/datagen/EternalItemModelProvider.java index db1d6fc..ee5ec74 100644 --- a/src/main/java/net/radzratz/eternalitems/datagen/EternalItemModelProvider.java +++ b/src/main/java/net/radzratz/eternalitems/datagen/EternalItemModelProvider.java @@ -19,7 +19,7 @@ protected void registerModels() { basicItem(Moditems.COBALT_HAMMER.get()); basicItem(Moditems.COPPER_HAMMER.get()); basicItem(Moditems.DIAMOND_HAMMER.get()); - basicItem(Moditems.ETERNAL_DARK_HAMMER.get()); + //basicItem(Moditems.ETERNAL_DARK_HAMMER.get()); basicItem(Moditems.IRON_HAMMER.get()); basicItem(Moditems.STONE_HAMMER.get()); //RAW ORES @@ -36,13 +36,11 @@ protected void registerModels() { basicItem(Moditems.RAW_ULTIMATITANIUM.get()); basicItem(Moditems.RAW_URANIUM.get()); basicItem(Moditems.RAW_ZINC.get()); - //FUELS - basicItem(Moditems.TINY_CHARCOAL.get()); - basicItem(Moditems.TINY_COAL.get()); //INGOTS basicItem(Moditems.ALUMINUM_INGOT.get()); basicItem(Moditems.BRONZE_INGOT.get()); basicItem(Moditems.COBALT_INGOT.get()); + basicItem(Moditems.CONSTANTAN_INGOT.get()); basicItem(Moditems.ELECTRUM_INGOT.get()); basicItem(Moditems.ENDERIUM_INGOT.get()); basicItem(Moditems.ETERNAL_DARK_INGOT.get()); @@ -63,10 +61,12 @@ protected void registerModels() { basicItem(Moditems.ULTIMATITANIUM_INGOT.get()); basicItem(Moditems.URANIUM_INGOT.get()); basicItem(Moditems.ZINC_INGOT.get()); + basicItem(Moditems.BRASS_INGOT.get()); //NUGGETS basicItem(Moditems.ALUMINUM_NUGGET.get()); basicItem(Moditems.BRONZE_NUGGET.get()); basicItem(Moditems.COBALT_NUGGET.get()); + basicItem(Moditems.CONSTANTAN_NUGGET.get()); basicItem(Moditems.COPPER_NUGGET.get()); basicItem(Moditems.ELECTRUM_NUGGET.get()); basicItem(Moditems.ENDERIUM_NUGGET.get()); @@ -83,10 +83,13 @@ protected void registerModels() { basicItem(Moditems.ULTIMATITANIUM_NUGGET.get()); basicItem(Moditems.URANIUM_NUGGET.get()); basicItem(Moditems.ZINC_NUGGET.get()); + basicItem(Moditems.GRAPHITE_NUGGET.get()); + basicItem(Moditems.BRASS_NUGGET.get()); //DUSTS basicItem(Moditems.ALUMINUM_DUST.get()); basicItem(Moditems.BRONZE_DUST.get()); basicItem(Moditems.COBALT_DUST.get()); + basicItem(Moditems.CONSTANTAN_DUST.get()); basicItem(Moditems.COPPER_DUST.get()); basicItem(Moditems.ELECTRUM_DUST.get()); basicItem(Moditems.ENDERIUM_DUST.get()); @@ -108,10 +111,12 @@ protected void registerModels() { basicItem(Moditems.ULTIMATITANIUM_DUST.get()); basicItem(Moditems.URANIUM_DUST.get()); basicItem(Moditems.ZINC_DUST.get()); + basicItem(Moditems.BRASS_DUST.get()); //RODS handheldItem(Moditems.ROD_ALUMINUM); handheldItem(Moditems.ROD_BRONZE); handheldItem(Moditems.ROD_COBALT); + handheldItem(Moditems.ROD_CONSTANTAN); handheldItem(Moditems.ROD_COPPER); handheldItem(Moditems.ROD_ELECTRUM); handheldItem(Moditems.ROD_ENDERIUM); @@ -130,10 +135,13 @@ protected void registerModels() { handheldItem(Moditems.ROD_ULTIMATITANIUM); handheldItem(Moditems.ROD_URANIUM); handheldItem(Moditems.ROD_ZINC); + handheldItem(Moditems.ROD_GRAPHITE); + handheldItem(Moditems.ROD_BRASS); //PLATES basicItem(Moditems.PLATE_ALUMINUM.get()); basicItem(Moditems.PLATE_BRONZE.get()); basicItem(Moditems.PLATE_COBALT.get()); + basicItem(Moditems.PLATE_CONSTANTAN.get()); basicItem(Moditems.PLATE_COPPER.get()); basicItem(Moditems.PLATE_ELECTRUM.get()); basicItem(Moditems.PLATE_ENDERIUM.get()); @@ -152,6 +160,8 @@ protected void registerModels() { basicItem(Moditems.PLATE_ULTIMATITANIUM.get()); basicItem(Moditems.PLATE_URANIUM.get()); basicItem(Moditems.PLATE_ZINC.get()); + basicItem(Moditems.PLATE_GRAPHITE.get()); + basicItem(Moditems.PLATE_BRASS.get()); //GEARS basicItem(Moditems.ULTIMATE_GEAR.get()); //GEMS diff --git a/src/main/java/net/radzratz/eternalitems/datagen/EternalItemTagProvider.java b/src/main/java/net/radzratz/eternalitems/datagen/EternalItemTagProvider.java index c9392fe..a75ea0c 100644 --- a/src/main/java/net/radzratz/eternalitems/datagen/EternalItemTagProvider.java +++ b/src/main/java/net/radzratz/eternalitems/datagen/EternalItemTagProvider.java @@ -28,11 +28,7 @@ protected void addTags(HolderLookup.@NotNull Provider provider) { .add(Moditems.STONE_HAMMER.get()) .add(Moditems.DIAMOND_HAMMER.get()) .add(Moditems.IRON_HAMMER.get()) - .add(Moditems.ETERNAL_DARK_HAMMER.get()) + //.add(Moditems.ETERNAL_DARK_HAMMER.get()) .add(Moditems.COBALT_HAMMER.get()); - - tag(ItemTags.COALS) - .add(Moditems.TINY_COAL.get()) - .add(Moditems.TINY_CHARCOAL.get()); } } diff --git a/src/main/java/net/radzratz/eternalitems/datagen/EternalMapProvider.java b/src/main/java/net/radzratz/eternalitems/datagen/EternalMapProvider.java deleted file mode 100644 index 3179eb5..0000000 --- a/src/main/java/net/radzratz/eternalitems/datagen/EternalMapProvider.java +++ /dev/null @@ -1,23 +0,0 @@ -package net.radzratz.eternalitems.datagen; - -import net.minecraft.core.HolderLookup; -import net.minecraft.data.PackOutput; -import net.neoforged.neoforge.common.data.DataMapProvider; -import net.neoforged.neoforge.registries.datamaps.builtin.FurnaceFuel; -import net.neoforged.neoforge.registries.datamaps.builtin.NeoForgeDataMaps; -import net.radzratz.eternalitems.item.Moditems; - -import java.util.concurrent.CompletableFuture; - -public class EternalMapProvider extends DataMapProvider { - protected EternalMapProvider(PackOutput packOutput, CompletableFuture lookupProvider) { - super(packOutput, lookupProvider); - } - - @Override - protected void gather() { - this.builder(NeoForgeDataMaps.FURNACE_FUELS) - .add(Moditems.TINY_COAL.getId(), new FurnaceFuel(200), false) - .add(Moditems.TINY_CHARCOAL.getId(), new FurnaceFuel(200), false); - } -} diff --git a/src/main/java/net/radzratz/eternalitems/item/ModCreativeModeTabs.java b/src/main/java/net/radzratz/eternalitems/item/ModCreativeModeTabs.java index 463a102..13aeea8 100644 --- a/src/main/java/net/radzratz/eternalitems/item/ModCreativeModeTabs.java +++ b/src/main/java/net/radzratz/eternalitems/item/ModCreativeModeTabs.java @@ -6,7 +6,6 @@ import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.ItemStack; import net.neoforged.bus.api.IEventBus; -import net.neoforged.fml.ModList; import net.neoforged.neoforge.registries.DeferredRegister; import net.radzratz.eternalitems.EternalItems; import net.radzratz.eternalitems.block.ModBlocks; @@ -24,8 +23,10 @@ public class ModCreativeModeTabs { .title(Component.translatable("creativetab.eternalitems.eternal_ingots")) .displayItems((itemDisplayParameters, output) -> { output.accept(Moditems.ALUMINUM_INGOT); + output.accept(Moditems.BRASS_INGOT); output.accept(Moditems.BRONZE_INGOT); output.accept(Moditems.COBALT_INGOT); + output.accept(Moditems.CONSTANTAN_INGOT); output.accept(Moditems.ELECTRUM_INGOT); output.accept(Moditems.ETERNAL_DARK_INGOT); output.accept(Moditems.ETERNAL_LIGHT_INGOT); @@ -54,11 +55,14 @@ public class ModCreativeModeTabs { .title(Component.translatable("creativetab.eternalitems.eternal_nuggets")) .displayItems((itemDisplayParameters, output) -> { output.accept(Moditems.ALUMINUM_NUGGET); + output.accept(Moditems.BRASS_NUGGET); output.accept(Moditems.BRONZE_NUGGET); output.accept(Moditems.COBALT_NUGGET); + output.accept(Moditems.CONSTANTAN_NUGGET); output.accept(Moditems.COPPER_NUGGET); output.accept(Moditems.ELECTRUM_NUGGET); output.accept(Moditems.ENDERIUM_NUGGET); + output.accept(Moditems.GRAPHITE_NUGGET); output.accept(Moditems.INVAR_NUGGET); output.accept(Moditems.LEAD_NUGGET); output.accept(Moditems.LUMIUM_NUGGET); @@ -80,12 +84,15 @@ public class ModCreativeModeTabs { .title(Component.translatable("creativetab.eternalitems.eternal_rods")) .displayItems((itemDisplayParameters, output) -> { output.accept(Moditems.ROD_ALUMINUM); + output.accept(Moditems.ROD_BRASS); output.accept(Moditems.ROD_BRONZE); output.accept(Moditems.ROD_COBALT); + output.accept(Moditems.ROD_CONSTANTAN); output.accept(Moditems.ROD_COPPER); output.accept(Moditems.ROD_ELECTRUM); output.accept(Moditems.ROD_ENDERIUM); output.accept(Moditems.ROD_GOLD); + output.accept(Moditems.ROD_GRAPHITE); output.accept(Moditems.ROD_INVAR); output.accept(Moditems.ROD_IRON); output.accept(Moditems.ROD_LEAD); @@ -108,12 +115,15 @@ public class ModCreativeModeTabs { .title(Component.translatable("creativetab.eternalitems.eternal_plates")) .displayItems((itemDisplayParameters, output) -> { output.accept(Moditems.PLATE_ALUMINUM); + output.accept(Moditems.PLATE_BRASS); output.accept(Moditems.PLATE_BRONZE); output.accept(Moditems.PLATE_COBALT); + output.accept(Moditems.PLATE_CONSTANTAN); output.accept(Moditems.PLATE_COPPER); output.accept(Moditems.PLATE_ELECTRUM); output.accept(Moditems.PLATE_ENDERIUM); output.accept(Moditems.PLATE_GOLD); + output.accept(Moditems.PLATE_GRAPHITE); output.accept(Moditems.PLATE_INVAR); output.accept(Moditems.PLATE_IRON); output.accept(Moditems.PLATE_LEAD); @@ -164,8 +174,10 @@ public class ModCreativeModeTabs { .title(Component.translatable("creativetab.eternalitems.eternal_ore_dust")) .displayItems((itemDisplayParameters, output) -> { output.accept(Moditems.ALUMINUM_DUST); + output.accept(Moditems.BRASS_DUST); output.accept(Moditems.BRONZE_DUST); output.accept(Moditems.COBALT_DUST); + output.accept(Moditems.CONSTANTAN_DUST); output.accept(Moditems.COPPER_DUST); output.accept(Moditems.ELECTRUM_DUST); output.accept(Moditems.ENDER_DUST); @@ -175,6 +187,7 @@ public class ModCreativeModeTabs { output.accept(Moditems.INVAR_DUST); output.accept(Moditems.IRON_DUST); output.accept(Moditems.LEAD_DUST); + output.accept(Moditems.LUMIUM_DUST); output.accept(Moditems.NICKEL_DUST); output.accept(Moditems.OSMIUM_DUST); output.accept(Moditems.PLATINUM_DUST); @@ -239,8 +252,10 @@ public class ModCreativeModeTabs { .title(Component.translatable("creativetab.eternalitems.eternal_blocks")) .displayItems((itemDisplayParameters, output) -> { output.accept(ModBlocks.ALUMINUM_BLOCK); + output.accept(ModBlocks.BRASS_BLOCK); output.accept(ModBlocks.BRONZE_BLOCK); output.accept(ModBlocks.COBALT_BLOCK); + output.accept(ModBlocks.CONSTANTAN_BLOCK); output.accept(ModBlocks.ELECTRUM_BLOCK); output.accept(ModBlocks.ENDERIUM_BLOCK); output.accept(ModBlocks.INVAR_BLOCK); diff --git a/src/main/java/net/radzratz/eternalitems/item/Moditems.java b/src/main/java/net/radzratz/eternalitems/item/Moditems.java index 0d152b9..ff347d3 100644 --- a/src/main/java/net/radzratz/eternalitems/item/Moditems.java +++ b/src/main/java/net/radzratz/eternalitems/item/Moditems.java @@ -6,7 +6,6 @@ import net.neoforged.neoforge.registries.DeferredRegister; import net.radzratz.eternalitems.EternalItems; import net.radzratz.eternalitems.item.custom.EternalHammers; -import net.radzratz.eternalitems.item.custom.FuelItem; public class Moditems { public static final DeferredRegister.Items ITEMS = DeferredRegister.createItems(EternalItems.MOD_ID); @@ -22,15 +21,8 @@ public class Moditems { ()-> new EternalHammers(new Item.Properties(),512)); public static final DeferredItem IRON_HAMMER = ITEMS.register("iron_hammer", ()-> new EternalHammers(new Item.Properties(),256)); - public static final DeferredItem ETERNAL_DARK_HAMMER = ITEMS.register("eternal_dark_hammer", - ()-> new EternalHammers(new Item.Properties(),2048)); - - //Fuels - //Fuels - public static final DeferredItem TINY_COAL = ITEMS.register("tiny_coal", - ()-> new FuelItem(new Item.Properties(), 200)); - public static final DeferredItem TINY_CHARCOAL = ITEMS.register("tiny_charcoal", - ()-> new FuelItem(new Item.Properties(), 200)); + //public static final DeferredItem ETERNAL_DARK_HAMMER = ITEMS.register("eternal_dark_hammer", + // ()-> new EternalHammers(new Item.Properties(),2048)); //Ingots public static final DeferredItem STEEL_INGOT = ITEMS.register("steel_ingot", @@ -79,6 +71,10 @@ public class Moditems { ()-> new Item(new Item.Properties())); public static final DeferredItem SILVER_INGOT = ITEMS.register("silver_ingot", ()-> new Item(new Item.Properties())); + public static final DeferredItem CONSTANTAN_INGOT = ITEMS.register("constantan_ingot", + ()-> new Item(new Item.Properties())); + public static final DeferredItem BRASS_INGOT = ITEMS.register("brass_ingot", + ()-> new Item(new Item.Properties())); //Nuggets public static final DeferredItem ALUMINUM_NUGGET = ITEMS.register("aluminum_nugget", @@ -119,6 +115,12 @@ public class Moditems { ()-> new Item(new Item.Properties())); public static final DeferredItem SILVER_NUGGET = ITEMS.register("silver_nugget", ()-> new Item(new Item.Properties())); + public static final DeferredItem GRAPHITE_NUGGET = ITEMS.register("graphite_nugget", + ()-> new Item(new Item.Properties())); + public static final DeferredItem CONSTANTAN_NUGGET = ITEMS.register("constantan_nugget", + ()-> new Item(new Item.Properties())); + public static final DeferredItem BRASS_NUGGET = ITEMS.register("brass_nugget", + ()-> new Item(new Item.Properties())); //Rods public static final DeferredItem ROD_ALUMINUM = ITEMS.register("rod_aluminum", @@ -163,6 +165,12 @@ public class Moditems { ()-> new Item(new Item.Properties())); public static final DeferredItem ROD_SILVER = ITEMS.register("rod_silver", ()-> new Item(new Item.Properties())); + public static final DeferredItem ROD_GRAPHITE = ITEMS.register("rod_graphite", + ()-> new Item(new Item.Properties())); + public static final DeferredItem ROD_CONSTANTAN = ITEMS.register("rod_constantan", + ()-> new Item(new Item.Properties())); + public static final DeferredItem ROD_BRASS = ITEMS.register("rod_brass", + ()-> new Item(new Item.Properties())); //Plates public static final DeferredItem PLATE_ALUMINUM = ITEMS.register("plate_aluminum", @@ -207,6 +215,12 @@ public class Moditems { ()-> new Item(new Item.Properties())); public static final DeferredItem PLATE_SILVER = ITEMS.register("plate_silver", ()-> new Item(new Item.Properties())); + public static final DeferredItem PLATE_GRAPHITE = ITEMS.register("plate_graphite", + ()-> new Item(new Item.Properties())); + public static final DeferredItem PLATE_CONSTANTAN = ITEMS.register("plate_constantan", + ()-> new Item(new Item.Properties())); + public static final DeferredItem PLATE_BRASS = ITEMS.register("plate_brass", + ()-> new Item(new Item.Properties())); //Gears public static final DeferredItem ULTIMATE_GEAR = ITEMS.register("ultimate_gear", @@ -289,6 +303,10 @@ public class Moditems { ()-> new Item(new Item.Properties())); public static final DeferredItem FLUORITE_DUST = ITEMS.register("fluorite_dust", ()-> new Item(new Item.Properties())); + public static final DeferredItem CONSTANTAN_DUST = ITEMS.register("constantan_dust", + ()-> new Item(new Item.Properties())); + public static final DeferredItem BRASS_DUST = ITEMS.register("brass_dust", + ()-> new Item(new Item.Properties())); //Gems public static final DeferredItem GEM_OBSIDIAN_SHARD = ITEMS.register("gem_obsidian_shard", diff --git a/src/main/java/net/radzratz/eternalitems/item/custom/FuelItem.java b/src/main/java/net/radzratz/eternalitems/item/custom/FuelItem.java deleted file mode 100644 index 8682b79..0000000 --- a/src/main/java/net/radzratz/eternalitems/item/custom/FuelItem.java +++ /dev/null @@ -1,21 +0,0 @@ -package net.radzratz.eternalitems.item.custom; - -import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.crafting.RecipeType; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; - -public class FuelItem extends Item { - public int burnTime = 0; - - public FuelItem(Properties properties, int burnTime) { - super(properties); - this.burnTime = burnTime; - } - - @Override - public int getBurnTime(@NotNull ItemStack itemStack, @Nullable RecipeType recipeType) { - return this.burnTime; - } -} diff --git a/src/main/java/net/radzratz/eternalitems/util/ModTags.java b/src/main/java/net/radzratz/eternalitems/util/ModTags.java index 78e9fc2..a408e1f 100644 --- a/src/main/java/net/radzratz/eternalitems/util/ModTags.java +++ b/src/main/java/net/radzratz/eternalitems/util/ModTags.java @@ -1,69 +1,21 @@ package net.radzratz.eternalitems.util; import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.BlockTags; import net.minecraft.tags.ItemTags; import net.minecraft.tags.TagKey; import net.minecraft.world.item.Item; -import net.minecraft.world.level.block.Block; -import net.radzratz.eternalitems.EternalItems; public class ModTags { public static class Blocks { - public static final TagKey NEEDS_COPPER_TOOLS = createTag("needs_copper_tools"); - public static final TagKey INCORRECT_FOR_COPPER_TOOLS = createTag("incorrect_for_copper_tools"); - public static final TagKey NEEDS_ETERNAL_DARK_TOOLS = createTag("needs_eternal_dark_tools"); - public static final TagKey INCORRECT_FOR_ETERNAL_DARK_TOOLS = createTag("incorrect_for_eternal_dark_tools"); - - public static final TagKey NEEDS_BONE_TOOLS = createTag("needs_bone_tools"); - public static final TagKey INCORRECT_FOR_BONE_TOOLS = createTag("incorrect_for_bone_tools"); - - public static final TagKey NEEDS_ETERNAL_LIGHT_TOOLS = createTag("needs_eternal_light_tools"); - public static final TagKey INCORRECT_FOR_ETERNAL_LIGHT_TOOLS = createTag("incorrect_for_eternal_light_tools"); - - public static final TagKey NEEDS_ETERNAL_GRAY_TOOLS = createTag("needs_eternal_gray_tools"); - public static final TagKey INCORRECT_FOR_ETERNAL_GRAY_TOOLS = createTag("incorrect_for_eternal_gray_tools"); - - private static TagKey createTag(String name) { - return BlockTags.create(ResourceLocation.fromNamespaceAndPath(EternalItems.MOD_ID, name)); - } } public static class Items { - - //Copper Tools - public static final TagKey COPPER_TOOLS = createTagCopperTools("copper_tools"); - private static TagKey createTagCopperTools(String copper_tools) { - return ItemTags.create(ResourceLocation.fromNamespaceAndPath("copper_tools", copper_tools)); - } - //Hammers public static final TagKey HAMMERS = createTagHammers("hammers"); private static TagKey createTagHammers(String hammers) { return ItemTags.create(ResourceLocation.fromNamespaceAndPath("hammers", hammers)); } - //Bone Tools - public static final TagKey BONE_TOOLS = createTagBoneTools("bone_tools"); - private static TagKey createTagBoneTools(String bone_tools) { - return ItemTags.create(ResourceLocation.fromNamespaceAndPath("bone_tools", bone_tools)); - } - - //Eternal Dark Tools - public static final TagKey ETERNAL_DARK_TOOLS = createTagEternalDarkTools("eternal_dark_tools"); - private static TagKey createTagEternalDarkTools(String eternal_dark_tools) { - return ItemTags.create(ResourceLocation.fromNamespaceAndPath("eternal_dark_tools", eternal_dark_tools)); - } - //Eternal Light Tools - public static final TagKey ETERNAL_LIGHT_TOOLS = createTagEternalLightTools("eternal_light_tools"); - private static TagKey createTagEternalLightTools(String eternal_light_tools) { - return ItemTags.create(ResourceLocation.fromNamespaceAndPath("eternal_light_tools", eternal_light_tools)); - } - //Eternal Gray Tools - public static final TagKey ETERNAL_GRAY_TOOLS = createTagEternalGrayTools("eternal_gray_tools"); - private static TagKey createTagEternalGrayTools(String eternal_gray_tools) { - return ItemTags.create(ResourceLocation.fromNamespaceAndPath("eternal_gray_tools", eternal_gray_tools)); - } } } diff --git a/src/main/resources/assets/eternalitems/lang/en_us.json b/src/main/resources/assets/eternalitems/lang/en_us.json index 0757e4d..e8d4313 100644 --- a/src/main/resources/assets/eternalitems/lang/en_us.json +++ b/src/main/resources/assets/eternalitems/lang/en_us.json @@ -1,7 +1,4 @@ { - "item.eternalitems.tiny_coal": "Tiny Coal", - "item.eternalitems.tiny_charcoal": "Tiny Charcoal", - "item.eternalitems.cobalt_hammer": "Cobalt Hammer", "item.eternalitems.copper_hammer": "Copper Hammer", "item.eternalitems.stone_hammer": "Stone Hammer", @@ -32,6 +29,8 @@ "item.eternalitems.redstone_ingot": "Redstone Ingot", "item.eternalitems.signalum_ingot": "Signalum Ingot", "item.eternalitems.silver_ingot": "Silver Ingot", + "item.eternalitems.constantan_ingot": "Constantan Ingot", + "item.eternalitems.brass_ingot": "Brass Ingot", "item.eternalitems.aluminum_nugget": "Aluminum Nugget", "item.eternalitems.cobalt_nugget": "Cobalt Nugget", @@ -52,6 +51,9 @@ "item.eternalitems.plutonium_nugget": "Plutonium Nugget", "item.eternalitems.signalum_nugget": "Signalum Nugget", "item.eternalitems.silver_nugget": "Silver Nugget", + "item.eternalitems.graphite_nugget": "Graphite Nugget", + "item.eternalitems.constantan_nugget": "Constantan Nugget", + "item.eternalitems.brass_nugget": "Brass Nugget", "item.eternalitems.rod_aluminum": "Aluminum Rod", "item.eternalitems.rod_cobalt": "Cobalt Rod", @@ -74,6 +76,9 @@ "item.eternalitems.rod_plutonium": "Plutonium Rod", "item.eternalitems.rod_signalum": "Signalum Rod", "item.eternalitems.rod_silver": "Silver Rod", + "item.eternalitems.rod_graphite": "Graphite Rod", + "item.eternalitems.rod_constantan": "Constantan Rod", + "item.eternalitems.rod_brass": "Brass Rod", "item.eternalitems.plate_aluminum": "Aluminum Plate", "item.eternalitems.plate_cobalt": "Cobalt Plate", @@ -96,6 +101,9 @@ "item.eternalitems.plate_plutonium": "Plutonium Plate", "item.eternalitems.plate_signalum": "Signalum Plate", "item.eternalitems.plate_silver": "Silver Plate", + "item.eternalitems.plate_graphite": "Graphite Plate", + "item.eternalitems.plate_constantan": "Constantan Plate", + "item.eternalitems.plate_brass": "Brass Plate", "item.eternalitems.ultimate_gear": "Ultimate Gear", @@ -136,6 +144,8 @@ "item.eternalitems.plutonium_dust": "Plutonium Dust", "item.eternalitems.signalum_dust": "Signalum Dust", "item.eternalitems.silver_dust": "Silver Dust", + "item.eternalitems.constantan_dust": "Constantan Dust", + "item.eternalitems.brass_dust": "Brass Dust", "item.eternalitems.gem_obsidian_shard": "Obsidian Shard", "item.eternalitems.gem_onyx": "Onyx", @@ -200,6 +210,9 @@ "block.eternalitems.bronze_block": "Bronze Block", "block.eternalitems.lumium_block": "Lumium Block", "block.eternalitems.silver_block": "Silver Block", + "block.eternalitems.graphite_block": "Graphite Block", + "block.eternalitems.constantan_block": "Constantan Block", + "block.eternalitems.brass_block": "Brass Block", "creativetab.eternalitems.eternal_ingots": "Eternal Ingots", "creativetab.eternalitems.eternal_ore_blocks": "Eternal Ore Blocks", diff --git a/src/main/resources/assets/eternalitems/textures/block/brass_block.png b/src/main/resources/assets/eternalitems/textures/block/brass_block.png new file mode 100644 index 0000000000000000000000000000000000000000..be8769ff43e91f96c0d267fc285e1078b850f50b GIT binary patch literal 434 zcmV;j0ZsmiP)Px$Y)M2xR5*=olD$d;K@i9PSvD6#E-_2uiDC+`3I%{bwDdCU%@A^@C|$y zTM@BJAqX~Jz=R0-aL?QxmyhGHm~+`gr`eg=-_Fc`cQd!wr}#DL&j5&W$qdOT`Tp_6 z0bE|3#mWOP7)}5j>{kh*@cCr~pwq4cxVd}c0Al6cKlT6wD(bY4G*`6qQ-1-lN;%hk z{XA~$0pPl+Nsr`;l9h4}z>e6`4Vm<3gW)7lQLE`_+Uv`rou?{9dwoeI7%i=)L(T@> zYC4X{Qs$vMQ7UAjT+%9O61OG-6%oBI25TDh+|=Ez3A3BllWO=&n{yK#sK~Yp42Jzn z2P)DRm5QdPAwsJ(3pLy#fMv{-3K@Btrt`~~E#q{Hl4CjF6m8P_Q`HZ*M{+fm^QphE zc#>+6{*3NqgSL1wmUE)DHV$C7YQOcqEuNSkmO?@;p13vPh^$g!=IZPx$SV=@dR5*=wl1)y-Fc5_wmaWE7)KpPZMO}2mqC2<)2jNZ}hI1ge0E>z$sHHR^ zwd0N(v6$3^Kd(IYXTNz*b8&Zjh4X5u0}v@OEP3%^ZAb#Rxn59v0I;?r0CVja;!@fT zfLS&MaQ{$B0Ms6yUMzq@*RyQQ+;+FGnzw;w&2MB7Ei?sM+6|yWC(B#~LD5pTwxdFm z*Lk2ztE$ETNRyc9(klM9SMWOT>+ke5oA|yx^ZMR6-^oacxpqT;g(e^dFwG`sGbSV^ zf(NF9dZ9_$4b#J9dk??qVc$%rNj#F`OW{8{P2vz#-_mxs55zQ^c%2Xb25`BU1E?C~ zd?$Dp=-`rDuNuRLKV$tnlg2D_g>%qp68E#zQn%C;F2XpZNnBd64tra%LZrmw+C@qL zG^7KXCNYnK^Uv}~rz4%5?~Wt@INt&Iu&51%vNp5=oPP%J303C!osiMLw*UYD07*qo IM6N<$g4hqV7XSbN literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/block/graphite_block.png b/src/main/resources/assets/eternalitems/textures/block/graphite_block.png new file mode 100644 index 0000000000000000000000000000000000000000..6e18fb52cedc617fb8b26c8031f193e8abbd1d02 GIT binary patch literal 350 zcmV-k0iphhP)Px$7)eAyR5*=wlEH2RAq+&v?$(fKwaFLkHU0m;igH?%HY-F-4wJHIt8xPKuxD)K z>vF;GT2caVnx_89#o*85F#tH7&!rRq@o)ez3uRh5zJ z_3G|=nx^KGO3Vx*q<3bv3cYStH#2u9-TV3YG&>%Tf9YN~fEWTqN-0}~e`%4{sJA4J zhQ#KwTbv+jb$8{i(aq&sdaVrZ+q$Edl$MlGtA)_4TL`ME{A7Jkwl64>b8cfHJn-&z wyRmCMO-XdDsv!h-mwBE!1SV+x?T`Kb1*yp5hh*tv{{R3007*qoM6N<$f;)qqTL1t6 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/item/brass_dust.png b/src/main/resources/assets/eternalitems/textures/item/brass_dust.png new file mode 100644 index 0000000000000000000000000000000000000000..92f964184ccc8f571c604efc1376c41e0c897ff7 GIT binary patch literal 334 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D%zIXqn)Lo9ml zPH^-(?7-kUf8j*ETbCM5mMZ3LGP&RyZrL>Z%^s)q7o<}j3qBIHX>dPr%GEJksHG!G zrzgWPqx)r6o1g3^vHy7q_h#G6|11BblM6(*-dW^+@F?kAY?mvvTH*X9wZ30x9&s|n zzs?u?d_?P~YCwTRh0XpoE1pg}-CcYv?!1=e#)Dd3K|0xsj2$CA?}cTrTgQFYvK?py zCo_LTRNl^=wF*2oyz0U7hB6YqR_(ks4~xqGcj?EZeRP?B+AHg2=JVtG4nDqYeRR_? z@pT{TzZyA2dYV}mneaUbt5?^*E@uJ;5QC?ypUXO@geCyRfr@1S literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/item/brass_ingot.png b/src/main/resources/assets/eternalitems/textures/item/brass_ingot.png new file mode 100644 index 0000000000000000000000000000000000000000..ab0a482564011f006e5df287d8a30d35175df3c7 GIT binary patch literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|{(HJOhFJ6_ zCrB7A*n8z|ef7%Q^(BRFPO}nntd#}XfS@h>eZ4VD+S<0)hYc8FC-+R@==w7`JwJda zQN>Nz%E7EFNi}>OB`rkifH8G0Gse<*{$GJ_O+bEicfEN4}bjJFBy^0C3nZ_=z;}lY~`Gr8Vzp0v#mRS00vgi<{p zVISol-gE`&Pp|&ww_Sf*i9hf85TKJ7JYD@<);T3K0RUvM BOJD#1 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/item/constantan_dust.png b/src/main/resources/assets/eternalitems/textures/item/constantan_dust.png new file mode 100644 index 0000000000000000000000000000000000000000..dc24f3fad72349075142a1bcf18e61574deac413 GIT binary patch literal 324 zcmV-K0lWT*P)Px#{z*hZR5*>@kg;lmP#8u}MbV3pR!JO`lA(cYF1|?K#WiCesG|?iwM(`_GlUQ+ zLDWEtl}hb&r8l{CF8$_v&i(!m{&%u8>9aKH$KDuYa3^L2{)91!R*wUP^gge}MA^W&You}SWxEJ9B!xzfQhQnEQTO#K^*vgRePxPN#aIO8YWi5ZsT z0+2U0Pul{^aR)e#1h#1?O_UQt(Xy*L0Op=a90_(+M^V;;^ftKGZ}7N%V{>Q-MXTH| ze+DSZn*H(g`v&XPvR{NAaU=#<)(6-hPqf{avVkIy5&+vYhPo026j&=b7s;H1e<$BY W>vPx#@JU2LR5*>*l09p}Kp23ZK#r;v1tEg%;NW00I&| z66f>ppG3sCMM@Ko7_MVSopys@ySXSSMD7uQV7tMS510UBZ^H9a?QBFzN*s*7Xj+2z zPya8F6-i6Ov1H}{0#Gg%fB@hah)1#{Mbi>m)`2i@Vamk~B21;=!&?H-?Trlm3aytq zrd&|1lrpZ1mXxSwJ;WnZDVQyN)-uSH;v|;pKkUN&Md`jc0LT7>Yn$hQVgLXD07*qo IM6N<$g5_j~V*mgE literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/item/constantan_nugget.png b/src/main/resources/assets/eternalitems/textures/item/constantan_nugget.png new file mode 100644 index 0000000000000000000000000000000000000000..5454921b00c935f2dea639a049d5bf437a4a0da0 GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|x;$MRLo9le z6C_xBcBss9Hu-<}#@6h0k3-r+7g@S|-oLQTrdi~slwD);4v#38(W*Se%%8empu!BcG#~wAkE6b!0<6t%k%)J89&ff44$rjF6*2U FngFdDP<{Xa literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/item/fluorite.png b/src/main/resources/assets/eternalitems/textures/item/fluorite.png index 47efdb487ed83fe43e44bf3b3bf2e109c1ccba12..7f78800975f914e8fb8f2a967c2426a0af48652f 100644 GIT binary patch delta 425 zcmV;a0apI`1JDDIF@K6lL_t(IjkS_LOF~f?habfP(E@AGMk!08kc)w)V_<_g=_q~x zb@B_eH5D{eA0QfYiiR!~L?9TbME?kq;9_7yn2K2l-KKlEUJZiioz8jB`91IZ{?36v zh6%tLPpbN4H@|QCHNYBAs)=wAfL5acfPDAR2Qe1V7cpyzRDU|dxWhrK-6k?WCq!C- zL^wz`mm{0Y;r(a|kO0V~3aNAkfY+KLAX;~+bcTpu8W_RS&F`BIKurL$?%=hi;C_D- zV!2cy;+Low3;h6X9u3lKHt2RbblWX@olc*4Z+BURtr6c@>mVsfm z&dyO(r*&z*V1G!ooJh~?chPbp-{J@Id3#rCK7_^5Hz-r9ny4Qqq}Ybt@DH$g@r#+c zc@t@KWd#7<>%Z2ChJ|eUgm=LZRdp{}*E9gWE-nG^Gm$Dho{nwc%KtI_MwzkAg=mCN zfi@Gn`r1QM*J()W9II}+U%jw|sjx(YWb*xxMFqfB=1Y|9QPPqHQxfl*;Fn<8=Nkln+6; z36nSqZ3>QWgcvKN?JR10V+F}wiwlm=gOw3eq^>0Zh`y5mY}IAp6M#|?0IP+fSc27J z%1^j6R=Tr2`KMEXA$-^cs{U2S3c U9OL1y00000Ne4wvM6N<$g3%azr~m)} delta 389 zcmV;00eb$m0;~g&FnVAlXn6EqX&p?GzLVT!gf1 z(Qoiy^hbiipl!4WLE04UDv%(;CpIGHI7GII!rd0noQDaeR1Xx@#E+4#g!xafz0EN9dgsa2OGMe z<=F}c@QNNHQGuPkCFbW9Qx!wL63L*xz3xI<(TGF`qtl}{0AA69+OU&OH_4>325#az zfvWTe0MuR@6iPY3XRhEYxZV9_0B&#mxB`Q*Xv+gIGwb5w?1^&O zXQ&v-pxGJ(=YDZMVCmc=+VXfs`>!Dy7F4B&ps4^+#lT<8bRJb#=&w zp&*mW3c6#F>q{AjTc=v-0`T}CGwHA*Ex0*9d8Vt)4TU)JU5R8+7qmP+ztiXqt}+5P jCE)WH%=$mU|D!$tO{Rq3+T@!Q00000NkvXXu0mjf8K=1? diff --git a/src/main/resources/assets/eternalitems/textures/item/graphite_nugget.png b/src/main/resources/assets/eternalitems/textures/item/graphite_nugget.png new file mode 100644 index 0000000000000000000000000000000000000000..cfa52d9aef7ce8ee0e5b49f54285527ce024e093 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|Dm`5sLo9mV zPEh1?Hso>MYihA)$${_o!I_~EA}d!-nfSNY2VC6{&5 zx>W*#YqnmfcF)dzUF&vI>C?=mB2VVjKIdlE3-U7995DT|BEt;HXLJ6u?(r@TwUv83 oU7R7IM{rt2%M$mecWWvcXLhPLPQRp_2Xq93r>mdKI;Vst0O8U{rvLx| literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/item/plate_brass.png b/src/main/resources/assets/eternalitems/textures/item/plate_brass.png new file mode 100644 index 0000000000000000000000000000000000000000..283f91cd46e9d38cf753f1e7681982d6262c6b65 GIT binary patch literal 407 zcmV;I0cie-P)Px$QAtEWR5*>zl0QpAQ5eR5MtThry@(F>2Mh-(u%#fR$%djDgPaHp4HYd#;GmP)ABW&x>~4xWUnq)tWoZF`oTdYC_w*uq12Q0AD6+kGNKVs*Nrsgw zbpYg~t^@#?bb?0HCa38n<3Sf>HZ=l#xc0jeL{vWj$#_thqpFvv>ZSGiMs{tL!0=FS zfD902o#W!|DLAkzMWrx`xHi96S5>Ab$2h&b7f?r~N}WtP(K~^n_*@a4 zw-1LDst+arPx$N=ZaPR5*>zlDkd^8&MJ3Qs!bK-g*Dm|0B@x}0KiT$ zuCk@XP@S4-vyoY3!SILpZYl9yS}7f%lnwwe5^+W%POm>;uaqMk3jPdm%SwqMEorDg zSNU9;i>n4q40x)A-{hUm6rd#yTGAl4vW)F?0nnv|E-e6#b_-KL-x^;!eUgz7w$o)Z zBY+POOSGLgbZJq(ACOIieOu5ciPv?DLPBusfx3F?e3DJfs302DIM`lO4tMv-NQmcl u4}jIkJU5Td>=w>19~6v<593Yrzw`wc-f&+WtPKJH0000Px$1xZ9fR5*>zlFe$vFc5@43(IMQLB8Z1$ooH2z&^$oJE#_tK+d6fk&`w(wgZA? zcW3rb@Ykp|<8ryI%d$wo81t5Ry1pxZK7crhb dOj+oE;Q_}9gF(cExs?C_002ovPDHLkV1n2Tji>+s literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/eternalitems/textures/item/rod_brass.png b/src/main/resources/assets/eternalitems/textures/item/rod_brass.png new file mode 100644 index 0000000000000000000000000000000000000000..aa3d59150a84ce65c842c4315033c19b5e39fa03 GIT binary patch literal 284 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|u6epRhFJ6_ zCoC|}&@cTRKP~H{{IPT;*W&!8r~hln^RkJu2DWkJpZ)KW;kfnZ%bT44)3^Tm*Ux)F z*%z#2dAj`z0C~wkcLEym3yze-9L9C$Kk8h^CkJ_*PYlQ+@uz zriW@>a(mc(dM^LYU#-^@Y|OmRputjle%c&8hq7-IXRi3JF@-)7~dRB4P|J`7pF@#;l%bf}_I!MR$4tBm&_ zyyE(KF8#ww$9r?+-)OWl3LedzrFXE^(YrYD!mT+;3=K0M8}M)_iu|uRc_6C0_WtVY j>!dn3dJKKf+MgC)nO-4%eS@Px#-AP12R5*?8kxfg(KoEwXgq^MlnS9lnB!z8$o)2X_5IP(WLr&v#NI7+}?9NyC84Z8Y&tBtTn`V zKAUZ?(VB#fYj`c+d3t&4d`DOK339o(>dYaHt^jbRg^g>Nh+?&VZbOX_HU6&$Xh-u{ p(;1rGp0cclJ>d)vvj~9yMqi{YP)Px#%t=H+R5*?8l0l2YFc5{m*sw{Yut921rT_nTi8l|)(qbEo#FN3A*1hgw2L>`T zd5<@bf&UO&gRbk-YkfYSR{zQ^aN9Nj#2BCLv_`V~Bu~{1Qc9$h91gZn^^ss02JW*b z#)zsLwAQq3Q;-w{UDqdL6e1*?b7-x(&;EU#-xX-P2f#U(6JWpl!rEh2v1%f~?605% z#+Y1BOrVxN76jusQQaz(st_SDhijgRP-$8#X Y9{Qb3EREVHUH||907*qoM6N<$g51w^?EnA( diff --git a/src/main/resources/data/c/tags/item/dusts.json b/src/main/resources/data/c/tags/item/dusts.json index 692b426..d4ea4f5 100644 --- a/src/main/resources/data/c/tags/item/dusts.json +++ b/src/main/resources/data/c/tags/item/dusts.json @@ -2,8 +2,10 @@ "replace": false, "values": [ "eternalitems:aluminum_dust", + "eternalitems:brass_dust", "eternalitems:bronze_dust", "eternalitems:cobalt_dust", + "eternalitems:constantan_dust", "eternalitems:copper_dust", "eternalitems:electrum_dust", "eternalitems:ender_dust", diff --git a/src/main/resources/data/c/tags/item/dusts/brass.json b/src/main/resources/data/c/tags/item/dusts/brass.json new file mode 100644 index 0000000..db5be14 --- /dev/null +++ b/src/main/resources/data/c/tags/item/dusts/brass.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:brass_dust" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/dusts/constantan.json b/src/main/resources/data/c/tags/item/dusts/constantan.json new file mode 100644 index 0000000..c6e9f65 --- /dev/null +++ b/src/main/resources/data/c/tags/item/dusts/constantan.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:constantan_dust" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/dusts/metal.json b/src/main/resources/data/c/tags/item/dusts/metal.json index a86cf64..30f1a76 100644 --- a/src/main/resources/data/c/tags/item/dusts/metal.json +++ b/src/main/resources/data/c/tags/item/dusts/metal.json @@ -2,8 +2,10 @@ "replace": false, "values": [ "eternalitems:aluminum_dust", + "eternalitems:brass_dust", "eternalitems:bronze_dust", "eternalitems:cobalt_dust", + "eternalitems:constantan_dust", "eternalitems:copper_dust", "eternalitems:electrum_dust", "eternalitems:enderium_dust", diff --git a/src/main/resources/data/c/tags/item/ingots.json b/src/main/resources/data/c/tags/item/ingots.json index 6faa9ca..519b439 100644 --- a/src/main/resources/data/c/tags/item/ingots.json +++ b/src/main/resources/data/c/tags/item/ingots.json @@ -2,8 +2,10 @@ "replace": false, "values": [ "eternalitems:aluminum_ingot", + "eternalitems:brass_ingot", "eternalitems:bronze_ingot", "eternalitems:cobalt_ingot", + "eternalitems:constantan_ingot", "eternalitems:electrum_ingot", "eternalitems:eternal_dark_ingot", "eternalitems:eternal_light_ingot", diff --git a/src/main/resources/data/c/tags/item/ingots/brass.json b/src/main/resources/data/c/tags/item/ingots/brass.json new file mode 100644 index 0000000..fdfbe3d --- /dev/null +++ b/src/main/resources/data/c/tags/item/ingots/brass.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:brass_ingot" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/ingots/constantan.json b/src/main/resources/data/c/tags/item/ingots/constantan.json new file mode 100644 index 0000000..a78a105 --- /dev/null +++ b/src/main/resources/data/c/tags/item/ingots/constantan.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:constantan_ingot" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets.json b/src/main/resources/data/c/tags/item/nuggets.json new file mode 100644 index 0000000..ff6d825 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets.json @@ -0,0 +1,29 @@ +{ + "replace": false, + "values": [ + "eternalitems:aluminum_nugget", + "eternalitems:brass_nugget", + "eternalitems:bronze_nugget", + "eternalitems:cobalt_nugget", + "eternalitems:constantan_nugget", + "eternalitems:copper_nugget", + "eternalitems:electrum_nugget", + "eternalitems:enderium_nugget", + "eternalitems:graphite_nugget", + "eternalitems:invar_nugget", + "eternalitems:lead_nugget", + "eternalitems:lumium_nugget", + "eternalitems:nickel_nugget", + "eternalitems:osmium_nugget", + "eternalitems:platinum_nugget", + "eternalitems:plutonium_nugget", + "eternalitems:redstone_nugget", + "eternalitems:silver_nugget", + "eternalitems:signalum_nugget", + "eternalitems:steel_nugget", + "eternalitems:tin_nugget", + "eternalitems:ultimatitanium_nugget", + "eternalitems:uranium_nugget", + "eternalitems:zinc_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/aluminum.json b/src/main/resources/data/c/tags/item/nuggets/aluminum.json new file mode 100644 index 0000000..e76adba --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/aluminum.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:aluminum_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/brass.json b/src/main/resources/data/c/tags/item/nuggets/brass.json new file mode 100644 index 0000000..fb9e921 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/brass.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:brass_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/bronze.json b/src/main/resources/data/c/tags/item/nuggets/bronze.json new file mode 100644 index 0000000..bfe5ed2 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/bronze.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:bronze_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/cobalt.json b/src/main/resources/data/c/tags/item/nuggets/cobalt.json new file mode 100644 index 0000000..e00fca6 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/cobalt.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:cobalt_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/constantan.json b/src/main/resources/data/c/tags/item/nuggets/constantan.json new file mode 100644 index 0000000..77fada9 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/constantan.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:constantan_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/copper.json b/src/main/resources/data/c/tags/item/nuggets/copper.json new file mode 100644 index 0000000..5096f30 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/copper.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:copper_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/electrum.json b/src/main/resources/data/c/tags/item/nuggets/electrum.json new file mode 100644 index 0000000..ced2162 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/electrum.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:electrum_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/enderium.json b/src/main/resources/data/c/tags/item/nuggets/enderium.json new file mode 100644 index 0000000..62128ab --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/enderium.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:enderium_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/graphite.json b/src/main/resources/data/c/tags/item/nuggets/graphite.json new file mode 100644 index 0000000..6e140f8 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/graphite.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:graphite_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/invar.json b/src/main/resources/data/c/tags/item/nuggets/invar.json new file mode 100644 index 0000000..fe19cfd --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/invar.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:invar_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/lead.json b/src/main/resources/data/c/tags/item/nuggets/lead.json new file mode 100644 index 0000000..6ac6dff --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/lead.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:lead_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/lumium.json b/src/main/resources/data/c/tags/item/nuggets/lumium.json new file mode 100644 index 0000000..57aa9a8 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/lumium.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:lumium_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/nickel.json b/src/main/resources/data/c/tags/item/nuggets/nickel.json new file mode 100644 index 0000000..5c86be8 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/nickel.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:nickel_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/osmium.json b/src/main/resources/data/c/tags/item/nuggets/osmium.json new file mode 100644 index 0000000..66e92f7 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/osmium.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:osmium_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/platinum.json b/src/main/resources/data/c/tags/item/nuggets/platinum.json new file mode 100644 index 0000000..6a72eb9 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/platinum.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:platinum_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/plutonium.json b/src/main/resources/data/c/tags/item/nuggets/plutonium.json new file mode 100644 index 0000000..5d009e6 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/plutonium.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:plutonium_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/redstone.json b/src/main/resources/data/c/tags/item/nuggets/redstone.json new file mode 100644 index 0000000..22411c1 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/redstone.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:redstone_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/signalum.json b/src/main/resources/data/c/tags/item/nuggets/signalum.json new file mode 100644 index 0000000..1e61fb6 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/signalum.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:signalum_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/steel.json b/src/main/resources/data/c/tags/item/nuggets/steel.json new file mode 100644 index 0000000..70efb4d --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/steel.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:steel_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/tin.json b/src/main/resources/data/c/tags/item/nuggets/tin.json new file mode 100644 index 0000000..461d83f --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/tin.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:tin_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/ultimatitanium.json b/src/main/resources/data/c/tags/item/nuggets/ultimatitanium.json new file mode 100644 index 0000000..2f81e5a --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/ultimatitanium.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:ultimatitanium_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/uranium.json b/src/main/resources/data/c/tags/item/nuggets/uranium.json new file mode 100644 index 0000000..d50ffc4 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/uranium.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:uranium_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/nuggets/zinc.json b/src/main/resources/data/c/tags/item/nuggets/zinc.json new file mode 100644 index 0000000..e080dc1 --- /dev/null +++ b/src/main/resources/data/c/tags/item/nuggets/zinc.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:zinc_nugget" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/plates.json b/src/main/resources/data/c/tags/item/plates.json index 0b6be93..642ece8 100644 --- a/src/main/resources/data/c/tags/item/plates.json +++ b/src/main/resources/data/c/tags/item/plates.json @@ -2,12 +2,15 @@ "replace": false, "values": [ "eternalitems:plate_aluminum", + "eternalitems:plate_brass", "eternalitems:plate_bronze", "eternalitems:plate_cobalt", + "eternalitems:plate_constantan", "eternalitems:plate_copper", "eternalitems:plate_electrum", "eternalitems:plate_enderium", "eternalitems:plate_gold", + "eternalitems:plate_graphite", "eternalitems:plate_invar", "eternalitems:plate_iron", "eternalitems:plate_lead", diff --git a/src/main/resources/data/c/tags/item/plates/brass.json b/src/main/resources/data/c/tags/item/plates/brass.json new file mode 100644 index 0000000..0efc74b --- /dev/null +++ b/src/main/resources/data/c/tags/item/plates/brass.json @@ -0,0 +1,5 @@ +{ + "values": [ + "eternalitems:plate_brass" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/plates/constantan.json b/src/main/resources/data/c/tags/item/plates/constantan.json new file mode 100644 index 0000000..c613333 --- /dev/null +++ b/src/main/resources/data/c/tags/item/plates/constantan.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:plate_constantan" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/rods.json b/src/main/resources/data/c/tags/item/rods.json index 332f469..48a5d97 100644 --- a/src/main/resources/data/c/tags/item/rods.json +++ b/src/main/resources/data/c/tags/item/rods.json @@ -3,11 +3,14 @@ "values": [ "eternalitems:rod_aluminum", "eternalitems:rod_bronze", + "eternalitems:rod_brass", "eternalitems:rod_cobalt", + "eternalitems:rod_constantan", "eternalitems:rod_copper", "eternalitems:rod_electrum", "eternalitems:rod_enderium", "eternalitems:rod_gold", + "eternalitems:rod_graphite", "eternalitems:rod_invar", "eternalitems:rod_iron", "eternalitems:rod_lead", diff --git a/src/main/resources/data/c/tags/item/rods/brass.json b/src/main/resources/data/c/tags/item/rods/brass.json new file mode 100644 index 0000000..415ffa3 --- /dev/null +++ b/src/main/resources/data/c/tags/item/rods/brass.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:rod_brass" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/rods/constantan.json b/src/main/resources/data/c/tags/item/rods/constantan.json new file mode 100644 index 0000000..3361b0e --- /dev/null +++ b/src/main/resources/data/c/tags/item/rods/constantan.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "eternalitems:rod_constantan" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/item/storage_blocks.json b/src/main/resources/data/c/tags/item/storage_blocks.json index 82dc8b9..bac8701 100644 --- a/src/main/resources/data/c/tags/item/storage_blocks.json +++ b/src/main/resources/data/c/tags/item/storage_blocks.json @@ -3,9 +3,12 @@ "values": [ "eternalitems:aluminum_block", "eternalitems:bronze_block", + "eternalitems:brass_block", "eternalitems:cobalt_block", + "eternalitems:constantan_block", "eternalitems:electrum_block", "eternalitems:enderium_block", + "eternalitems:graphite_block", "eternalitems:invar_block", "eternalitems:lead_block", "eternalitems:lumium_block", diff --git a/src/main/resources/data/c/tags/item/storage_blocks/raw_ore_block.json b/src/main/resources/data/c/tags/item/storage_blocks/raw_ore_block.json new file mode 100644 index 0000000..03c4e9e --- /dev/null +++ b/src/main/resources/data/c/tags/item/storage_blocks/raw_ore_block.json @@ -0,0 +1,17 @@ +{ + "replace": false, + "values": [ + "eternalitems:raw_aluminum_block", + "eternalitems:raw_cobalt_block", + "eternalitems:raw_lead_block", + "eternalitems:raw_nickel_block", + "eternalitems:raw_osmium_block", + "eternalitems:raw_platinum_block", + "eternalitems:raw_plutonium_block", + "eternalitems:raw_silver_block", + "eternalitems:sulfur_block", + "eternalitems:raw_tin_block", + "eternalitems:raw_uranium_block", + "eternalitems:raw_zinc_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_block.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_block.json similarity index 83% rename from src/main/resources/data/eternalitems/recipe/aluminum_block.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_block.json index 2adf98b..cc4f28a 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_block.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_block.json @@ -3,7 +3,7 @@ "category": "misc", "key": { "A": { - "item": "eternalitems:aluminum_ingot" + "tag": "c:ingots/aluminum" } }, "pattern": [ diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_block_to_ingot.json similarity index 100% rename from src/main/resources/data/eternalitems/recipe/aluminum_block_to_ingot.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_block_to_ingot.json diff --git a/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..6799974 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "aluminum_ingot", + "ingredient": { + "item": "eternalitems:deepslate_aluminum_ore_block" + }, + "result": { + "id": "eternalitems:aluminum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..9e56980 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "aluminum_ingot", + "ingredient": { + "item": "eternalitems:deepslate_aluminum_ore_block" + }, + "result": { + "id": "eternalitems:aluminum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_dupe.json new file mode 100644 index 0000000..40b5e67 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/aluminum" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:aluminum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_to_ingot_blasting.json similarity index 83% rename from src/main/resources/data/eternalitems/recipe/aluminum_dust_to_ingot_blasting.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_to_ingot_blasting.json index f098528..7818bf9 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_dust_to_ingot_blasting.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_to_ingot_blasting.json @@ -5,7 +5,7 @@ "experience": 0.7, "group": "aluminum_ingot", "ingredient": { - "item": "eternalitems:aluminum_dust" + "tag": "c:dusts/aluminum" }, "result": { "id": "eternalitems:aluminum_ingot" diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_to_ingot_furnace.json similarity index 83% rename from src/main/resources/data/eternalitems/recipe/aluminum_dust_to_ingot_furnace.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_to_ingot_furnace.json index 72e9d54..4c1f2ec 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_dust_to_ingot_furnace.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_dust_to_ingot_furnace.json @@ -5,7 +5,7 @@ "experience": 0.7, "group": "aluminum_ingot", "ingredient": { - "item": "eternalitems:aluminum_dust" + "tag": "c:dusts/aluminum" }, "result": { "id": "eternalitems:aluminum_ingot" diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ingot_to_dust.json similarity index 100% rename from src/main/resources/data/eternalitems/recipe/aluminum_ingot_to_dust.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ingot_to_dust.json diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_nugget.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_nugget.json similarity index 80% rename from src/main/resources/data/eternalitems/recipe/aluminum_nugget.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_nugget.json index dab3237..3cb832e 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_nugget.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_nugget.json @@ -3,7 +3,7 @@ "category": "misc", "ingredients": [ { - "item": "eternalitems:aluminum_ingot" + "tag": "c:ingots/aluminum" } ], "result": { diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_nugget_to_ingot.json similarity index 83% rename from src/main/resources/data/eternalitems/recipe/aluminum_nugget_to_ingot.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_nugget_to_ingot.json index 9d64743..a284d42 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_nugget_to_ingot.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_nugget_to_ingot.json @@ -3,7 +3,7 @@ "category": "misc", "key": { "A": { - "item": "eternalitems:aluminum_nugget" + "tag": "c:nuggets/aluminum" } }, "pattern": [ diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ore_block_to_ingot_blasting.json similarity index 82% rename from src/main/resources/data/eternalitems/recipe/aluminum_ingot_blasting.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ore_block_to_ingot_blasting.json index 9310c14..4476568 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_ingot_blasting.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ore_block_to_ingot_blasting.json @@ -5,7 +5,7 @@ "experience": 0.7, "group": "aluminum_ingot", "ingredient": { - "item": "eternalitems:raw_aluminum_ore" + "item": "eternalitems:aluminum_ore_block" }, "result": { "id": "eternalitems:aluminum_ingot" diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ore_block_to_ingot_furnace.json similarity index 82% rename from src/main/resources/data/eternalitems/recipe/aluminum_ingot_furnace.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ore_block_to_ingot_furnace.json index b91d679..ffd4ff7 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_ingot_furnace.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_ore_block_to_ingot_furnace.json @@ -5,7 +5,7 @@ "experience": 0.7, "group": "aluminum_ingot", "ingredient": { - "item": "eternalitems:raw_aluminum_ore" + "item": "eternalitems:aluminum_ore_block" }, "result": { "id": "eternalitems:aluminum_ingot" diff --git a/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_plate.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_plate.json new file mode 100644 index 0000000..934f441 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/aluminum" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_aluminum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_block_to_raw_ore.json new file mode 100644 index 0000000..942fc6a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_aluminum_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_aluminum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_block_to_block_blasting.json similarity index 100% rename from src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_block_to_block_blasting.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_block_to_block_blasting.json diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_block_to_block_furnace.json similarity index 100% rename from src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_block_to_block_furnace.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_block_to_block_furnace.json diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_ingot_blasting.json similarity index 84% rename from src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_to_ingot_blasting.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_ingot_blasting.json index 89acf76..cf53a94 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_to_ingot_blasting.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_ingot_blasting.json @@ -5,7 +5,7 @@ "experience": 0.7, "group": "aluminum_ingot", "ingredient": { - "item": "eternalitems:raw_aluminum" + "tag": "c:raw_materials/aluminum" }, "result": { "id": "eternalitems:aluminum_ingot" diff --git a/src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_ingot_furnace.json similarity index 84% rename from src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_to_ingot_furnace.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_ingot_furnace.json index 1f6d43c..a743ad3 100644 --- a/src/main/resources/data/eternalitems/recipe/aluminum_raw_ore_to_ingot_furnace.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_ingot_furnace.json @@ -5,7 +5,7 @@ "experience": 0.7, "group": "aluminum_ingot", "ingredient": { - "item": "eternalitems:raw_aluminum" + "tag": "c:raw_materials/aluminum" }, "result": { "id": "eternalitems:aluminum_ingot" diff --git a/src/main/resources/data/eternalitems/recipe/raw_aluminum_to_raw_aluminum_block.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_raw_block.json similarity index 78% rename from src/main/resources/data/eternalitems/recipe/raw_aluminum_to_raw_aluminum_block.json rename to src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_raw_block.json index 93c986c..85b852d 100644 --- a/src/main/resources/data/eternalitems/recipe/raw_aluminum_to_raw_aluminum_block.json +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_raw_ore_to_raw_block.json @@ -3,7 +3,7 @@ "category": "misc", "key": { "A": { - "item": "eternalitems:raw_aluminum" + "tag": "c:raw_materials/aluminum" } }, "pattern": [ @@ -12,7 +12,7 @@ "AAA" ], "result": { - "count": 1, + "count": 9, "id": "eternalitems:raw_aluminum_block" } } \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_rod.json b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_rod.json new file mode 100644 index 0000000..f3622af --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/aluminum/aluminum_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/aluminum" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_aluminum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tinycharcoal_to_charcoal.json b/src/main/resources/data/eternalitems/recipe/brass/brass_block.json similarity index 71% rename from src/main/resources/data/eternalitems/recipe/tinycharcoal_to_charcoal.json rename to src/main/resources/data/eternalitems/recipe/brass/brass_block.json index b9a43a0..d9fd604 100644 --- a/src/main/resources/data/eternalitems/recipe/tinycharcoal_to_charcoal.json +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_block.json @@ -3,7 +3,7 @@ "category": "misc", "key": { "A": { - "item": "eternalitems:tiny_charcoal" + "tag": "c:ingots/brass" } }, "pattern": [ @@ -13,6 +13,6 @@ ], "result": { "count": 1, - "id": "minecraft:charcoal" + "id": "eternalitems:brass_block" } } \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/brass/brass_block_to_ingot.json new file mode 100644 index 0000000..fb2b27a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:brass_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:brass_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_dust_creation.json b/src/main/resources/data/eternalitems/recipe/brass/brass_dust_creation.json new file mode 100644 index 0000000..8f9a56c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_dust_creation.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:dusts/copper" + }, + { + "tag": "c:dusts/copper" + }, + { + "tag": "c:dusts/copper" + }, + { + "tag": "c:dusts/zinc" + } + ], + "result": { + "count": 4, + "id": "eternalitems:brass_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_blasting.json new file mode 100644 index 0000000..9c2d689 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "brass_ingot", + "ingredient": { + "tag": "c:dusts/brass" + }, + "result": { + "id": "eternalitems:brass_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_furnace.json new file mode 100644 index 0000000..e55b3a7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "brass_ingot", + "ingredient": { + "tag": "c:dusts/brass" + }, + "result": { + "id": "eternalitems:brass_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/brass/brass_ingot_to_dust.json new file mode 100644 index 0000000..da38348 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/brass" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:brass_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/charcoal_to_tinycharcoal.json b/src/main/resources/data/eternalitems/recipe/brass/brass_nugget.json similarity index 64% rename from src/main/resources/data/eternalitems/recipe/charcoal_to_tinycharcoal.json rename to src/main/resources/data/eternalitems/recipe/brass/brass_nugget.json index f262e29..c74e7d2 100644 --- a/src/main/resources/data/eternalitems/recipe/charcoal_to_tinycharcoal.json +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_nugget.json @@ -3,11 +3,11 @@ "category": "misc", "ingredients": [ { - "item": "minecraft:charcoal" + "tag": "c:ingots/brass" } ], "result": { "count": 9, - "id": "eternalitems:tiny_charcoal" + "id": "eternalitems:brass_nugget" } } \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/brass/brass_nugget_to_ingot.json new file mode 100644 index 0000000..a16d1a5 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/brass" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:brass_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_plate.json b/src/main/resources/data/eternalitems/recipe/brass/brass_plate.json new file mode 100644 index 0000000..ed2914f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/brass" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_brass" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/brass/brass_rod.json b/src/main/resources/data/eternalitems/recipe/brass/brass_rod.json new file mode 100644 index 0000000..3ecfa9c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/brass/brass_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/brass" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_brass" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_block.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_block.json new file mode 100644 index 0000000..4a4e6d4 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/bronze" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:bronze_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_block_to_ingot.json new file mode 100644 index 0000000..c53771f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:bronze_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:bronze_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_creation.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_creation.json new file mode 100644 index 0000000..2618a23 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_creation.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:dusts/copper" + }, + { + "tag": "c:dusts/copper" + }, + { + "tag": "c:dusts/copper" + }, + { + "tag": "c:dusts/tin" + } + ], + "result": { + "count": 4, + "id": "eternalitems:bronze_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_blasting.json new file mode 100644 index 0000000..366b28e --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "bronze_ingot", + "ingredient": { + "tag": "c:dusts/bronze" + }, + "result": { + "id": "eternalitems:bronze_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_furnace.json new file mode 100644 index 0000000..56fb2a1 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "bronze_ingot", + "ingredient": { + "tag": "c:dusts/bronze" + }, + "result": { + "id": "eternalitems:bronze_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_ingot_to_dust.json new file mode 100644 index 0000000..ffafd28 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/bronze" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 4, + "id": "eternalitems:bronze_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget.json new file mode 100644 index 0000000..087543a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/bronze" + } + ], + "result": { + "count": 9, + "id": "eternalitems:bronze_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget_to_ingot.json new file mode 100644 index 0000000..d468d65 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/bronze" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:bronze_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_plate.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_plate.json new file mode 100644 index 0000000..58587cb --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/bronze" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_bronze" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/bronze/bronze_rod.json b/src/main/resources/data/eternalitems/recipe/bronze/bronze_rod.json new file mode 100644 index 0000000..a21d463 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/bronze/bronze_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/bronze" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_bronze" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block.json new file mode 100644 index 0000000..9ca8ad5 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/cobalt" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:cobalt_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block_to_ingot.json new file mode 100644 index 0000000..3067fda --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:cobalt_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..33ab949 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "item": "eternalitems:deepslate_cobalt_ore_block" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..31a14f1 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "item": "eternalitems:deepslate_cobalt_ore_block" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_dupe.json new file mode 100644 index 0000000..e5c935b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/cobalt" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:cobalt_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_blasting.json new file mode 100644 index 0000000..57f8369 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "tag": "c:dusts/cobalt" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_furnace.json new file mode 100644 index 0000000..15ca475 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "tag": "c:dusts/cobalt" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ingot_to_dust.json new file mode 100644 index 0000000..6bf6e37 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/cobalt" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:cobalt_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget.json new file mode 100644 index 0000000..bac040f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/cobalt" + } + ], + "result": { + "count": 9, + "id": "eternalitems:cobalt_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget_to_ingot.json new file mode 100644 index 0000000..b7bde5b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/cobalt" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..993e686 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "item": "eternalitems:cobalt_ore_block" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..2ed29fd --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "item": "eternalitems:cobalt_ore_block" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_plate.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_plate.json new file mode 100644 index 0000000..d67eb4d --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/cobalt" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_cobalt" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_block_to_raw_ore.json new file mode 100644 index 0000000..e0f0afc --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_cobalt_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_cobalt" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..cdabf10 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "item": "eternalitems:raw_cobalt_block" + }, + "result": { + "id": "eternalitems:cobalt_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..d2d507c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "item": "eternalitems:raw_cobalt_block" + }, + "result": { + "id": "eternalitems:cobalt_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..2e7a9ef --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "tag": "c:raw_materials/cobalt" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..e41cf28 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "cobalt_ingot", + "ingredient": { + "tag": "c:raw_materials/cobalt" + }, + "result": { + "id": "eternalitems:cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_raw_block.json new file mode 100644 index 0000000..f52396d --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/cobalt" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_cobalt_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_rod.json b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_rod.json new file mode 100644 index 0000000..a6cc2d6 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/cobalt/cobalt_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/cobalt" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_cobalt" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_block.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_block.json new file mode 100644 index 0000000..ac0f222 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/constantan" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:constantan_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_block_to_ingot.json new file mode 100644 index 0000000..93389ae --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:constantan_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:constantan_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_creation.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_creation.json new file mode 100644 index 0000000..97b7382 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_creation.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:dusts/copper" + }, + { + "tag": "c:dusts/nickel" + } + ], + "result": { + "count": 2, + "id": "eternalitems:constantan_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_blasting.json new file mode 100644 index 0000000..7503854 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "constantan_ingot", + "ingredient": { + "tag": "c:dusts/constantan" + }, + "result": { + "id": "eternalitems:constantan_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_furnace.json new file mode 100644 index 0000000..74cf6c7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "constantan_ingot", + "ingredient": { + "tag": "c:dusts/constantan" + }, + "result": { + "id": "eternalitems:constantan_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_ingot_to_dust.json new file mode 100644 index 0000000..f711242 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/constantan" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:constantan_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget.json new file mode 100644 index 0000000..bbdacbc --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/constantan" + } + ], + "result": { + "count": 9, + "id": "eternalitems:constantan_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget_to_ingot.json new file mode 100644 index 0000000..749d19d --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/constantan" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:constantan_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_plate.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_plate.json new file mode 100644 index 0000000..58d943a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/constantan" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_constantan" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/constantan/constantan_rod.json b/src/main/resources/data/eternalitems/recipe/constantan/constantan_rod.json new file mode 100644 index 0000000..ad1fd16 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/constantan/constantan_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/constantan" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_constantan" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/copper/copper_dust_dupe.json new file mode 100644 index 0000000..eac4715 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "minecraft:raw_copper" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:copper_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_blasting.json new file mode 100644 index 0000000..c08e1ef --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": { + "tag": "c:dusts/copper" + }, + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_furnace.json new file mode 100644 index 0000000..a206b9a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": { + "tag": "c:dusts/copper" + }, + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/copper/copper_ingot_to_dust.json new file mode 100644 index 0000000..84d5536 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "minecraft:copper_ingot" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:copper_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_nugget.json b/src/main/resources/data/eternalitems/recipe/copper/copper_nugget.json new file mode 100644 index 0000000..90f6921 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "minecraft:copper_ingot" + } + ], + "result": { + "count": 9, + "id": "eternalitems:copper_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/copper/copper_nugget_to_ingot.json new file mode 100644 index 0000000..c0e395e --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/copper" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_plate.json b/src/main/resources/data/eternalitems/recipe/copper/copper_plate.json new file mode 100644 index 0000000..3791a24 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "minecraft:copper_ingot" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_copper" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/copper/copper_rod.json b/src/main/resources/data/eternalitems/recipe/copper/copper_rod.json new file mode 100644 index 0000000..3e6ebea --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/copper/copper_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "minecraft:copper_ingot" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_copper" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_block.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_block.json new file mode 100644 index 0000000..f7dd3fa --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/electrum" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:electrum_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_block_to_ingot.json new file mode 100644 index 0000000..b2cd0a7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:electrum_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:electrum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_creation.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_creation.json new file mode 100644 index 0000000..11cc364 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_creation.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:dusts/silver" + }, + { + "tag": "c:dusts/gold" + } + ], + "result": { + "count": 2, + "id": "eternalitems:electrum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_blasting.json new file mode 100644 index 0000000..bf7b649 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "electrum_ingot", + "ingredient": { + "tag": "c:dusts/electrum" + }, + "result": { + "id": "eternalitems:electrum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_furnace.json new file mode 100644 index 0000000..b623bae --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "electrum_ingot", + "ingredient": { + "tag": "c:dusts/electrum" + }, + "result": { + "id": "eternalitems:electrum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_ingot_to_dust.json new file mode 100644 index 0000000..5ce8e00 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/electrum" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:electrum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget.json new file mode 100644 index 0000000..ff9f532 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/electrum" + } + ], + "result": { + "count": 9, + "id": "eternalitems:electrum_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget_to_ingot.json new file mode 100644 index 0000000..08f50e8 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/electrum" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:electrum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_plate.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_plate.json new file mode 100644 index 0000000..dccf647 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/electrum" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_electrum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/electrum/electrum_rod.json b/src/main/resources/data/eternalitems/recipe/electrum/electrum_rod.json new file mode 100644 index 0000000..5952e34 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/electrum/electrum_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/electrum" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_electrum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/graphite/graphite_block.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_block.json new file mode 100644 index 0000000..ffb8f93 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/graphite/graphite_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "eternalitems:graphite_ingot" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:graphite_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/graphite/graphite_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_block_to_ingot.json new file mode 100644 index 0000000..472647a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/graphite/graphite_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:graphite_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:graphite_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/graphite/graphite_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_ingot_blasting.json new file mode 100644 index 0000000..341b1d4 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/graphite/graphite_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "graphite_ingot", + "ingredient": { + "item": "minecraft:coal" + }, + "result": { + "id": "eternalitems:graphite_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/coal_to_graphite_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_ingot_furnace.json similarity index 100% rename from src/main/resources/data/eternalitems/recipe/coal_to_graphite_ingot_furnace.json rename to src/main/resources/data/eternalitems/recipe/graphite/graphite_ingot_furnace.json diff --git a/src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget.json new file mode 100644 index 0000000..5c7f1ca --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:graphite_ingot" + } + ], + "result": { + "count": 9, + "id": "eternalitems:graphite_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget_to_ingot.json new file mode 100644 index 0000000..1ac3db2 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/graphite/graphite_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "eternalitems:graphite_nugget" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:graphite_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/graphite/graphite_plate.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_plate.json new file mode 100644 index 0000000..b3e383b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/graphite/graphite_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/graphite" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_graphite" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/graphite/graphite_rod.json b/src/main/resources/data/eternalitems/recipe/graphite/graphite_rod.json new file mode 100644 index 0000000..1b8409b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/graphite/graphite_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/graphite" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_graphite" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/cobalt_hammer.json b/src/main/resources/data/eternalitems/recipe/hammers/hammer_cobalt.json similarity index 100% rename from src/main/resources/data/eternalitems/recipe/cobalt_hammer.json rename to src/main/resources/data/eternalitems/recipe/hammers/hammer_cobalt.json diff --git a/src/main/resources/data/eternalitems/recipe/copper_hammer.json b/src/main/resources/data/eternalitems/recipe/hammers/hammer_copper.json similarity index 100% rename from src/main/resources/data/eternalitems/recipe/copper_hammer.json rename to src/main/resources/data/eternalitems/recipe/hammers/hammer_copper.json diff --git a/src/main/resources/data/eternalitems/recipe/hammers/hammer_diamond.json b/src/main/resources/data/eternalitems/recipe/hammers/hammer_diamond.json new file mode 100644 index 0000000..92fbb97 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/hammers/hammer_diamond.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "minecraft:diamond" + }, + "B": { + "item": "minecraft:stick" + }, + "C": { + "item": "minecraft:diamond_block" + } + }, + "pattern": [ + " C ", + " BC", + "A " + ], + "result": { + "count": 1, + "id": "eternalitems:diamond_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/hammers/hammer_iron.json b/src/main/resources/data/eternalitems/recipe/hammers/hammer_iron.json new file mode 100644 index 0000000..8a98543 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/hammers/hammer_iron.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "minecraft:iron_nugget" + }, + "B": { + "item": "minecraft:stick" + }, + "C": { + "item": "minecraft:iron_block" + } + }, + "pattern": [ + " C ", + " BC", + "A " + ], + "result": { + "count": 1, + "id": "eternalitems:iron_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/hammers/hammer_stone.json b/src/main/resources/data/eternalitems/recipe/hammers/hammer_stone.json new file mode 100644 index 0000000..e0f1fac --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/hammers/hammer_stone.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "minecraft:stone_button" + }, + "B": { + "item": "minecraft:stick" + }, + "C": { + "item": "minecraft:stone" + } + }, + "pattern": [ + " C ", + " BC", + "A " + ], + "result": { + "count": 1, + "id": "eternalitems:stone_hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tinycoal_to_coal.json b/src/main/resources/data/eternalitems/recipe/lead/lead_block.json similarity index 73% rename from src/main/resources/data/eternalitems/recipe/tinycoal_to_coal.json rename to src/main/resources/data/eternalitems/recipe/lead/lead_block.json index c03594e..1e493a8 100644 --- a/src/main/resources/data/eternalitems/recipe/tinycoal_to_coal.json +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_block.json @@ -3,7 +3,7 @@ "category": "misc", "key": { "A": { - "item": "eternalitems:tiny_coal" + "tag": "c:ingots/lead" } }, "pattern": [ @@ -13,6 +13,6 @@ ], "result": { "count": 1, - "id": "minecraft:coal" + "id": "eternalitems:lead_block" } } \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/lead/lead_block_to_ingot.json new file mode 100644 index 0000000..e63c7e3 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:lead_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..3dd1eae --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "item": "eternalitems:deepslate_lead_ore_block" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..ba89462 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "item": "eternalitems:deepslate_lead_ore_block" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/lead/lead_dust_dupe.json new file mode 100644 index 0000000..a6899fb --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/lead" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:lead_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_blasting.json new file mode 100644 index 0000000..0d4164d --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "tag": "c:dusts/lead" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_furnace.json new file mode 100644 index 0000000..e0a2441 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "tag": "c:dusts/lead" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/lead/lead_ingot_to_dust.json new file mode 100644 index 0000000..63e39ad --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/lead" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:lead_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/coal_to_tinycoal.json b/src/main/resources/data/eternalitems/recipe/lead/lead_nugget.json similarity index 67% rename from src/main/resources/data/eternalitems/recipe/coal_to_tinycoal.json rename to src/main/resources/data/eternalitems/recipe/lead/lead_nugget.json index f34e747..cbb5834 100644 --- a/src/main/resources/data/eternalitems/recipe/coal_to_tinycoal.json +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_nugget.json @@ -3,11 +3,11 @@ "category": "misc", "ingredients": [ { - "item": "minecraft:coal" + "tag": "c:ingots/lead" } ], "result": { "count": 9, - "id": "eternalitems:tiny_coal" + "id": "eternalitems:lead_nugget" } } \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/lead/lead_nugget_to_ingot.json new file mode 100644 index 0000000..30bf4a3 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/lead" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..174462b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "item": "eternalitems:lead_ore_block" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..053f274 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "item": "eternalitems:lead_ore_block" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_plate.json b/src/main/resources/data/eternalitems/recipe/lead/lead_plate.json new file mode 100644 index 0000000..e8588ac --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/lead" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_lead" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_block_to_raw_ore.json new file mode 100644 index 0000000..2c310d4 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_lead_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_lead" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..8a6527b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "item": "eternalitems:raw_lead_block" + }, + "result": { + "id": "eternalitems:lead_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..6b2daf9 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "item": "eternalitems:raw_lead_block" + }, + "result": { + "id": "eternalitems:lead_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..3c44478 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "tag": "c:raw_materials/lead" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..f1bf446 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "lead_ingot", + "ingredient": { + "tag": "c:raw_materials/lead" + }, + "result": { + "id": "eternalitems:lead_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_raw_block.json new file mode 100644 index 0000000..be36304 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/lead" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_lead_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/lead/lead_rod.json b/src/main/resources/data/eternalitems/recipe/lead/lead_rod.json new file mode 100644 index 0000000..fbf5de0 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/lead/lead_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/lead" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_lead" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_plate_to_dust.json b/src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_plate_to_dust.json new file mode 100644 index 0000000..af338a3 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_plate_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:plates/aluminum" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:aluminum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_rod_to_dust.json b/src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_rod_to_dust.json new file mode 100644 index 0000000..ffac1e7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/material_deconstructor/aluminum_rod_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:rods/aluminum" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:aluminum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_plate_to_dust.json b/src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_plate_to_dust.json new file mode 100644 index 0000000..3260bab --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_plate_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:plates/bronze" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:bronze_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_rod_to_dust.json b/src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_rod_to_dust.json new file mode 100644 index 0000000..6e0e5ce --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/material_deconstructor/bronze_rod_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:rods/bronze" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:bronze_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/misc/redstone_ingot_piston.json b/src/main/resources/data/eternalitems/recipe/misc/redstone_ingot_piston.json new file mode 100644 index 0000000..12b0e3b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/misc/redstone_ingot_piston.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "item": "minecraft:cobblestone" + }, + "B": { + "tag": "minecraft:planks" + }, + "C": { + "item": "eternalitems:redstone_ingot" + }, + "D": { + "item": "minecraft:iron_ingot" + } + }, + "pattern": [ + "BBB", + "ACA", + "ADA" + ], + "result": { + "count": 3, + "id": "minecraft:piston" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_block.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_block.json new file mode 100644 index 0000000..7013891 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/nickel" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:nickel_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_block_to_ingot.json new file mode 100644 index 0000000..b3220fe --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:nickel_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..c1e0a7f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "item": "eternalitems:deepslate_nickel_ore_block" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..ca29a79 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "item": "eternalitems:deepslate_nickel_ore_block" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_dupe.json new file mode 100644 index 0000000..3f1b316 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/nickel" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:nickel_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_blasting.json new file mode 100644 index 0000000..b7799d1 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "tag": "c:dusts/nickel" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_furnace.json new file mode 100644 index 0000000..b03515b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "tag": "c:dusts/nickel" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_ingot_to_dust.json new file mode 100644 index 0000000..a913abe --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/nickel" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:nickel_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget.json new file mode 100644 index 0000000..9939f31 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/nickel" + } + ], + "result": { + "count": 9, + "id": "eternalitems:nickel_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget_to_ingot.json new file mode 100644 index 0000000..01ca1da --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/nickel" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..30fabd7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "item": "eternalitems:nickel_ore_block" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..510e053 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "item": "eternalitems:nickel_ore_block" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_plate.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_plate.json new file mode 100644 index 0000000..81d6797 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/nickel" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_nickel" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_block_to_raw_ore.json new file mode 100644 index 0000000..590b730 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_nickel_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_nickel" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..202f705 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "item": "eternalitems:raw_nickel_block" + }, + "result": { + "id": "eternalitems:nickel_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..da66a53 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "item": "eternalitems:raw_nickel_block" + }, + "result": { + "id": "eternalitems:nickel_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..c9e3860 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "tag": "c:raw_materials/nickel" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..0de2ea7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "nickel_ingot", + "ingredient": { + "tag": "c:raw_materials/nickel" + }, + "result": { + "id": "eternalitems:nickel_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_raw_block.json new file mode 100644 index 0000000..404a64c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/nickel" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_nickel_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/nickel/nickel_rod.json b/src/main/resources/data/eternalitems/recipe/nickel/nickel_rod.json new file mode 100644 index 0000000..339240c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/nickel/nickel_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/nickel" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_nickel" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_block.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_block.json new file mode 100644 index 0000000..6a168fe --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/osmium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:osmium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_block_to_ingot.json new file mode 100644 index 0000000..1ac30f7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:osmium_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..689d8d5 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "item": "eternalitems:deepslate_osmium_ore_block" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..97e921e --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "item": "eternalitems:deepslate_osmium_ore_block" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_dupe.json new file mode 100644 index 0000000..a18e5c7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/osmium" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:osmium_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_blasting.json new file mode 100644 index 0000000..971484e --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "tag": "c:dusts/osmium" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_furnace.json new file mode 100644 index 0000000..c2add05 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "tag": "c:dusts/osmium" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_ingot_to_dust.json new file mode 100644 index 0000000..f19416f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/osmium" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:osmium_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget.json new file mode 100644 index 0000000..eaa95db --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/osmium" + } + ], + "result": { + "count": 9, + "id": "eternalitems:osmium_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget_to_ingot.json new file mode 100644 index 0000000..e465071 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/osmium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..14fa552 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "item": "eternalitems:osmium_ore_block" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..9fec005 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "item": "eternalitems:osmium_ore_block" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_plate.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_plate.json new file mode 100644 index 0000000..b687365 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/osmium" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_osmium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_block_to_raw_ore.json new file mode 100644 index 0000000..689aa73 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_osmium_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_osmium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..9e1db09 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "item": "eternalitems:raw_osmium_block" + }, + "result": { + "id": "eternalitems:osmium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..b060179 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "item": "eternalitems:raw_osmium_block" + }, + "result": { + "id": "eternalitems:osmium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..5b2c148 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "tag": "c:raw_materials/osmium" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..470c0f0 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "osmium_ingot", + "ingredient": { + "tag": "c:raw_materials/osmium" + }, + "result": { + "id": "eternalitems:osmium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_raw_block.json new file mode 100644 index 0000000..9099aac --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/osmium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_osmium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/osmium/osmium_rod.json b/src/main/resources/data/eternalitems/recipe/osmium/osmium_rod.json new file mode 100644 index 0000000..870a444 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/osmium/osmium_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/osmium" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_osmium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_block.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_block.json new file mode 100644 index 0000000..86df0eb --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/platinum" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:platinum_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_block_to_ingot.json new file mode 100644 index 0000000..f9d0ed3 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:platinum_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..08bf0b3 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "item": "eternalitems:deepslate_platinum_ore_block" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..4c69cbc --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "item": "eternalitems:deepslate_platinum_ore_block" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_dupe.json new file mode 100644 index 0000000..89f748b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/platinum" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:platinum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_blasting.json new file mode 100644 index 0000000..b4437f6 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "tag": "c:dusts/platinum" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_furnace.json new file mode 100644 index 0000000..5205d48 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "tag": "c:dusts/platinum" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_ingot_to_dust.json new file mode 100644 index 0000000..5a5d9f0 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/platinum" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:platinum_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget.json new file mode 100644 index 0000000..369afdb --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/platinum" + } + ], + "result": { + "count": 9, + "id": "eternalitems:platinum_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget_to_ingot.json new file mode 100644 index 0000000..7bfab10 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/platinum" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..1f0dc03 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "item": "eternalitems:platinum_ore_block" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..e21520a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "item": "eternalitems:platinum_ore_block" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_plate.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_plate.json new file mode 100644 index 0000000..e166d1d --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/platinum" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_platinum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_block_to_raw_ore.json new file mode 100644 index 0000000..ae13288 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_platinum_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_platinum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..cc6c43e --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "item": "eternalitems:raw_platinum_block" + }, + "result": { + "id": "eternalitems:platinum_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..fd0e7d6 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "item": "eternalitems:raw_platinum_block" + }, + "result": { + "id": "eternalitems:platinum_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..f35e5c1 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "tag": "c:raw_materials/platinum" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..8aaa18f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "platinum_ingot", + "ingredient": { + "tag": "c:raw_materials/platinum" + }, + "result": { + "id": "eternalitems:platinum_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_raw_block.json new file mode 100644 index 0000000..6aa462c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/platinum" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_platinum_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/platinum/platinum_rod.json b/src/main/resources/data/eternalitems/recipe/platinum/platinum_rod.json new file mode 100644 index 0000000..fa3b592 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/platinum/platinum_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/platinum" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_platinum" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block.json new file mode 100644 index 0000000..76d083c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/plutonium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:plutonium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block_to_ingot.json new file mode 100644 index 0000000..cd1cb97 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:plutonium_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..83792cc --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "item": "eternalitems:deepslate_plutonium_ore_block" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..4e05761 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "item": "eternalitems:deepslate_plutonium_ore_block" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_dupe.json new file mode 100644 index 0000000..300aed5 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/plutonium" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:plutonium_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_blasting.json new file mode 100644 index 0000000..d439016 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "tag": "c:dusts/plutonium" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_furnace.json new file mode 100644 index 0000000..3286ba4 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "tag": "c:dusts/plutonium" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ingot_to_dust.json new file mode 100644 index 0000000..6d8ee3b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/plutonium" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:plutonium_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget.json new file mode 100644 index 0000000..abf3966 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/plutonium" + } + ], + "result": { + "count": 9, + "id": "eternalitems:plutonium_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget_to_ingot.json new file mode 100644 index 0000000..4ab38d7 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/plutonium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..f746138 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "item": "eternalitems:plutonium_ore_block" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..510a156 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "item": "eternalitems:plutonium_ore_block" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_plate.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_plate.json new file mode 100644 index 0000000..8c98fde --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/plutonium" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_plutonium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_block_to_raw_ore.json new file mode 100644 index 0000000..b3bad3b --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_plutonium_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_plutonium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..af538a9 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "item": "eternalitems:raw_plutonium_block" + }, + "result": { + "id": "eternalitems:plutonium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..7eeda0d --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "item": "eternalitems:raw_plutonium_block" + }, + "result": { + "id": "eternalitems:plutonium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..fb8af4c --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "tag": "c:raw_materials/plutonium" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..15ea484 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "plutonium_ingot", + "ingredient": { + "tag": "c:raw_materials/plutonium" + }, + "result": { + "id": "eternalitems:plutonium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_raw_block.json new file mode 100644 index 0000000..f801fec --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/plutonium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_plutonium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_rod.json b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_rod.json new file mode 100644 index 0000000..096e95d --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/plutonium/plutonium_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/plutonium" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_plutonium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_block.json b/src/main/resources/data/eternalitems/recipe/silver/silver_block.json new file mode 100644 index 0000000..17f7bf4 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/silver" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:silver_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/silver/silver_block_to_ingot.json new file mode 100644 index 0000000..d4ce6cc --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:silver_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..e94a987 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "item": "eternalitems:deepslate_silver_ore_block" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..497b333 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "item": "eternalitems:deepslate_silver_ore_block" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/silver/silver_dust_dupe.json new file mode 100644 index 0000000..40ceeab --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/silver" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:silver_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_blasting.json new file mode 100644 index 0000000..2370f94 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "tag": "c:dusts/silver" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_furnace.json new file mode 100644 index 0000000..6dae508 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "tag": "c:dusts/silver" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/silver/silver_ingot_to_dust.json new file mode 100644 index 0000000..59c7084 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/silver" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:silver_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_nugget.json b/src/main/resources/data/eternalitems/recipe/silver/silver_nugget.json new file mode 100644 index 0000000..29f3f76 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/silver" + } + ], + "result": { + "count": 9, + "id": "eternalitems:silver_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/silver/silver_nugget_to_ingot.json new file mode 100644 index 0000000..5a081d8 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/silver" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..9e731f8 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "item": "eternalitems:silver_ore_block" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..20608f8 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "item": "eternalitems:silver_ore_block" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_plate.json b/src/main/resources/data/eternalitems/recipe/silver/silver_plate.json new file mode 100644 index 0000000..cb9f71a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/silver" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_silver" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_block_to_raw_ore.json new file mode 100644 index 0000000..371206a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_silver_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_silver" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..8255ba6 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "item": "eternalitems:raw_silver_block" + }, + "result": { + "id": "eternalitems:silver_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..8c43e7e --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "item": "eternalitems:raw_silver_block" + }, + "result": { + "id": "eternalitems:silver_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..329c3ac --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "tag": "c:raw_materials/silver" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..e09b661 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "silver_ingot", + "ingredient": { + "tag": "c:raw_materials/silver" + }, + "result": { + "id": "eternalitems:silver_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_raw_block.json new file mode 100644 index 0000000..0d3899e --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/silver" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_silver_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/silver/silver_rod.json b/src/main/resources/data/eternalitems/recipe/silver/silver_rod.json new file mode 100644 index 0000000..b2b3f00 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/silver/silver_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/silver" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_silver" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_block.json b/src/main/resources/data/eternalitems/recipe/tin/tin_block.json new file mode 100644 index 0000000..ac9c617 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/tin" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:tin_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/tin/tin_block_to_ingot.json new file mode 100644 index 0000000..2841901 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:tin_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..3ad5476 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "item": "eternalitems:deepslate_tin_ore_block" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..0aaec36 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "item": "eternalitems:deepslate_tin_ore_block" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/tin/tin_dust_dupe.json new file mode 100644 index 0000000..27940b8 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/tin" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:tin_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_blasting.json new file mode 100644 index 0000000..ec79113 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "tag": "c:dusts/tin" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_furnace.json new file mode 100644 index 0000000..c689336 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "tag": "c:dusts/tin" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/tin/tin_ingot_to_dust.json new file mode 100644 index 0000000..fd7df8a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/tin" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:tin_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_nugget.json b/src/main/resources/data/eternalitems/recipe/tin/tin_nugget.json new file mode 100644 index 0000000..5766f7f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/tin" + } + ], + "result": { + "count": 9, + "id": "eternalitems:tin_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/tin/tin_nugget_to_ingot.json new file mode 100644 index 0000000..66142ee --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/tin" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..a2a6933 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "item": "eternalitems:tin_ore_block" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..d74e595 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "item": "eternalitems:tin_ore_block" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_plate.json b/src/main/resources/data/eternalitems/recipe/tin/tin_plate.json new file mode 100644 index 0000000..4aa5c12 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/tin" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_tin" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_block_to_raw_ore.json new file mode 100644 index 0000000..d00ca36 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_tin_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_tin" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..91d7f67 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "item": "eternalitems:raw_tin_block" + }, + "result": { + "id": "eternalitems:tin_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..b059fb6 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "item": "eternalitems:raw_tin_block" + }, + "result": { + "id": "eternalitems:tin_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..fa5b4a0 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "tag": "c:raw_materials/tin" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..77287c1 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "tin_ingot", + "ingredient": { + "tag": "c:raw_materials/tin" + }, + "result": { + "id": "eternalitems:tin_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_raw_block.json new file mode 100644 index 0000000..5ecaa86 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/tin" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_tin_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/tin/tin_rod.json b/src/main/resources/data/eternalitems/recipe/tin/tin_rod.json new file mode 100644 index 0000000..b2eb948 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/tin/tin_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/tin" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_tin" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_block.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_block.json new file mode 100644 index 0000000..94d4952 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/uranium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:uranium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_block_to_ingot.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_block_to_ingot.json new file mode 100644 index 0000000..1d7555a --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_block_to_ingot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:uranium_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..1feff24 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "item": "eternalitems:deepslate_uranium_ore_block" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..0095635 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_deepslate_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "item": "eternalitems:deepslate_uranium_ore_block" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_dupe.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_dupe.json new file mode 100644 index 0000000..33e8f07 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_dupe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:raw_materials/uranium" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 2, + "id": "eternalitems:uranium_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_blasting.json new file mode 100644 index 0000000..a8a714f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "tag": "c:dusts/uranium" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_furnace.json new file mode 100644 index 0000000..a01ecfa --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_dust_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "tag": "c:dusts/uranium" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_ingot_to_dust.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_ingot_to_dust.json new file mode 100644 index 0000000..b91e282 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_ingot_to_dust.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/uranium" + }, + { + "tag": "hammers:hammers" + } + ], + "result": { + "count": 1, + "id": "eternalitems:uranium_dust" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget.json new file mode 100644 index 0000000..4e6fe22 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "tag": "c:ingots/uranium" + } + ], + "result": { + "count": 9, + "id": "eternalitems:uranium_nugget" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget_to_ingot.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget_to_ingot.json new file mode 100644 index 0000000..d63b1d4 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_nugget_to_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:nuggets/uranium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_blasting.json new file mode 100644 index 0000000..de3890f --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "item": "eternalitems:uranium_ore_block" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_furnace.json new file mode 100644 index 0000000..6e4d8f5 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_ore_block_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "item": "eternalitems:uranium_ore_block" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_plate.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_plate.json new file mode 100644 index 0000000..462c810 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/uranium" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + " B ", + " A ", + " A " + ], + "result": { + "count": 1, + "id": "eternalitems:plate_uranium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_block_to_raw_ore.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_block_to_raw_ore.json new file mode 100644 index 0000000..2c07ad6 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_block_to_raw_ore.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "eternalitems:raw_uranium_block" + } + ], + "result": { + "count": 9, + "id": "eternalitems:raw_uranium" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_blasting.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_blasting.json new file mode 100644 index 0000000..6e2a2f1 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "item": "eternalitems:raw_uranium_block" + }, + "result": { + "id": "eternalitems:uranium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_furnace.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_furnace.json new file mode 100644 index 0000000..b496603 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_block_to_block_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "item": "eternalitems:raw_uranium_block" + }, + "result": { + "id": "eternalitems:uranium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_blasting.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_blasting.json new file mode 100644 index 0000000..a0f59b2 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_blasting.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "tag": "c:raw_materials/uranium" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_furnace.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_furnace.json new file mode 100644 index 0000000..e81b194 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_ingot_furnace.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "uranium_ingot", + "ingredient": { + "tag": "c:raw_materials/uranium" + }, + "result": { + "id": "eternalitems:uranium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_raw_block.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_raw_block.json new file mode 100644 index 0000000..3d61e71 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_raw_ore_to_raw_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:raw_materials/uranium" + } + }, + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "result": { + "count": 1, + "id": "eternalitems:raw_uranium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/eternalitems/recipe/uranium/uranium_rod.json b/src/main/resources/data/eternalitems/recipe/uranium/uranium_rod.json new file mode 100644 index 0000000..fc8e933 --- /dev/null +++ b/src/main/resources/data/eternalitems/recipe/uranium/uranium_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": { + "tag": "c:ingots/uranium" + }, + "B": { + "tag": "hammers:hammers" + } + }, + "pattern": [ + "B ", + " A ", + " A" + ], + "result": { + "count": 1, + "id": "eternalitems:rod_uranium" + } +} \ No newline at end of file