diff --git a/config/almostunified/unify.json b/config/almostunified/unify.json index 64c76d076..d4cbd0030 100644 --- a/config/almostunified/unify.json +++ b/config/almostunified/unify.json @@ -32,42 +32,34 @@ "forge:sheets/{material}" ], "materials": [ - "aluminum", - "amber", - "apatite", - "brass", + "bismuth", + "bismuth_bronze", + "black_bronze", "bronze", - "charcoal", - "chrome", - "cinnabar", - "coal", - "coal_coke", - "cobalt", + "brass", "copper", - "diamond", - "electrum", - "emerald", "gold", - "graphite", - "invar", - "iron", - "lapis", - "lead", - "netherite", "nickel", - "obsidian", - "osmium", - "platinum", - "potassium_nitrate", - "ruby", - "sapphire", + "rose_gold", "silver", - "steel", - "sulfur", "tin", - "tungsten", - "uranium", - "zinc" + "zinc", + "sterling_silver", + "wrought_iron", + "iron", + "pig_iron", + "steel", + "black_steel", + "blue_steel", + "red_steel", + "weak_steel", + "weak_blue_steel", + "weak_red_steel", + "high_carbon_steel", + "high_carbon_black_steel", + "high_carbon_blue_steel", + "high_carbon_red_steel", + "unknown" ], "priorityOverrides": {}, "customTags": {}, @@ -84,5 +76,5 @@ "tfc:landslide" ], "ignoredRecipes": [], - "itemsHidingJeiRei": true + "itemsHidingJeiRei": false } \ No newline at end of file diff --git a/kubejs/assets/tfc/lang/en_us.json b/kubejs/assets/tfc/lang/en_us.json index 5c3762495..7f533d0dc 100644 --- a/kubejs/assets/tfc/lang/en_us.json +++ b/kubejs/assets/tfc/lang/en_us.json @@ -1,4 +1,5 @@ { + "metal.tfc.cast_iron": "Iron", "block.gtceu.tfc_andesite_almandine_ore.prospected": "Almandine", "block.gtceu.tfc_andesite_aluminium_ore.prospected": "Aluminium", "block.gtceu.tfc_andesite_alunite_ore.prospected": "Alunite", diff --git a/kubejs/client_scripts/sophisticatedbackpacks/constants.js b/kubejs/client_scripts/sb/constants.js similarity index 95% rename from kubejs/client_scripts/sophisticatedbackpacks/constants.js rename to kubejs/client_scripts/sb/constants.js index 3899285c7..377c578e6 100644 --- a/kubejs/client_scripts/sophisticatedbackpacks/constants.js +++ b/kubejs/client_scripts/sb/constants.js @@ -1,6 +1,6 @@ // priority: 199 -const sophisticatedbackpacksItemsToHide = [ +const SBItemsToHide = [ 'sophisticatedbackpacks:inception_upgrade', 'sophisticatedbackpacks:smelting_upgrade', 'sophisticatedbackpacks:auto_smelting_upgrade', diff --git a/kubejs/client_scripts/sb/rei.js b/kubejs/client_scripts/sb/rei.js new file mode 100644 index 000000000..169b03cc2 --- /dev/null +++ b/kubejs/client_scripts/sb/rei.js @@ -0,0 +1,7 @@ +// priority: 0 + +const hideSBStuff = (event) => { + SBItemsToHide.forEach(itemToHide => { + event.hide(itemToHide) + }) +} \ No newline at end of file diff --git a/kubejs/client_scripts/sophisticatedbackpacks/rei.js b/kubejs/client_scripts/sophisticatedbackpacks/rei.js deleted file mode 100644 index 11f8819fa..000000000 --- a/kubejs/client_scripts/sophisticatedbackpacks/rei.js +++ /dev/null @@ -1,7 +0,0 @@ -// priority: 0 - -const hideSophisticatedBackpacksStuff = (event) => { - sophisticatedbackpacksItemsToHide.forEach(itemToHide => { - event.hide(itemToHide) - }) -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_axe_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_axe_head.json deleted file mode 100644 index c14ebcf49..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_axe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/axe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_axe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_chisel_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_chisel_head.json deleted file mode 100644 index 467c4c114..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_chisel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/chisel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/chisel_head/bismuth_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_fire_ingot.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_fire_ingot.json deleted file mode 100644 index 085d13714..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_hammer_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_hammer_head.json deleted file mode 100644 index dc6a80f2c..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_hammer_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hammer_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_hammer_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_hoe_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_hoe_head.json deleted file mode 100644 index a2155ed8f..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_hoe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hoe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_hoe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_ingot.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_ingot.json deleted file mode 100644 index 9af7b2e05..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_javelin_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_javelin_head.json deleted file mode 100644 index 4b35174ab..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_javelin_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/javelin_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/javelin_head/bismuth_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_knife_blade.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_knife_blade.json deleted file mode 100644 index cff8dbc7b..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_knife_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/knife_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_knife_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_mace_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_mace_head.json deleted file mode 100644 index 07199ed34..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_mace_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/mace_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 288 - }, - "result": { - "item": "tfc:metal/mace_head/bismuth_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_pickaxe_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_pickaxe_head.json deleted file mode 100644 index 25fe9fa5a..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_pickaxe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/pickaxe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_pickaxe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_propick_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_propick_head.json deleted file mode 100644 index 335e561fc..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_propick_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/propick_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/propick_head/bismuth_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_saw_blade.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_saw_blade.json deleted file mode 100644 index ed19ce365..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_saw_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/saw_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_saw_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_scythe_blade.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_scythe_blade.json deleted file mode 100644 index 84154f63e..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_scythe_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/scythe_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_scythe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_shovel_head.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_shovel_head.json deleted file mode 100644 index 42f1cfb07..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_shovel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/shovel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_bronze_shovel_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_bronze_sword_blade.json b/kubejs/data/tfc/recipes/casting/bismuth_bronze_sword_blade.json deleted file mode 100644 index 61523b6ee..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_bronze_sword_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/sword_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth_bronze", - "amount": 288 - }, - "result": { - "item": "gtceu:bismuth_bronze_sword_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_fire_ingot.json b/kubejs/data/tfc/recipes/casting/bismuth_fire_ingot.json deleted file mode 100644 index 4c55985c2..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bismuth_ingot.json b/kubejs/data/tfc/recipes/casting/bismuth_ingot.json deleted file mode 100644 index 4f9df4a1c..000000000 --- a/kubejs/data/tfc/recipes/casting/bismuth_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:bismuth", - "amount": 144 - }, - "result": { - "item": "gtceu:bismuth_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_axe_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_axe_head.json deleted file mode 100644 index c2a34fe4d..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_axe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/axe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_axe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_chisel_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_chisel_head.json deleted file mode 100644 index 067dfcc9e..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_chisel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/chisel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/chisel_head/black_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_fire_ingot.json b/kubejs/data/tfc/recipes/casting/black_bronze_fire_ingot.json deleted file mode 100644 index 5f24e27d4..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_hammer_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_hammer_head.json deleted file mode 100644 index 57fa4528a..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_hammer_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hammer_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_hammer_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_hoe_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_hoe_head.json deleted file mode 100644 index dcc19d78f..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_hoe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hoe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_hoe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_ingot.json b/kubejs/data/tfc/recipes/casting/black_bronze_ingot.json deleted file mode 100644 index a37bfcfe0..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_javelin_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_javelin_head.json deleted file mode 100644 index 0e7ab6824..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_javelin_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/javelin_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/javelin_head/black_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_knife_blade.json b/kubejs/data/tfc/recipes/casting/black_bronze_knife_blade.json deleted file mode 100644 index be07e736e..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_knife_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/knife_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_knife_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_mace_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_mace_head.json deleted file mode 100644 index 10ea1595e..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_mace_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/mace_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 288 - }, - "result": { - "item": "tfc:metal/mace_head/black_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_pickaxe_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_pickaxe_head.json deleted file mode 100644 index 07069533d..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_pickaxe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/pickaxe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_pickaxe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_propick_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_propick_head.json deleted file mode 100644 index f4caae090..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_propick_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/propick_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/propick_head/black_bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_saw_blade.json b/kubejs/data/tfc/recipes/casting/black_bronze_saw_blade.json deleted file mode 100644 index dedaa6fa1..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_saw_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/saw_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_saw_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_scythe_blade.json b/kubejs/data/tfc/recipes/casting/black_bronze_scythe_blade.json deleted file mode 100644 index 36da80274..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_scythe_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/scythe_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_scythe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_shovel_head.json b/kubejs/data/tfc/recipes/casting/black_bronze_shovel_head.json deleted file mode 100644 index 7d56f8b11..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_shovel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/shovel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:black_bronze_shovel_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_bronze_sword_blade.json b/kubejs/data/tfc/recipes/casting/black_bronze_sword_blade.json deleted file mode 100644 index 032bf1e64..000000000 --- a/kubejs/data/tfc/recipes/casting/black_bronze_sword_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/sword_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:black_bronze", - "amount": 288 - }, - "result": { - "item": "gtceu:black_bronze_sword_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/black_steel_fire_ingot.json deleted file mode 100644 index 5ba2551cd..000000000 --- a/kubejs/data/tfc/recipes/casting/black_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:black_steel", - "amount": 144 - }, - "result": { - "item": "gtceu:black_steel_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/black_steel_ingot.json b/kubejs/data/tfc/recipes/casting/black_steel_ingot.json deleted file mode 100644 index e4e63dad7..000000000 --- a/kubejs/data/tfc/recipes/casting/black_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:black_steel", - "amount": 144 - }, - "result": { - "item": "gtceu:black_steel_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/blue_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/blue_steel_fire_ingot.json deleted file mode 100644 index 43f12e683..000000000 --- a/kubejs/data/tfc/recipes/casting/blue_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:blue_steel", - "amount": 144 - }, - "result": { - "item": "gtceu:blue_steel_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/blue_steel_ingot.json b/kubejs/data/tfc/recipes/casting/blue_steel_ingot.json deleted file mode 100644 index 5f7555bfe..000000000 --- a/kubejs/data/tfc/recipes/casting/blue_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:blue_steel", - "amount": 144 - }, - "result": { - "item": "gtceu:blue_steel_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/brass_bell.json b/kubejs/data/tfc/recipes/casting/brass_bell.json deleted file mode 100644 index b56828449..000000000 --- a/kubejs/data/tfc/recipes/casting/brass_bell.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/bell_mold" - }, - "fluid": { - "ingredient": "gtceu:brass", - "amount": 144 - }, - "result": { - "item": "tfc:brass_bell" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/brass_fire_ingot.json b/kubejs/data/tfc/recipes/casting/brass_fire_ingot.json deleted file mode 100644 index 5d6f59577..000000000 --- a/kubejs/data/tfc/recipes/casting/brass_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:brass", - "amount": 144 - }, - "result": { - "item": "gtceu:brass_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/brass_ingot.json b/kubejs/data/tfc/recipes/casting/brass_ingot.json deleted file mode 100644 index 327e45640..000000000 --- a/kubejs/data/tfc/recipes/casting/brass_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:brass", - "amount": 144 - }, - "result": { - "item": "gtceu:brass_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_axe_head.json b/kubejs/data/tfc/recipes/casting/bronze_axe_head.json deleted file mode 100644 index c37f48bf4..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_axe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/axe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_axe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_bell.json b/kubejs/data/tfc/recipes/casting/bronze_bell.json deleted file mode 100644 index 93efe1a32..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_bell.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/bell_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "tfc:bronze_bell" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_chisel_head.json b/kubejs/data/tfc/recipes/casting/bronze_chisel_head.json deleted file mode 100644 index 9dc10d762..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_chisel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/chisel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/chisel_head/bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_fire_ingot.json b/kubejs/data/tfc/recipes/casting/bronze_fire_ingot.json deleted file mode 100644 index e1b4e4f1c..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_hammer_head.json b/kubejs/data/tfc/recipes/casting/bronze_hammer_head.json deleted file mode 100644 index 18371329c..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_hammer_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hammer_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_hammer_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_hoe_head.json b/kubejs/data/tfc/recipes/casting/bronze_hoe_head.json deleted file mode 100644 index 0782360f6..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_hoe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hoe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_hoe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_ingot.json b/kubejs/data/tfc/recipes/casting/bronze_ingot.json deleted file mode 100644 index a7f33f4bc..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_javelin_head.json b/kubejs/data/tfc/recipes/casting/bronze_javelin_head.json deleted file mode 100644 index 167d90710..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_javelin_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/javelin_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/javelin_head/bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_knife_blade.json b/kubejs/data/tfc/recipes/casting/bronze_knife_blade.json deleted file mode 100644 index 797798c0d..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_knife_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/knife_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_knife_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_mace_head.json b/kubejs/data/tfc/recipes/casting/bronze_mace_head.json deleted file mode 100644 index e8bfbec22..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_mace_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/mace_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 288 - }, - "result": { - "item": "tfc:metal/mace_head/bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_pickaxe_head.json b/kubejs/data/tfc/recipes/casting/bronze_pickaxe_head.json deleted file mode 100644 index 4d781f969..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_pickaxe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/pickaxe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_pickaxe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_propick_head.json b/kubejs/data/tfc/recipes/casting/bronze_propick_head.json deleted file mode 100644 index 9b721c73e..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_propick_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/propick_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "tfc:metal/propick_head/bronze" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_saw_blade.json b/kubejs/data/tfc/recipes/casting/bronze_saw_blade.json deleted file mode 100644 index d7db13b82..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_saw_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/saw_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_saw_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_scythe_blade.json b/kubejs/data/tfc/recipes/casting/bronze_scythe_blade.json deleted file mode 100644 index 4da906b67..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_scythe_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/scythe_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_scythe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_shovel_head.json b/kubejs/data/tfc/recipes/casting/bronze_shovel_head.json deleted file mode 100644 index 1e13a8b27..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_shovel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/shovel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 144 - }, - "result": { - "item": "gtceu:bronze_shovel_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/bronze_sword_blade.json b/kubejs/data/tfc/recipes/casting/bronze_sword_blade.json deleted file mode 100644 index 62dcc5aaa..000000000 --- a/kubejs/data/tfc/recipes/casting/bronze_sword_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/sword_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:bronze", - "amount": 288 - }, - "result": { - "item": "gtceu:bronze_sword_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/cast_iron_fire_ingot.json b/kubejs/data/tfc/recipes/casting/cast_iron_fire_ingot.json deleted file mode 100644 index 9e89888af..000000000 --- a/kubejs/data/tfc/recipes/casting/cast_iron_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:iron", - "amount": 144 - }, - "result": { - "item": "minecraft:iron_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/cast_iron_ingot.json b/kubejs/data/tfc/recipes/casting/cast_iron_ingot.json deleted file mode 100644 index c59cb985d..000000000 --- a/kubejs/data/tfc/recipes/casting/cast_iron_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:iron", - "amount": 144 - }, - "result": { - "item": "minecraft:iron_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_axe_head.json b/kubejs/data/tfc/recipes/casting/copper_axe_head.json deleted file mode 100644 index 968776762..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_axe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/axe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_axe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_chisel_head.json b/kubejs/data/tfc/recipes/casting/copper_chisel_head.json deleted file mode 100644 index c36d2a1db..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_chisel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/chisel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "tfc:metal/chisel_head/copper" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_fire_ingot.json b/kubejs/data/tfc/recipes/casting/copper_fire_ingot.json deleted file mode 100644 index 1a8cb4b9c..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "minecraft:copper_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_hammer_head.json b/kubejs/data/tfc/recipes/casting/copper_hammer_head.json deleted file mode 100644 index 53391c4cf..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_hammer_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hammer_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_hammer_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_hoe_head.json b/kubejs/data/tfc/recipes/casting/copper_hoe_head.json deleted file mode 100644 index aaceb7c2c..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_hoe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/hoe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_hoe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_ingot.json b/kubejs/data/tfc/recipes/casting/copper_ingot.json deleted file mode 100644 index ce45d5930..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "minecraft:copper_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_javelin_head.json b/kubejs/data/tfc/recipes/casting/copper_javelin_head.json deleted file mode 100644 index 8704a0fbd..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_javelin_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/javelin_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "tfc:metal/javelin_head/copper" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_knife_blade.json b/kubejs/data/tfc/recipes/casting/copper_knife_blade.json deleted file mode 100644 index 0aa0762da..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_knife_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/knife_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_knife_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_mace_head.json b/kubejs/data/tfc/recipes/casting/copper_mace_head.json deleted file mode 100644 index 4113cf0ad..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_mace_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/mace_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 288 - }, - "result": { - "item": "tfc:metal/mace_head/copper" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_pickaxe_head.json b/kubejs/data/tfc/recipes/casting/copper_pickaxe_head.json deleted file mode 100644 index cfb686a6a..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_pickaxe_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/pickaxe_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_pickaxe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_propick_head.json b/kubejs/data/tfc/recipes/casting/copper_propick_head.json deleted file mode 100644 index 3d512981b..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_propick_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/propick_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "tfc:metal/propick_head/copper" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_saw_blade.json b/kubejs/data/tfc/recipes/casting/copper_saw_blade.json deleted file mode 100644 index fd07a9982..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_saw_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/saw_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_saw_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_scythe_blade.json b/kubejs/data/tfc/recipes/casting/copper_scythe_blade.json deleted file mode 100644 index 1e7e794f3..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_scythe_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/scythe_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_scythe_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_shovel_head.json b/kubejs/data/tfc/recipes/casting/copper_shovel_head.json deleted file mode 100644 index d96e26ce7..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_shovel_head.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/shovel_head_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 144 - }, - "result": { - "item": "gtceu:copper_shovel_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/copper_sword_blade.json b/kubejs/data/tfc/recipes/casting/copper_sword_blade.json deleted file mode 100644 index c5d956c5f..000000000 --- a/kubejs/data/tfc/recipes/casting/copper_sword_blade.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/sword_blade_mold" - }, - "fluid": { - "ingredient": "gtceu:copper", - "amount": 288 - }, - "result": { - "item": "gtceu:copper_sword_head" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/gold_bell.json b/kubejs/data/tfc/recipes/casting/gold_bell.json deleted file mode 100644 index 83c65fa0e..000000000 --- a/kubejs/data/tfc/recipes/casting/gold_bell.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/bell_mold" - }, - "fluid": { - "ingredient": "gtceu:gold", - "amount": 144 - }, - "result": { - "item": "minecraft:bell" - }, - "break_chance": 1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/gold_fire_ingot.json b/kubejs/data/tfc/recipes/casting/gold_fire_ingot.json deleted file mode 100644 index 03c679270..000000000 --- a/kubejs/data/tfc/recipes/casting/gold_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:gold", - "amount": 144 - }, - "result": { - "item": "minecraft:gold_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/gold_ingot.json b/kubejs/data/tfc/recipes/casting/gold_ingot.json deleted file mode 100644 index 06dcc8f50..000000000 --- a/kubejs/data/tfc/recipes/casting/gold_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:gold", - "amount": 144 - }, - "result": { - "item": "minecraft:gold_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_black_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_black_steel_fire_ingot.json deleted file mode 100644 index b8e8eec51..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_black_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_black_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_black_steel" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_black_steel_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_black_steel_ingot.json deleted file mode 100644 index 014ca0fc1..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_black_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_black_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_black_steel" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_blue_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_blue_steel_fire_ingot.json deleted file mode 100644 index d4736b83c..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_blue_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_blue_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_blue_steel" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_blue_steel_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_blue_steel_ingot.json deleted file mode 100644 index 13e3cc2f9..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_blue_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_blue_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_blue_steel" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_red_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_red_steel_fire_ingot.json deleted file mode 100644 index 16c4b0635..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_red_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_red_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_red_steel" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_red_steel_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_red_steel_ingot.json deleted file mode 100644 index 9c9f07e0a..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_red_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_red_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_red_steel" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_steel_fire_ingot.json deleted file mode 100644 index 661599783..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_steel" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/high_carbon_steel_ingot.json b/kubejs/data/tfc/recipes/casting/high_carbon_steel_ingot.json deleted file mode 100644 index 65f0b6609..000000000 --- a/kubejs/data/tfc/recipes/casting/high_carbon_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/high_carbon_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/high_carbon_steel" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/nickel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/nickel_fire_ingot.json deleted file mode 100644 index 3e8859594..000000000 --- a/kubejs/data/tfc/recipes/casting/nickel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:nickel", - "amount": 144 - }, - "result": { - "item": "gtceu:nickel_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/nickel_ingot.json b/kubejs/data/tfc/recipes/casting/nickel_ingot.json deleted file mode 100644 index 0b3c0b92b..000000000 --- a/kubejs/data/tfc/recipes/casting/nickel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:nickel", - "amount": 144 - }, - "result": { - "item": "gtceu:nickel_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/pig_iron_fire_ingot.json b/kubejs/data/tfc/recipes/casting/pig_iron_fire_ingot.json deleted file mode 100644 index 95e6deffe..000000000 --- a/kubejs/data/tfc/recipes/casting/pig_iron_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/pig_iron", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/pig_iron" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/pig_iron_ingot.json b/kubejs/data/tfc/recipes/casting/pig_iron_ingot.json deleted file mode 100644 index 929cbaf25..000000000 --- a/kubejs/data/tfc/recipes/casting/pig_iron_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/pig_iron", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/pig_iron" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/red_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/red_steel_fire_ingot.json deleted file mode 100644 index 5115db481..000000000 --- a/kubejs/data/tfc/recipes/casting/red_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:red_steel", - "amount": 144 - }, - "result": { - "item": "gtceu:red_steel_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/red_steel_ingot.json b/kubejs/data/tfc/recipes/casting/red_steel_ingot.json deleted file mode 100644 index 72b2ecbee..000000000 --- a/kubejs/data/tfc/recipes/casting/red_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:red_steel", - "amount": 144 - }, - "result": { - "item": "gtceu:red_steel_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/rose_gold_fire_ingot.json b/kubejs/data/tfc/recipes/casting/rose_gold_fire_ingot.json deleted file mode 100644 index 3d26fcdfc..000000000 --- a/kubejs/data/tfc/recipes/casting/rose_gold_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:rose_gold", - "amount": 144 - }, - "result": { - "item": "gtceu:rose_gold_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/rose_gold_ingot.json b/kubejs/data/tfc/recipes/casting/rose_gold_ingot.json deleted file mode 100644 index f775bdf70..000000000 --- a/kubejs/data/tfc/recipes/casting/rose_gold_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:rose_gold", - "amount": 144 - }, - "result": { - "item": "gtceu:rose_gold_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/silver_fire_ingot.json b/kubejs/data/tfc/recipes/casting/silver_fire_ingot.json deleted file mode 100644 index 3bee1bfde..000000000 --- a/kubejs/data/tfc/recipes/casting/silver_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:silver", - "amount": 144 - }, - "result": { - "item": "gtceu:silver_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/silver_ingot.json b/kubejs/data/tfc/recipes/casting/silver_ingot.json deleted file mode 100644 index 7d02e44a7..000000000 --- a/kubejs/data/tfc/recipes/casting/silver_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:silver", - "amount": 144 - }, - "result": { - "item": "gtceu:silver_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/steel_fire_ingot.json deleted file mode 100644 index cfa3cec74..000000000 --- a/kubejs/data/tfc/recipes/casting/steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:steel", - "amount": 144 - }, - "result": { - "item": "gtceu:steel_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/steel_ingot.json b/kubejs/data/tfc/recipes/casting/steel_ingot.json deleted file mode 100644 index 8355aec3b..000000000 --- a/kubejs/data/tfc/recipes/casting/steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:steel", - "amount": 144 - }, - "result": { - "item": "gtceu:steel_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/sterling_silver_fire_ingot.json b/kubejs/data/tfc/recipes/casting/sterling_silver_fire_ingot.json deleted file mode 100644 index e002133eb..000000000 --- a/kubejs/data/tfc/recipes/casting/sterling_silver_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:sterling_silver", - "amount": 144 - }, - "result": { - "item": "gtceu:sterling_silver_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/sterling_silver_ingot.json b/kubejs/data/tfc/recipes/casting/sterling_silver_ingot.json deleted file mode 100644 index eb32004c2..000000000 --- a/kubejs/data/tfc/recipes/casting/sterling_silver_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:sterling_silver", - "amount": 144 - }, - "result": { - "item": "gtceu:sterling_silver_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/tin_fire_ingot.json b/kubejs/data/tfc/recipes/casting/tin_fire_ingot.json deleted file mode 100644 index 21400ef6d..000000000 --- a/kubejs/data/tfc/recipes/casting/tin_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:tin", - "amount": 144 - }, - "result": { - "item": "gtceu:tin_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/tin_ingot.json b/kubejs/data/tfc/recipes/casting/tin_ingot.json deleted file mode 100644 index 326398991..000000000 --- a/kubejs/data/tfc/recipes/casting/tin_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:tin", - "amount": 144 - }, - "result": { - "item": "gtceu:tin_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/unknown_fire_ingot.json b/kubejs/data/tfc/recipes/casting/unknown_fire_ingot.json deleted file mode 100644 index d55244867..000000000 --- a/kubejs/data/tfc/recipes/casting/unknown_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/unknown", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/unknown" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/unknown_ingot.json b/kubejs/data/tfc/recipes/casting/unknown_ingot.json deleted file mode 100644 index f1f808a8a..000000000 --- a/kubejs/data/tfc/recipes/casting/unknown_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/unknown", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/unknown" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/weak_blue_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/weak_blue_steel_fire_ingot.json deleted file mode 100644 index 49638bb4b..000000000 --- a/kubejs/data/tfc/recipes/casting/weak_blue_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/weak_blue_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/weak_blue_steel" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/weak_blue_steel_ingot.json b/kubejs/data/tfc/recipes/casting/weak_blue_steel_ingot.json deleted file mode 100644 index e9f66e097..000000000 --- a/kubejs/data/tfc/recipes/casting/weak_blue_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/weak_blue_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/weak_blue_steel" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/weak_red_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/weak_red_steel_fire_ingot.json deleted file mode 100644 index 23a8ac1c4..000000000 --- a/kubejs/data/tfc/recipes/casting/weak_red_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/weak_red_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/weak_red_steel" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/weak_red_steel_ingot.json b/kubejs/data/tfc/recipes/casting/weak_red_steel_ingot.json deleted file mode 100644 index f73b2a5a9..000000000 --- a/kubejs/data/tfc/recipes/casting/weak_red_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/weak_red_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/weak_red_steel" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/weak_steel_fire_ingot.json b/kubejs/data/tfc/recipes/casting/weak_steel_fire_ingot.json deleted file mode 100644 index b67da1cfb..000000000 --- a/kubejs/data/tfc/recipes/casting/weak_steel_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/weak_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/weak_steel" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/weak_steel_ingot.json b/kubejs/data/tfc/recipes/casting/weak_steel_ingot.json deleted file mode 100644 index c15a286fa..000000000 --- a/kubejs/data/tfc/recipes/casting/weak_steel_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "tfc:metal/weak_steel", - "amount": 144 - }, - "result": { - "item": "tfc:metal/ingot/weak_steel" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/wrought_iron_fire_ingot.json b/kubejs/data/tfc/recipes/casting/wrought_iron_fire_ingot.json deleted file mode 100644 index 98a361616..000000000 --- a/kubejs/data/tfc/recipes/casting/wrought_iron_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:wrought_iron", - "amount": 144 - }, - "result": { - "item": "gtceu:wrought_iron_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/wrought_iron_ingot.json b/kubejs/data/tfc/recipes/casting/wrought_iron_ingot.json deleted file mode 100644 index 44eb677f6..000000000 --- a/kubejs/data/tfc/recipes/casting/wrought_iron_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:wrought_iron", - "amount": 144 - }, - "result": { - "item": "gtceu:wrought_iron_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/zinc_fire_ingot.json b/kubejs/data/tfc/recipes/casting/zinc_fire_ingot.json deleted file mode 100644 index e09aa8bff..000000000 --- a/kubejs/data/tfc/recipes/casting/zinc_fire_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/fire_ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:zinc", - "amount": 144 - }, - "result": { - "item": "gtceu:zinc_ingot" - }, - "break_chance": 0.01 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/casting/zinc_ingot.json b/kubejs/data/tfc/recipes/casting/zinc_ingot.json deleted file mode 100644 index 16d6ce72a..000000000 --- a/kubejs/data/tfc/recipes/casting/zinc_ingot.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "__comment__": "This file was automatically created by mcresources", - "type": "tfc:casting", - "mold": { - "item": "tfc:ceramic/ingot_mold" - }, - "fluid": { - "ingredient": "gtceu:zinc", - "amount": 144 - }, - "result": { - "item": "gtceu:zinc_ingot" - }, - "break_chance": 0.1 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_block.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_block.json deleted file mode 100644 index 23004c8e1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 144 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_anvil.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_anvil.json deleted file mode 100644 index 15d2d5323..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 2016 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_axe.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_axe.json deleted file mode 100644 index 0912f6671..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_axe" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_axe_head.json deleted file mode 100644 index 8ff179022..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_bars.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_bars.json deleted file mode 100644 index 6a11fa8db..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 36 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block.json deleted file mode 100644 index a4eaff919..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_boots.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_boots.json deleted file mode 100644 index 9ec087e63..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 576 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chain.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chain.json deleted file mode 100644 index 46f4e8a41..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 9 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chestplate.json deleted file mode 100644 index 1edabe385..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 1152 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chisel.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chisel.json deleted file mode 100644 index 4b7e79e41..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chisel_head.json deleted file mode 100644 index d2be977d7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_double_ingot.json deleted file mode 100644 index 2aaad22e3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_double_sheet.json deleted file mode 100644 index ded9a67fa..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 576 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_fish_hook.json deleted file mode 100644 index 2de1814bd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_fishing_rod.json deleted file mode 100644 index 81ed5ab7e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_greaves.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_greaves.json deleted file mode 100644 index d1dbeaef0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 864 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hammer.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hammer.json deleted file mode 100644 index 9082e00d6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_hammer" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hammer_head.json deleted file mode 100644 index d5defd430..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_helmet.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_helmet.json deleted file mode 100644 index 4c432a1cb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 864 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hoe.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hoe.json deleted file mode 100644 index 352ce0c63..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_hoe" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hoe_head.json deleted file mode 100644 index 1ef6e6e1c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_horse_armor.json deleted file mode 100644 index 02698127c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 1728 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_ingot.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_ingot.json deleted file mode 100644 index 08074fcb3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_javelin.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_javelin.json deleted file mode 100644 index ddbc3c25e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_javelin_head.json deleted file mode 100644 index 8634a0dca..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_knife.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_knife.json deleted file mode 100644 index 4b67d76dc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_knife" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_knife_blade.json deleted file mode 100644 index 7ba083c81..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_lamp.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_lamp.json deleted file mode 100644 index b3012f81e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_mace.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_mace.json deleted file mode 100644 index 4bcb129fd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_mace_head.json deleted file mode 100644 index 1b37a960c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_pickaxe.json deleted file mode 100644 index e5b3e5812..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_pickaxe_head.json deleted file mode 100644 index aad577d96..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_propick.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_propick.json deleted file mode 100644 index 5b6d8c55b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_propick_head.json deleted file mode 100644 index 83c99953e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_rod.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_rod.json deleted file mode 100644 index 8b11670c3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 72 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_saw.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_saw.json deleted file mode 100644 index 43311a7ad..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_saw" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_saw_blade.json deleted file mode 100644 index a55e0883b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_scythe.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_scythe.json deleted file mode 100644 index 34a4db4a9..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_scythe" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_scythe_blade.json deleted file mode 100644 index 1067521d5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shears.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shears.json deleted file mode 100644 index 2d5eed4e0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sheet.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sheet.json deleted file mode 100644 index b947ea0ab..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shield.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shield.json deleted file mode 100644 index fb556d16e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 576 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shovel.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shovel.json deleted file mode 100644 index 65538f339..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_shovel" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shovel_head.json deleted file mode 100644 index 3a68fb70a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sword.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sword.json deleted file mode 100644 index a1bcd9dde..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_sword" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sword_blade.json deleted file mode 100644 index b8d42f448..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bismuth_bronze_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_trapdoor.json deleted file mode 100644 index df4b86af1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_tuyere.json deleted file mode 100644 index 4ee9f2aff..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 576 - }, - "temperature": 985, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_boots.json deleted file mode 100644 index 2cf7f9430..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 288 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_chestplate.json deleted file mode 100644 index 50ec0d446..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 576 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_greaves.json deleted file mode 100644 index 02f415709..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 576 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_helmet.json deleted file mode 100644 index a78bd6b12..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 576 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_lamp.json deleted file mode 100644 index 6a2ea8602..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_bronze_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/bismuth_bronze" - }, - "result_fluid": { - "fluid": "gtceu:bismuth_bronze", - "amount": 144 - }, - "temperature": 985 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_double_ingot.json deleted file mode 100644 index 43258de45..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 288 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_double_sheet.json deleted file mode 100644 index 23cd2444e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 576 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_ingot.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_ingot.json deleted file mode 100644 index fe8dec883..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 144 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_rod.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_rod.json deleted file mode 100644 index 409bc0655..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 72 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bismuth_sheet.json b/kubejs/data/tfc/recipes/heating/metal/bismuth_sheet.json deleted file mode 100644 index 4bcffbdb4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bismuth_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 288 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_anvil.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_anvil.json deleted file mode 100644 index b3b8bd9f5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 2016 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_axe.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_axe.json deleted file mode 100644 index 9fe3007b7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_axe" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_axe_head.json deleted file mode 100644 index 484400b32..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_bars.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_bars.json deleted file mode 100644 index c3d406d81..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 36 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_block.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_block.json deleted file mode 100644 index 6031f90d4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_boots.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_boots.json deleted file mode 100644 index 6b0867ae2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 576 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chain.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_chain.json deleted file mode 100644 index 8d8897ac4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 9 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_chestplate.json deleted file mode 100644 index 1eb4e5f1a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 1152 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chisel.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_chisel.json deleted file mode 100644 index 0b1634e47..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_chisel_head.json deleted file mode 100644 index de3f833f1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_double_ingot.json deleted file mode 100644 index 7fc03e873..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_double_sheet.json deleted file mode 100644 index ea4d16117..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 576 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_fish_hook.json deleted file mode 100644 index 3c4da5468..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_fishing_rod.json deleted file mode 100644 index 0cadf18e0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_greaves.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_greaves.json deleted file mode 100644 index 53e884f22..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 864 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hammer.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_hammer.json deleted file mode 100644 index 605d0d4a9..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_hammer" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_hammer_head.json deleted file mode 100644 index c78e9ad38..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_helmet.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_helmet.json deleted file mode 100644 index a1cd4ac2d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 864 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hoe.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_hoe.json deleted file mode 100644 index 3d74958e4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_hoe" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_hoe_head.json deleted file mode 100644 index 7cd5eb6de..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_horse_armor.json deleted file mode 100644 index d9964aac6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 1728 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_ingot.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_ingot.json deleted file mode 100644 index c3be0cea3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_javelin.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_javelin.json deleted file mode 100644 index 092c6da5d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_javelin_head.json deleted file mode 100644 index 8f0778ab5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_knife.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_knife.json deleted file mode 100644 index dd4d7b6a8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_knife" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_knife_blade.json deleted file mode 100644 index bcac78e13..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_lamp.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_lamp.json deleted file mode 100644 index 5ea1b96f5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_mace.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_mace.json deleted file mode 100644 index b432ced9a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_mace_head.json deleted file mode 100644 index b4b898a59..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_pickaxe.json deleted file mode 100644 index 4a71fbdbc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_pickaxe_head.json deleted file mode 100644 index 663b2491b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_propick.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_propick.json deleted file mode 100644 index 303a44008..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_propick_head.json deleted file mode 100644 index 362206ebe..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_rod.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_rod.json deleted file mode 100644 index bef9e6b83..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 72 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_saw.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_saw.json deleted file mode 100644 index b047cb2df..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_saw" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_saw_blade.json deleted file mode 100644 index 1f129f4ab..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_scythe.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_scythe.json deleted file mode 100644 index 358c3b731..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_scythe" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_scythe_blade.json deleted file mode 100644 index 48507dfdf..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shears.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_shears.json deleted file mode 100644 index 03e87f6ae..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_sheet.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_sheet.json deleted file mode 100644 index 078be9bd0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shield.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_shield.json deleted file mode 100644 index 2d10a88d6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 576 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shovel.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_shovel.json deleted file mode 100644 index 4cecbd011..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_shovel" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_shovel_head.json deleted file mode 100644 index 5c4481de0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_sword.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_sword.json deleted file mode 100644 index 747fb53d1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_sword" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_sword_blade.json deleted file mode 100644 index ab13d0fce..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_bronze_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_trapdoor.json deleted file mode 100644 index d11f72ec2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_tuyere.json deleted file mode 100644 index 8cdb2466c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 576 - }, - "temperature": 1070, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_boots.json deleted file mode 100644 index 331f5fb36..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 288 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_chestplate.json deleted file mode 100644 index fd6f62320..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 576 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_greaves.json deleted file mode 100644 index 0626eaeb5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 576 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_helmet.json deleted file mode 100644 index 7de049a08..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 576 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_lamp.json deleted file mode 100644 index 6157b1494..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_bronze_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/black_bronze" - }, - "result_fluid": { - "fluid": "gtceu:black_bronze", - "amount": 144 - }, - "temperature": 1070 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_anvil.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_anvil.json deleted file mode 100644 index 4ed130dfa..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 2016 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_axe.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_axe.json deleted file mode 100644 index 1710c97fd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_axe" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_axe_head.json deleted file mode 100644 index 95a833a57..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_bars.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_bars.json deleted file mode 100644 index 8e4d7196e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 36 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_block.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_block.json deleted file mode 100644 index 45aac226d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_boots.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_boots.json deleted file mode 100644 index 11b498394..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 576 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_chain.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_chain.json deleted file mode 100644 index e20e57ad0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 9 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_chestplate.json deleted file mode 100644 index 9ee963df2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 1152 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_chisel.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_chisel.json deleted file mode 100644 index 0c7b9546f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_chisel_head.json deleted file mode 100644 index dc1fe1e22..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_double_ingot.json deleted file mode 100644 index 024cab4ae..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_double_sheet.json deleted file mode 100644 index ca1e6f2bc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 576 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_fish_hook.json deleted file mode 100644 index 9541dc65c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_fishing_rod.json deleted file mode 100644 index 588053c20..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_greaves.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_greaves.json deleted file mode 100644 index 9a05002bc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 864 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_hammer.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_hammer.json deleted file mode 100644 index b9f14250d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_hammer" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_hammer_head.json deleted file mode 100644 index 979fc7be2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_helmet.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_helmet.json deleted file mode 100644 index db296c2e6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 864 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_hoe.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_hoe.json deleted file mode 100644 index 79b1727ae..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_hoe" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_hoe_head.json deleted file mode 100644 index dd26958d1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_horse_armor.json deleted file mode 100644 index 1e1bf66ac..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 1728 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_ingot.json deleted file mode 100644 index 77b069f95..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_javelin.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_javelin.json deleted file mode 100644 index ee9f68841..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_javelin_head.json deleted file mode 100644 index b5c14bd17..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_knife.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_knife.json deleted file mode 100644 index 5461abec1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_knife" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_knife_blade.json deleted file mode 100644 index faabb0df3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_lamp.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_lamp.json deleted file mode 100644 index 647909ba1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_mace.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_mace.json deleted file mode 100644 index d7ce34ab0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_mace_head.json deleted file mode 100644 index 301acb2fa..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_pickaxe.json deleted file mode 100644 index a74d92de3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_pickaxe_head.json deleted file mode 100644 index 157799442..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_propick.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_propick.json deleted file mode 100644 index 654940345..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_propick_head.json deleted file mode 100644 index 49ed8f753..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_rod.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_rod.json deleted file mode 100644 index b199decf7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 72 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_saw.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_saw.json deleted file mode 100644 index 9017b3d0f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_saw" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_saw_blade.json deleted file mode 100644 index d02c993a0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_scythe.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_scythe.json deleted file mode 100644 index f2149f089..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_scythe" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_scythe_blade.json deleted file mode 100644 index c53600a25..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_shears.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_shears.json deleted file mode 100644 index eff9daab6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_sheet.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_sheet.json deleted file mode 100644 index 7ae9d56b5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_shield.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_shield.json deleted file mode 100644 index e6ea64ebc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 576 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_shovel.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_shovel.json deleted file mode 100644 index 0d0b98df7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_shovel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_shovel_head.json deleted file mode 100644 index e9e5be842..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_sword.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_sword.json deleted file mode 100644 index 7478406e8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_sword" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_sword_blade.json deleted file mode 100644 index 150621a35..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:black_steel_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_trapdoor.json deleted file mode 100644 index 46f7f7551..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_tuyere.json deleted file mode 100644 index b92c9a8a2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 576 - }, - "temperature": 1485, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_boots.json deleted file mode 100644 index c9b22c76c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 288 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_chestplate.json deleted file mode 100644 index 28abf9020..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 576 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_greaves.json deleted file mode 100644 index 26705a9b6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 576 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_helmet.json deleted file mode 100644 index 0f0cef6e0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 576 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_lamp.json deleted file mode 100644 index 4094479be..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/black_steel_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/black_steel" - }, - "result_fluid": { - "fluid": "gtceu:black_steel", - "amount": 144 - }, - "temperature": 1485 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_anvil.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_anvil.json deleted file mode 100644 index 54d1897b3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 2016 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_axe.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_axe.json deleted file mode 100644 index 53558b328..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_axe" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_axe_head.json deleted file mode 100644 index 3ab684093..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_bars.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_bars.json deleted file mode 100644 index 361968dcf..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 36 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_block.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_block.json deleted file mode 100644 index 557ac1439..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_boots.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_boots.json deleted file mode 100644 index a59a8ba2e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chain.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_chain.json deleted file mode 100644 index cce6ae2bb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 9 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_chestplate.json deleted file mode 100644 index 86f75f7b2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 1152 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chisel.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_chisel.json deleted file mode 100644 index 456a8a7e2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_chisel_head.json deleted file mode 100644 index d2ca9758d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_double_ingot.json deleted file mode 100644 index 62a166d57..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_double_sheet.json deleted file mode 100644 index 0d75311d4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_fish_hook.json deleted file mode 100644 index ef0b2d900..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_fishing_rod.json deleted file mode 100644 index a62644742..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_greaves.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_greaves.json deleted file mode 100644 index 3a5127a39..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 864 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hammer.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_hammer.json deleted file mode 100644 index 0832cffe8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_hammer" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_hammer_head.json deleted file mode 100644 index a8b2e5dfc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_helmet.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_helmet.json deleted file mode 100644 index c33ebd411..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 864 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hoe.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_hoe.json deleted file mode 100644 index eb418b3cf..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_hoe" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_hoe_head.json deleted file mode 100644 index 03baaff7c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_horse_armor.json deleted file mode 100644 index 489a64bf2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 1728 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_ingot.json deleted file mode 100644 index abdf7008f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_javelin.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_javelin.json deleted file mode 100644 index 43d5c0987..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_javelin_head.json deleted file mode 100644 index 735181407..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_knife.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_knife.json deleted file mode 100644 index 21f341212..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_knife" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_knife_blade.json deleted file mode 100644 index 77f22c300..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_lamp.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_lamp.json deleted file mode 100644 index 63cdac2b7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_mace.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_mace.json deleted file mode 100644 index 8c9f26f21..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_mace_head.json deleted file mode 100644 index d5a32e336..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_pickaxe.json deleted file mode 100644 index 6d552133d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_pickaxe_head.json deleted file mode 100644 index 132f8d20c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_propick.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_propick.json deleted file mode 100644 index dc384b891..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_propick_head.json deleted file mode 100644 index eef1fcf7d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_rod.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_rod.json deleted file mode 100644 index 4084bfb1a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 72 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_saw.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_saw.json deleted file mode 100644 index daa157995..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_saw" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_saw_blade.json deleted file mode 100644 index de5aa0733..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_scythe.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_scythe.json deleted file mode 100644 index 9827c5c48..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_scythe" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_scythe_blade.json deleted file mode 100644 index 61f065dd1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shears.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_shears.json deleted file mode 100644 index 5a42d61e6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_sheet.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_sheet.json deleted file mode 100644 index 537c560b8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shield.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_shield.json deleted file mode 100644 index b3b25202c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shovel.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_shovel.json deleted file mode 100644 index 667fcc9ae..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_shovel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_shovel_head.json deleted file mode 100644 index c09f0d366..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_sword.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_sword.json deleted file mode 100644 index a44a4fba0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_sword" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_sword_blade.json deleted file mode 100644 index f906dc0b6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:blue_steel_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_trapdoor.json deleted file mode 100644 index 4f967571f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_tuyere.json deleted file mode 100644 index 2b0edc11c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_boots.json deleted file mode 100644 index ec091c313..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_chestplate.json deleted file mode 100644 index 4e68c44bd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_greaves.json deleted file mode 100644 index 7ba49afcd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_helmet.json deleted file mode 100644 index 787f04914..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_lamp.json deleted file mode 100644 index a331cf9f3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/blue_steel_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/blue_steel" - }, - "result_fluid": { - "fluid": "gtceu:blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_block.json b/kubejs/data/tfc/recipes/heating/metal/brass_block.json deleted file mode 100644 index 57b739e10..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/brass" - }, - "result_fluid": { - "fluid": "gtceu:brass", - "amount": 144 - }, - "temperature": 930 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/brass_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/brass_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/brass_double_ingot.json deleted file mode 100644 index 9cf860ddf..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/brass" - }, - "result_fluid": { - "fluid": "gtceu:brass", - "amount": 288 - }, - "temperature": 930 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/brass_double_sheet.json deleted file mode 100644 index 0e616c9ca..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/brass" - }, - "result_fluid": { - "fluid": "gtceu:brass", - "amount": 576 - }, - "temperature": 930 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_ingot.json b/kubejs/data/tfc/recipes/heating/metal/brass_ingot.json deleted file mode 100644 index 58e7a065e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/brass" - }, - "result_fluid": { - "fluid": "gtceu:brass", - "amount": 144 - }, - "temperature": 930 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_rod.json b/kubejs/data/tfc/recipes/heating/metal/brass_rod.json deleted file mode 100644 index 5b32eb801..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/brass" - }, - "result_fluid": { - "fluid": "gtceu:brass", - "amount": 72 - }, - "temperature": 930 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/brass_sheet.json b/kubejs/data/tfc/recipes/heating/metal/brass_sheet.json deleted file mode 100644 index a43ada4cc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/brass_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/brass" - }, - "result_fluid": { - "fluid": "gtceu:brass", - "amount": 288 - }, - "temperature": 930 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_anvil.json b/kubejs/data/tfc/recipes/heating/metal/bronze_anvil.json deleted file mode 100644 index 8a1f7bf52..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 2016 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_axe.json b/kubejs/data/tfc/recipes/heating/metal/bronze_axe.json deleted file mode 100644 index 7a8e7bb20..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_axe" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_axe_head.json deleted file mode 100644 index 9f5e906de..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_bars.json b/kubejs/data/tfc/recipes/heating/metal/bronze_bars.json deleted file mode 100644 index 8abfe9be3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 36 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_block.json b/kubejs/data/tfc/recipes/heating/metal/bronze_block.json deleted file mode 100644 index e81228605..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/bronze_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/bronze_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_boots.json b/kubejs/data/tfc/recipes/heating/metal/bronze_boots.json deleted file mode 100644 index f48121ee8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 576 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_chain.json b/kubejs/data/tfc/recipes/heating/metal/bronze_chain.json deleted file mode 100644 index fdb714a81..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 9 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/bronze_chestplate.json deleted file mode 100644 index 993e3890c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 1152 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_chisel.json b/kubejs/data/tfc/recipes/heating/metal/bronze_chisel.json deleted file mode 100644 index cb371d944..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_chisel_head.json deleted file mode 100644 index c819d455b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/bronze_double_ingot.json deleted file mode 100644 index 40412d6c8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/bronze_double_sheet.json deleted file mode 100644 index ee5c5361a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 576 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/bronze_fish_hook.json deleted file mode 100644 index 75724f3c9..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/bronze_fishing_rod.json deleted file mode 100644 index 1ede501a1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_greaves.json b/kubejs/data/tfc/recipes/heating/metal/bronze_greaves.json deleted file mode 100644 index 32506c225..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 864 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_hammer.json b/kubejs/data/tfc/recipes/heating/metal/bronze_hammer.json deleted file mode 100644 index 2562f7901..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_hammer" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_hammer_head.json deleted file mode 100644 index 7fdb89f32..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_helmet.json b/kubejs/data/tfc/recipes/heating/metal/bronze_helmet.json deleted file mode 100644 index 01f7372de..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 864 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_hoe.json b/kubejs/data/tfc/recipes/heating/metal/bronze_hoe.json deleted file mode 100644 index c38496787..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_hoe" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_hoe_head.json deleted file mode 100644 index 05926d04d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/bronze_horse_armor.json deleted file mode 100644 index b060c44f3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 1728 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_ingot.json b/kubejs/data/tfc/recipes/heating/metal/bronze_ingot.json deleted file mode 100644 index 464ac82ff..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_javelin.json b/kubejs/data/tfc/recipes/heating/metal/bronze_javelin.json deleted file mode 100644 index 1492f6c6c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_javelin_head.json deleted file mode 100644 index f620d2789..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_knife.json b/kubejs/data/tfc/recipes/heating/metal/bronze_knife.json deleted file mode 100644 index beae116d0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_knife" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/bronze_knife_blade.json deleted file mode 100644 index 6840f8a00..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_lamp.json b/kubejs/data/tfc/recipes/heating/metal/bronze_lamp.json deleted file mode 100644 index 36be33ccf..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_mace.json b/kubejs/data/tfc/recipes/heating/metal/bronze_mace.json deleted file mode 100644 index 9c0c20d0d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_mace_head.json deleted file mode 100644 index 043108a59..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/bronze_pickaxe.json deleted file mode 100644 index 30fd11a32..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_pickaxe_head.json deleted file mode 100644 index 405f7c116..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_propick.json b/kubejs/data/tfc/recipes/heating/metal/bronze_propick.json deleted file mode 100644 index b42444dd2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_propick_head.json deleted file mode 100644 index 567c709ef..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_rod.json b/kubejs/data/tfc/recipes/heating/metal/bronze_rod.json deleted file mode 100644 index 2215cea79..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 72 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_saw.json b/kubejs/data/tfc/recipes/heating/metal/bronze_saw.json deleted file mode 100644 index 465ba8bcc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_saw" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/bronze_saw_blade.json deleted file mode 100644 index 377a2ae17..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_scythe.json b/kubejs/data/tfc/recipes/heating/metal/bronze_scythe.json deleted file mode 100644 index c1a353843..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_scythe" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/bronze_scythe_blade.json deleted file mode 100644 index 84ea6a7c7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_shears.json b/kubejs/data/tfc/recipes/heating/metal/bronze_shears.json deleted file mode 100644 index 475fde2e5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_sheet.json b/kubejs/data/tfc/recipes/heating/metal/bronze_sheet.json deleted file mode 100644 index adb46afc7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_shield.json b/kubejs/data/tfc/recipes/heating/metal/bronze_shield.json deleted file mode 100644 index c898c9bdd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 576 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_shovel.json b/kubejs/data/tfc/recipes/heating/metal/bronze_shovel.json deleted file mode 100644 index 6f953bcf4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_shovel" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/bronze_shovel_head.json deleted file mode 100644 index 4bc346573..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_sword.json b/kubejs/data/tfc/recipes/heating/metal/bronze_sword.json deleted file mode 100644 index 5086d2985..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_sword" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/bronze_sword_blade.json deleted file mode 100644 index 0189dbaec..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:bronze_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/bronze_trapdoor.json deleted file mode 100644 index 6dfa0fdea..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/bronze_tuyere.json deleted file mode 100644 index 777052b3c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 576 - }, - "temperature": 950, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_boots.json deleted file mode 100644 index 6846006d0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_chestplate.json deleted file mode 100644 index f8b04405d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 576 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_greaves.json deleted file mode 100644 index 019f5a0e3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 576 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_helmet.json deleted file mode 100644 index 1944b05f3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 576 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_lamp.json deleted file mode 100644 index 404072967..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/bronze_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/bronze" - }, - "result_fluid": { - "fluid": "gtceu:bronze", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_block.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_block.json deleted file mode 100644 index eea367180..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_double_ingot.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_double_ingot.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_double_sheet.json deleted file mode 100644 index e7ab46c77..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_ingot.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_ingot.json deleted file mode 100644 index cae467282..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_rod.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_rod.json deleted file mode 100644 index fa930843d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 72 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/cast_iron_sheet.json b/kubejs/data/tfc/recipes/heating/metal/cast_iron_sheet.json deleted file mode 100644 index d96d58d86..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/cast_iron_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_anvil.json b/kubejs/data/tfc/recipes/heating/metal/copper_anvil.json deleted file mode 100644 index 8e8c83c18..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 2016 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_axe.json b/kubejs/data/tfc/recipes/heating/metal/copper_axe.json deleted file mode 100644 index 50ab72e63..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_axe" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_axe_head.json deleted file mode 100644 index e31546ed0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_bars.json b/kubejs/data/tfc/recipes/heating/metal/copper_bars.json deleted file mode 100644 index 385e99c29..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 36 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_block.json b/kubejs/data/tfc/recipes/heating/metal/copper_block.json deleted file mode 100644 index 6df7b8897..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/copper_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/copper_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_boots.json b/kubejs/data/tfc/recipes/heating/metal/copper_boots.json deleted file mode 100644 index 5ddeeb87e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 576 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_chain.json b/kubejs/data/tfc/recipes/heating/metal/copper_chain.json deleted file mode 100644 index a336a1a42..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 9 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/copper_chestplate.json deleted file mode 100644 index 456b6df52..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 1152 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_chisel.json b/kubejs/data/tfc/recipes/heating/metal/copper_chisel.json deleted file mode 100644 index 13250d71b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_chisel_head.json deleted file mode 100644 index 2f5e256ca..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/copper_double_ingot.json deleted file mode 100644 index 4a5d54ca0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/copper_double_sheet.json deleted file mode 100644 index fc5c7cdca..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 576 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/copper_fish_hook.json deleted file mode 100644 index 689609380..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/copper_fishing_rod.json deleted file mode 100644 index ebe499930..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_greaves.json b/kubejs/data/tfc/recipes/heating/metal/copper_greaves.json deleted file mode 100644 index 915a6b4eb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 864 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_hammer.json b/kubejs/data/tfc/recipes/heating/metal/copper_hammer.json deleted file mode 100644 index ff53ebc0a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_hammer" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_hammer_head.json deleted file mode 100644 index 9546f0ec8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_helmet.json b/kubejs/data/tfc/recipes/heating/metal/copper_helmet.json deleted file mode 100644 index 0665c4edb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 864 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_hoe.json b/kubejs/data/tfc/recipes/heating/metal/copper_hoe.json deleted file mode 100644 index 1904846e0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_hoe" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_hoe_head.json deleted file mode 100644 index fbf598048..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/copper_horse_armor.json deleted file mode 100644 index 30ef6bc7a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 1728 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_ingot.json b/kubejs/data/tfc/recipes/heating/metal/copper_ingot.json deleted file mode 100644 index beeba45c3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_javelin.json b/kubejs/data/tfc/recipes/heating/metal/copper_javelin.json deleted file mode 100644 index ed3a67621..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_javelin_head.json deleted file mode 100644 index 3f62f3e45..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_knife.json b/kubejs/data/tfc/recipes/heating/metal/copper_knife.json deleted file mode 100644 index 24736aefb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_knife" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/copper_knife_blade.json deleted file mode 100644 index e31be4478..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_lamp.json b/kubejs/data/tfc/recipes/heating/metal/copper_lamp.json deleted file mode 100644 index 3c5e228a7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_mace.json b/kubejs/data/tfc/recipes/heating/metal/copper_mace.json deleted file mode 100644 index 8ca10d72e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_mace_head.json deleted file mode 100644 index 25af41d18..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/copper_pickaxe.json deleted file mode 100644 index 9702c3d61..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_pickaxe_head.json deleted file mode 100644 index 00ed0b82f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_propick.json b/kubejs/data/tfc/recipes/heating/metal/copper_propick.json deleted file mode 100644 index 0d07374ac..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_propick_head.json deleted file mode 100644 index 4571b4686..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_rod.json b/kubejs/data/tfc/recipes/heating/metal/copper_rod.json deleted file mode 100644 index b99ca5b9f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 72 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_saw.json b/kubejs/data/tfc/recipes/heating/metal/copper_saw.json deleted file mode 100644 index c436e8106..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_saw" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/copper_saw_blade.json deleted file mode 100644 index 8aea97a85..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_scythe.json b/kubejs/data/tfc/recipes/heating/metal/copper_scythe.json deleted file mode 100644 index cde29a5f6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_scythe" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/copper_scythe_blade.json deleted file mode 100644 index 6197f5d22..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_shears.json b/kubejs/data/tfc/recipes/heating/metal/copper_shears.json deleted file mode 100644 index 91a522ccb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_sheet.json b/kubejs/data/tfc/recipes/heating/metal/copper_sheet.json deleted file mode 100644 index b1e81d73b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_shield.json b/kubejs/data/tfc/recipes/heating/metal/copper_shield.json deleted file mode 100644 index 3c257d6e0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 576 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_shovel.json b/kubejs/data/tfc/recipes/heating/metal/copper_shovel.json deleted file mode 100644 index 65aa1846a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_shovel" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/copper_shovel_head.json deleted file mode 100644 index 9e487c537..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_sword.json b/kubejs/data/tfc/recipes/heating/metal/copper_sword.json deleted file mode 100644 index b900f7a97..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_sword" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/copper_sword_blade.json deleted file mode 100644 index cbde9d471..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:copper_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/copper_trapdoor.json deleted file mode 100644 index 3cb1fc046..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/copper_tuyere.json deleted file mode 100644 index 1b6d9598f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 576 - }, - "temperature": 1080, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_boots.json deleted file mode 100644 index a9f109417..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 288 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_chestplate.json deleted file mode 100644 index da03732eb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 576 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_greaves.json deleted file mode 100644 index f4be60c9b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 576 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_helmet.json deleted file mode 100644 index cf96b3e5a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 576 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_lamp.json deleted file mode 100644 index d55742858..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/copper_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 144 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_block.json b/kubejs/data/tfc/recipes/heating/metal/gold_block.json deleted file mode 100644 index e09078ecd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 144 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/gold_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/gold_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/gold_double_ingot.json deleted file mode 100644 index 1288fdcea..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 288 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/gold_double_sheet.json deleted file mode 100644 index 0cab947f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 576 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_ingot.json b/kubejs/data/tfc/recipes/heating/metal/gold_ingot.json deleted file mode 100644 index 66684dd53..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 144 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_rod.json b/kubejs/data/tfc/recipes/heating/metal/gold_rod.json deleted file mode 100644 index f1b387666..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 72 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/gold_sheet.json b/kubejs/data/tfc/recipes/heating/metal/gold_sheet.json deleted file mode 100644 index 02ff65e06..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/gold_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 288 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/high_carbon_black_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/high_carbon_black_steel_ingot.json deleted file mode 100644 index 73f3d10f8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/high_carbon_black_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/high_carbon_black_steel" - }, - "result_fluid": { - "fluid": "tfc:metal/weak_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/high_carbon_blue_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/high_carbon_blue_steel_ingot.json deleted file mode 100644 index e58f1340b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/high_carbon_blue_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/high_carbon_blue_steel" - }, - "result_fluid": { - "fluid": "tfc:metal/weak_blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/high_carbon_red_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/high_carbon_red_steel_ingot.json deleted file mode 100644 index d47e13381..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/high_carbon_red_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/high_carbon_red_steel" - }, - "result_fluid": { - "fluid": "tfc:metal/weak_red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/high_carbon_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/high_carbon_steel_ingot.json deleted file mode 100644 index 8292e1fd0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/high_carbon_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/high_carbon_steel" - }, - "result_fluid": { - "fluid": "tfc:metal/pig_iron", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_block.json b/kubejs/data/tfc/recipes/heating/metal/nickel_block.json deleted file mode 100644 index bc49a9e1e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 144 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/nickel_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/nickel_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/nickel_double_ingot.json deleted file mode 100644 index cb3a4aae7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 288 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/nickel_double_sheet.json deleted file mode 100644 index db696ff78..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 576 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/nickel_ingot.json deleted file mode 100644 index 9a8c69bb3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 144 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_rod.json b/kubejs/data/tfc/recipes/heating/metal/nickel_rod.json deleted file mode 100644 index 8ecc88624..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 72 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/nickel_sheet.json b/kubejs/data/tfc/recipes/heating/metal/nickel_sheet.json deleted file mode 100644 index 370f0cee0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/nickel_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 288 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/pig_iron_ingot.json b/kubejs/data/tfc/recipes/heating/metal/pig_iron_ingot.json deleted file mode 100644 index 844062643..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/pig_iron_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/pig_iron" - }, - "result_fluid": { - "fluid": "tfc:metal/pig_iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_anvil.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_anvil.json deleted file mode 100644 index dbd56fb6e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 2016 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_axe.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_axe.json deleted file mode 100644 index 9922db8e5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_axe" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_axe_head.json deleted file mode 100644 index 9b6fcacd0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_bars.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_bars.json deleted file mode 100644 index 8b24d50e5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 36 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_block.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_block.json deleted file mode 100644 index e7db05667..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_boots.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_boots.json deleted file mode 100644 index e7a8861be..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_chain.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_chain.json deleted file mode 100644 index 2a752b731..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 9 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_chestplate.json deleted file mode 100644 index b4e72c6f1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 1152 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_chisel.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_chisel.json deleted file mode 100644 index 09ea1d82d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_chisel_head.json deleted file mode 100644 index 12632a905..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_double_ingot.json deleted file mode 100644 index 870e78990..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_double_sheet.json deleted file mode 100644 index b2a371482..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_fish_hook.json deleted file mode 100644 index c08e0a427..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_fishing_rod.json deleted file mode 100644 index 5f4965626..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_greaves.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_greaves.json deleted file mode 100644 index dbedccb80..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 864 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_hammer.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_hammer.json deleted file mode 100644 index 13a28eac1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_hammer" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_hammer_head.json deleted file mode 100644 index 5f91857f3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_helmet.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_helmet.json deleted file mode 100644 index 629224e9e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 864 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_hoe.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_hoe.json deleted file mode 100644 index 00ec0e388..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_hoe" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_hoe_head.json deleted file mode 100644 index 070920361..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_horse_armor.json deleted file mode 100644 index f4a3a3972..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 1728 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_ingot.json deleted file mode 100644 index 2696104a5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_javelin.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_javelin.json deleted file mode 100644 index e4e0c8fd0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_javelin_head.json deleted file mode 100644 index 72fb3ced2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_knife.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_knife.json deleted file mode 100644 index 1c96e4f50..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_knife" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_knife_blade.json deleted file mode 100644 index 2420d8adc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_lamp.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_lamp.json deleted file mode 100644 index 356c25546..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_mace.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_mace.json deleted file mode 100644 index 92ebff2e5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_mace_head.json deleted file mode 100644 index dd04c84f6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_pickaxe.json deleted file mode 100644 index 35e764af9..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_pickaxe_head.json deleted file mode 100644 index 34c19d7c4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_propick.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_propick.json deleted file mode 100644 index 5db1ae847..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_propick_head.json deleted file mode 100644 index 8166ce9a6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_rod.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_rod.json deleted file mode 100644 index db9bd5351..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 72 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_saw.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_saw.json deleted file mode 100644 index 20a17547a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_saw" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_saw_blade.json deleted file mode 100644 index 4aca2d942..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_scythe.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_scythe.json deleted file mode 100644 index f1e01bc0c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_scythe" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_scythe_blade.json deleted file mode 100644 index dc4c3bbd3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_shears.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_shears.json deleted file mode 100644 index 8679e2739..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_sheet.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_sheet.json deleted file mode 100644 index 6702a3e6d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_shield.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_shield.json deleted file mode 100644 index aae817813..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_shovel.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_shovel.json deleted file mode 100644 index f2f1af36a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_shovel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_shovel_head.json deleted file mode 100644 index 13c757539..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_sword.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_sword.json deleted file mode 100644 index 0e943ba2a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_sword" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_sword_blade.json deleted file mode 100644 index 772b6d5ac..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:red_steel_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_trapdoor.json deleted file mode 100644 index d504f1707..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_tuyere.json deleted file mode 100644 index def9de328..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_boots.json deleted file mode 100644 index 93f258afb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_chestplate.json deleted file mode 100644 index 031625fcb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_greaves.json deleted file mode 100644 index 9c1df273f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_helmet.json deleted file mode 100644 index 88d347ed5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_lamp.json deleted file mode 100644 index 05691c27b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/red_steel_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/red_steel" - }, - "result_fluid": { - "fluid": "gtceu:red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_block.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_block.json deleted file mode 100644 index 58178e8b2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/rose_gold" - }, - "result_fluid": { - "fluid": "gtceu:rose_gold", - "amount": 144 - }, - "temperature": 960 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_double_ingot.json deleted file mode 100644 index e5448a9cc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/rose_gold" - }, - "result_fluid": { - "fluid": "gtceu:rose_gold", - "amount": 288 - }, - "temperature": 960 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_double_sheet.json deleted file mode 100644 index 82c7c27cd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/rose_gold" - }, - "result_fluid": { - "fluid": "gtceu:rose_gold", - "amount": 576 - }, - "temperature": 960 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_ingot.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_ingot.json deleted file mode 100644 index 157416fee..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/rose_gold" - }, - "result_fluid": { - "fluid": "gtceu:rose_gold", - "amount": 144 - }, - "temperature": 960 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_rod.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_rod.json deleted file mode 100644 index b682bd420..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/rose_gold" - }, - "result_fluid": { - "fluid": "gtceu:rose_gold", - "amount": 72 - }, - "temperature": 960 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/rose_gold_sheet.json b/kubejs/data/tfc/recipes/heating/metal/rose_gold_sheet.json deleted file mode 100644 index 6384fde06..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/rose_gold_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/rose_gold" - }, - "result_fluid": { - "fluid": "gtceu:rose_gold", - "amount": 288 - }, - "temperature": 960 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_block.json b/kubejs/data/tfc/recipes/heating/metal/silver_block.json deleted file mode 100644 index 1320fbf9f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 144 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/silver_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/silver_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/silver_double_ingot.json deleted file mode 100644 index eab8af0d7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 288 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/silver_double_sheet.json deleted file mode 100644 index 8d9faeff5..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 576 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_ingot.json b/kubejs/data/tfc/recipes/heating/metal/silver_ingot.json deleted file mode 100644 index db1fa8026..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 144 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_rod.json b/kubejs/data/tfc/recipes/heating/metal/silver_rod.json deleted file mode 100644 index 6b9bfb0d1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 72 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/silver_sheet.json b/kubejs/data/tfc/recipes/heating/metal/silver_sheet.json deleted file mode 100644 index 884dccf19..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/silver_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 288 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_anvil.json b/kubejs/data/tfc/recipes/heating/metal/steel_anvil.json deleted file mode 100644 index 04de49499..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 2016 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_axe.json b/kubejs/data/tfc/recipes/heating/metal/steel_axe.json deleted file mode 100644 index ab485c656..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_axe" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_axe_head.json deleted file mode 100644 index ddee37eaf..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_bars.json b/kubejs/data/tfc/recipes/heating/metal/steel_bars.json deleted file mode 100644 index 78f0fbae3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 36 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_block.json b/kubejs/data/tfc/recipes/heating/metal/steel_block.json deleted file mode 100644 index d5977c8da..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/steel_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/steel_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_boots.json b/kubejs/data/tfc/recipes/heating/metal/steel_boots.json deleted file mode 100644 index c26bea2af..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_chain.json b/kubejs/data/tfc/recipes/heating/metal/steel_chain.json deleted file mode 100644 index ed1815c6d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 9 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/steel_chestplate.json deleted file mode 100644 index f1d548de8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 1152 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_chisel.json b/kubejs/data/tfc/recipes/heating/metal/steel_chisel.json deleted file mode 100644 index 8bd8314cb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_chisel_head.json deleted file mode 100644 index 184f6c5cf..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/steel_double_ingot.json deleted file mode 100644 index 265c7cc18..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/steel_double_sheet.json deleted file mode 100644 index 3e3e4fc6f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/steel_fish_hook.json deleted file mode 100644 index 51f1108f1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/steel_fishing_rod.json deleted file mode 100644 index 7c403d783..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_greaves.json b/kubejs/data/tfc/recipes/heating/metal/steel_greaves.json deleted file mode 100644 index d9db8fc53..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 864 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_hammer.json b/kubejs/data/tfc/recipes/heating/metal/steel_hammer.json deleted file mode 100644 index 02319fd36..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_hammer" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_hammer_head.json deleted file mode 100644 index 518dfe538..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_helmet.json b/kubejs/data/tfc/recipes/heating/metal/steel_helmet.json deleted file mode 100644 index be19b348b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 864 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_hoe.json b/kubejs/data/tfc/recipes/heating/metal/steel_hoe.json deleted file mode 100644 index c1acbc290..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_hoe" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_hoe_head.json deleted file mode 100644 index df3dc0b14..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/steel_horse_armor.json deleted file mode 100644 index 23494ba17..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 1728 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/steel_ingot.json deleted file mode 100644 index 85e3f8ac0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_javelin.json b/kubejs/data/tfc/recipes/heating/metal/steel_javelin.json deleted file mode 100644 index d6f0c6ac4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_javelin_head.json deleted file mode 100644 index 932ed2194..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_knife.json b/kubejs/data/tfc/recipes/heating/metal/steel_knife.json deleted file mode 100644 index a12af9447..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_knife" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/steel_knife_blade.json deleted file mode 100644 index cb246d28f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_lamp.json b/kubejs/data/tfc/recipes/heating/metal/steel_lamp.json deleted file mode 100644 index 2c5525332..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_mace.json b/kubejs/data/tfc/recipes/heating/metal/steel_mace.json deleted file mode 100644 index 264a82e85..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_mace_head.json deleted file mode 100644 index 106ceb422..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/steel_pickaxe.json deleted file mode 100644 index 629416c16..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_pickaxe_head.json deleted file mode 100644 index 53a9c175d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_propick.json b/kubejs/data/tfc/recipes/heating/metal/steel_propick.json deleted file mode 100644 index 864a72f33..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_propick_head.json deleted file mode 100644 index 9a3a5b2e8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_rod.json b/kubejs/data/tfc/recipes/heating/metal/steel_rod.json deleted file mode 100644 index fe24f8f31..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 72 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_saw.json b/kubejs/data/tfc/recipes/heating/metal/steel_saw.json deleted file mode 100644 index 87d3347f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_saw" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/steel_saw_blade.json deleted file mode 100644 index e10686566..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_scythe.json b/kubejs/data/tfc/recipes/heating/metal/steel_scythe.json deleted file mode 100644 index 4b7953517..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_scythe" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/steel_scythe_blade.json deleted file mode 100644 index 287b52645..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_shears.json b/kubejs/data/tfc/recipes/heating/metal/steel_shears.json deleted file mode 100644 index bb663c994..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_sheet.json b/kubejs/data/tfc/recipes/heating/metal/steel_sheet.json deleted file mode 100644 index 1e41d8336..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_shield.json b/kubejs/data/tfc/recipes/heating/metal/steel_shield.json deleted file mode 100644 index a83a6c1dd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_shovel.json b/kubejs/data/tfc/recipes/heating/metal/steel_shovel.json deleted file mode 100644 index 963ebb2ee..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_shovel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/steel_shovel_head.json deleted file mode 100644 index ad37889d9..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_sword.json b/kubejs/data/tfc/recipes/heating/metal/steel_sword.json deleted file mode 100644 index 39678b854..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_sword" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/steel_sword_blade.json deleted file mode 100644 index 868cd43a9..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:steel_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/steel_trapdoor.json deleted file mode 100644 index eee3615e0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/steel_tuyere.json deleted file mode 100644 index a0f5a517f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 576 - }, - "temperature": 1540, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_boots.json deleted file mode 100644 index acffb18ca..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 288 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_chestplate.json deleted file mode 100644 index ebc7d8e12..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_greaves.json deleted file mode 100644 index 6809092f2..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_helmet.json deleted file mode 100644 index 001f8334a..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 576 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_lamp.json deleted file mode 100644 index 376783638..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/steel_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/steel" - }, - "result_fluid": { - "fluid": "gtceu:steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block.json deleted file mode 100644 index 44ffbb60f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/sterling_silver" - }, - "result_fluid": { - "fluid": "gtceu:sterling_silver", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_double_ingot.json deleted file mode 100644 index 299621153..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/sterling_silver" - }, - "result_fluid": { - "fluid": "gtceu:sterling_silver", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_double_sheet.json deleted file mode 100644 index 38d88623b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/sterling_silver" - }, - "result_fluid": { - "fluid": "gtceu:sterling_silver", - "amount": 576 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_ingot.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_ingot.json deleted file mode 100644 index 01ba2af10..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/sterling_silver" - }, - "result_fluid": { - "fluid": "gtceu:sterling_silver", - "amount": 144 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_rod.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_rod.json deleted file mode 100644 index f96ba1beb..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/sterling_silver" - }, - "result_fluid": { - "fluid": "gtceu:sterling_silver", - "amount": 72 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_sheet.json b/kubejs/data/tfc/recipes/heating/metal/sterling_silver_sheet.json deleted file mode 100644 index 96cf614bc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/sterling_silver_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/sterling_silver" - }, - "result_fluid": { - "fluid": "gtceu:sterling_silver", - "amount": 288 - }, - "temperature": 950 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_block.json b/kubejs/data/tfc/recipes/heating/metal/tin_block.json deleted file mode 100644 index 1e6d8e8cc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 144 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/tin_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/tin_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/tin_double_ingot.json deleted file mode 100644 index d60e0f500..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 288 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/tin_double_sheet.json deleted file mode 100644 index a2378ee67..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 576 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_ingot.json b/kubejs/data/tfc/recipes/heating/metal/tin_ingot.json deleted file mode 100644 index 5d77e5c5e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 144 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_rod.json b/kubejs/data/tfc/recipes/heating/metal/tin_rod.json deleted file mode 100644 index 765dc9b20..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 72 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/tin_sheet.json b/kubejs/data/tfc/recipes/heating/metal/tin_sheet.json deleted file mode 100644 index c9d967fd4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/tin_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 288 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/unknown_ingot.json b/kubejs/data/tfc/recipes/heating/metal/unknown_ingot.json deleted file mode 100644 index 463e0ec3f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/unknown_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/unknown" - }, - "result_fluid": { - "fluid": "tfc:metal/unknown", - "amount": 144 - }, - "temperature": 400 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/weak_blue_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/weak_blue_steel_ingot.json deleted file mode 100644 index fc70021ef..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/weak_blue_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/weak_blue_steel" - }, - "result_fluid": { - "fluid": "tfc:metal/weak_blue_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/weak_red_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/weak_red_steel_ingot.json deleted file mode 100644 index c6176db68..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/weak_red_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/weak_red_steel" - }, - "result_fluid": { - "fluid": "tfc:metal/weak_red_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/weak_steel_ingot.json b/kubejs/data/tfc/recipes/heating/metal/weak_steel_ingot.json deleted file mode 100644 index 6e950a0fc..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/weak_steel_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/ingot/weak_steel" - }, - "result_fluid": { - "fluid": "tfc:metal/weak_steel", - "amount": 144 - }, - "temperature": 1540 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_anvil.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_anvil.json deleted file mode 100644 index 434237083..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_anvil.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/anvil/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 2016 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_axe.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_axe.json deleted file mode 100644 index 914262488..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_axe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_axe" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_axe_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_axe_head.json deleted file mode 100644 index b1cd07119..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_axe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_axe_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_bars.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_bars.json deleted file mode 100644 index 5eba9abcd..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_bars.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/bars/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 36 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block.json deleted file mode 100644 index 9aae997a7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_boots.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_boots.json deleted file mode 100644 index 06d0f95c1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_boots.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/boots/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chain.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chain.json deleted file mode 100644 index 47bcf7dff..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chain.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chain/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 9 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chestplate.json deleted file mode 100644 index 73c44c934..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chestplate.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chestplate/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 1152 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chisel.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chisel.json deleted file mode 100644 index 74e31fa3c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chisel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chisel_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chisel_head.json deleted file mode 100644 index ab9382b54..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_chisel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/chisel_head/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_double_ingot.json deleted file mode 100644 index cf7903531..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_double_sheet.json deleted file mode 100644 index 27b88ce36..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_fish_hook.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_fish_hook.json deleted file mode 100644 index 06e9d924e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_fish_hook.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fish_hook/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_fishing_rod.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_fishing_rod.json deleted file mode 100644 index a6e9a65e0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_fishing_rod.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/fishing_rod/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_greaves.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_greaves.json deleted file mode 100644 index 7e9668fd1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_greaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/greaves/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 864 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hammer.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hammer.json deleted file mode 100644 index 9a2abc393..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hammer.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_hammer" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hammer_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hammer_head.json deleted file mode 100644 index 384424d61..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hammer_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_hammer_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_helmet.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_helmet.json deleted file mode 100644 index 3232b19d1..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_helmet.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/helmet/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 864 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hoe.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hoe.json deleted file mode 100644 index 17d710364..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hoe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_hoe" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hoe_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hoe_head.json deleted file mode 100644 index 7c040ddd8..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_hoe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_hoe_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_horse_armor.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_horse_armor.json deleted file mode 100644 index 898b661db..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_horse_armor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/horse_armor/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 1728 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_ingot.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_ingot.json deleted file mode 100644 index e267385e6..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_javelin.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_javelin.json deleted file mode 100644 index e8380a1f0..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_javelin.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_javelin_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_javelin_head.json deleted file mode 100644 index ea600c3b4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_javelin_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/javelin_head/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_knife.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_knife.json deleted file mode 100644 index f9fafb13b..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_knife.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_knife" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_knife_blade.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_knife_blade.json deleted file mode 100644 index 80d229a4f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_knife_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_knife_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_lamp.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_lamp.json deleted file mode 100644 index cf126329f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/lamp/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_mace.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_mace.json deleted file mode 100644 index 9cabbc055..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_mace.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_mace_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_mace_head.json deleted file mode 100644 index bfc8ba725..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_mace_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/mace_head/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_pickaxe.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_pickaxe.json deleted file mode 100644 index 195f6b872..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_pickaxe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_pickaxe" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_pickaxe_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_pickaxe_head.json deleted file mode 100644 index 7529869fe..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_pickaxe_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_pickaxe_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_propick.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_propick.json deleted file mode 100644 index 5575531e3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_propick.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_propick_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_propick_head.json deleted file mode 100644 index 7fd6d7a0d..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_propick_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/propick_head/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_rod.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_rod.json deleted file mode 100644 index 8e042ee49..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 72 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_saw.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_saw.json deleted file mode 100644 index 30041a75e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_saw.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_saw" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_saw_blade.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_saw_blade.json deleted file mode 100644 index 5ea8c222e..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_saw_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_saw_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_scythe.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_scythe.json deleted file mode 100644 index 4564eff30..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_scythe.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_scythe" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_scythe_blade.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_scythe_blade.json deleted file mode 100644 index 847cebe79..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_scythe_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_scythe_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shears.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shears.json deleted file mode 100644 index e14f276b4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shears.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shears/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sheet.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sheet.json deleted file mode 100644 index ceabb4d4f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shield.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shield.json deleted file mode 100644 index 1162282ab..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shield.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/shield/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shovel.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shovel.json deleted file mode 100644 index 4f985ba61..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shovel.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_shovel" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shovel_head.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shovel_head.json deleted file mode 100644 index 2d38d6bd4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_shovel_head.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_shovel_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sword.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sword.json deleted file mode 100644 index 0d9a6d97c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sword.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_sword" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sword_blade.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sword_blade.json deleted file mode 100644 index 7288192b7..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_sword_blade.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "gtceu:wrought_iron_sword_head" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_trapdoor.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_trapdoor.json deleted file mode 100644 index d337b1efa..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_trapdoor.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/trapdoor/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_tuyere.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_tuyere.json deleted file mode 100644 index 4d2b8e34c..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_tuyere.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/tuyere/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535, - "use_durability": true -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_boots.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_boots.json deleted file mode 100644 index a8d6462d3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_boots.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_boots/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 288 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_chestplate.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_chestplate.json deleted file mode 100644 index d87e53306..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_chestplate.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_chestplate/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_greaves.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_greaves.json deleted file mode 100644 index 7aae5c296..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_greaves.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_greaves/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_helmet.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_helmet.json deleted file mode 100644 index 2cbadc8e3..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_helmet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_helmet/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 576 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_lamp.json b/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_lamp.json deleted file mode 100644 index 8f8925b33..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/wrought_iron_unfinished_lamp.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/unfinished_lamp/wrought_iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 144 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_block.json b/kubejs/data/tfc/recipes/heating/metal/zinc_block.json deleted file mode 100644 index d23e7df32..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_block.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:storage_blocks/zinc" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 144 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_block_slab.json b/kubejs/data/tfc/recipes/heating/metal/zinc_block_slab.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_block_slab.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_block_stairs.json b/kubejs/data/tfc/recipes/heating/metal/zinc_block_stairs.json deleted file mode 100644 index 158aaa0f4..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_block_stairs.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "conditions": [ - { "type": "forge:false" } - ] -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_double_ingot.json b/kubejs/data/tfc/recipes/heating/metal/zinc_double_ingot.json deleted file mode 100644 index 748bbde78..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_double_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:metal/double_ingot/zinc" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 288 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_double_sheet.json b/kubejs/data/tfc/recipes/heating/metal/zinc_double_sheet.json deleted file mode 100644 index 3c82fe641..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_double_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/double/zinc" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 576 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_ingot.json b/kubejs/data/tfc/recipes/heating/metal/zinc_ingot.json deleted file mode 100644 index 4d187716f..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_ingot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:ingots/zinc" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 144 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_rod.json b/kubejs/data/tfc/recipes/heating/metal/zinc_rod.json deleted file mode 100644 index 0aaef8f84..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_rod.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rods/zinc" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 72 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/metal/zinc_sheet.json b/kubejs/data/tfc/recipes/heating/metal/zinc_sheet.json deleted file mode 100644 index 2a2208135..000000000 --- a/kubejs/data/tfc/recipes/heating/metal/zinc_sheet.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:plates/zinc" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 288 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_bismuthinite.json b/kubejs/data/tfc/recipes/heating/ore/normal_bismuthinite.json deleted file mode 100644 index 368008d8a..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_bismuthinite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_bismuthinite" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_cassiterite.json b/kubejs/data/tfc/recipes/heating/ore/normal_cassiterite.json deleted file mode 100644 index 0781e907e..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_cassiterite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_cassiterite" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 36 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_garnierite.json b/kubejs/data/tfc/recipes/heating/ore/normal_garnierite.json deleted file mode 100644 index 576171b1e..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_garnierite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_garnierite" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 36 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_hematite.json b/kubejs/data/tfc/recipes/heating/ore/normal_hematite.json deleted file mode 100644 index 9b6c7a3c9..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_hematite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_hematite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 36 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_limonite.json b/kubejs/data/tfc/recipes/heating/ore/normal_limonite.json deleted file mode 100644 index fb8a1ce8e..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_limonite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_limonite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 36 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_magnetite.json b/kubejs/data/tfc/recipes/heating/ore/normal_magnetite.json deleted file mode 100644 index 1baa61120..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_magnetite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_magnetite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 36 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_malachite.json b/kubejs/data/tfc/recipes/heating/ore/normal_malachite.json deleted file mode 100644 index e14e82299..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_malachite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_malachite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 36 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_native_copper.json b/kubejs/data/tfc/recipes/heating/ore/normal_native_copper.json deleted file mode 100644 index f01b0672f..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_native_copper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_native_copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 36 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_native_gold.json b/kubejs/data/tfc/recipes/heating/ore/normal_native_gold.json deleted file mode 100644 index 80d810539..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_native_gold.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_native_gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 36 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_native_silver.json b/kubejs/data/tfc/recipes/heating/ore/normal_native_silver.json deleted file mode 100644 index 47c619a11..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_native_silver.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_native_silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 36 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_sphalerite.json b/kubejs/data/tfc/recipes/heating/ore/normal_sphalerite.json deleted file mode 100644 index e48f68c40..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_sphalerite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_sphalerite" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 36 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/normal_tetrahedrite.json b/kubejs/data/tfc/recipes/heating/ore/normal_tetrahedrite.json deleted file mode 100644 index fa8028c70..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/normal_tetrahedrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/normal_tetrahedrite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 36 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_bismuthinite.json b/kubejs/data/tfc/recipes/heating/ore/poor_bismuthinite.json deleted file mode 100644 index 78f3bde1e..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_bismuthinite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_bismuthinite" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_cassiterite.json b/kubejs/data/tfc/recipes/heating/ore/poor_cassiterite.json deleted file mode 100644 index a151b448d..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_cassiterite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_cassiterite" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 24 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_garnierite.json b/kubejs/data/tfc/recipes/heating/ore/poor_garnierite.json deleted file mode 100644 index a943c17f5..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_garnierite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_garnierite" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 24 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_hematite.json b/kubejs/data/tfc/recipes/heating/ore/poor_hematite.json deleted file mode 100644 index a807e1ef1..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_hematite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_hematite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 24 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_limonite.json b/kubejs/data/tfc/recipes/heating/ore/poor_limonite.json deleted file mode 100644 index eda4e2b2f..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_limonite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_limonite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 24 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_magnetite.json b/kubejs/data/tfc/recipes/heating/ore/poor_magnetite.json deleted file mode 100644 index 52b24c1bd..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_magnetite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_magnetite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 24 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_malachite.json b/kubejs/data/tfc/recipes/heating/ore/poor_malachite.json deleted file mode 100644 index df5e0b557..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_malachite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_malachite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 24 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_native_copper.json b/kubejs/data/tfc/recipes/heating/ore/poor_native_copper.json deleted file mode 100644 index fc979d02e..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_native_copper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_native_copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 24 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_native_gold.json b/kubejs/data/tfc/recipes/heating/ore/poor_native_gold.json deleted file mode 100644 index 9e2509365..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_native_gold.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_native_gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 24 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_native_silver.json b/kubejs/data/tfc/recipes/heating/ore/poor_native_silver.json deleted file mode 100644 index c1a3eec60..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_native_silver.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_native_silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 24 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_sphalerite.json b/kubejs/data/tfc/recipes/heating/ore/poor_sphalerite.json deleted file mode 100644 index 279ad9eeb..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_sphalerite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_sphalerite" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 24 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/poor_tetrahedrite.json b/kubejs/data/tfc/recipes/heating/ore/poor_tetrahedrite.json deleted file mode 100644 index 14e78c643..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/poor_tetrahedrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/poor_tetrahedrite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 24 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_bismuthinite.json b/kubejs/data/tfc/recipes/heating/ore/rich_bismuthinite.json deleted file mode 100644 index c3b8c8a7e..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_bismuthinite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_bismuthinite" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_cassiterite.json b/kubejs/data/tfc/recipes/heating/ore/rich_cassiterite.json deleted file mode 100644 index f35a81434..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_cassiterite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_cassiterite" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 48 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_garnierite.json b/kubejs/data/tfc/recipes/heating/ore/rich_garnierite.json deleted file mode 100644 index 07680b3fe..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_garnierite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_garnierite" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 48 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_hematite.json b/kubejs/data/tfc/recipes/heating/ore/rich_hematite.json deleted file mode 100644 index b3099cf2d..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_hematite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_hematite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 48 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_limonite.json b/kubejs/data/tfc/recipes/heating/ore/rich_limonite.json deleted file mode 100644 index d0d230964..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_limonite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_limonite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 48 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_magnetite.json b/kubejs/data/tfc/recipes/heating/ore/rich_magnetite.json deleted file mode 100644 index bc6ef42b3..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_magnetite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_magnetite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 48 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_malachite.json b/kubejs/data/tfc/recipes/heating/ore/rich_malachite.json deleted file mode 100644 index 32dc50253..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_malachite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_malachite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 48 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_native_copper.json b/kubejs/data/tfc/recipes/heating/ore/rich_native_copper.json deleted file mode 100644 index 91d5b2e98..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_native_copper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_native_copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 48 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_native_gold.json b/kubejs/data/tfc/recipes/heating/ore/rich_native_gold.json deleted file mode 100644 index 287f73efb..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_native_gold.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_native_gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 48 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_native_silver.json b/kubejs/data/tfc/recipes/heating/ore/rich_native_silver.json deleted file mode 100644 index 8d74d08b5..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_native_silver.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_native_silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 48 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_sphalerite.json b/kubejs/data/tfc/recipes/heating/ore/rich_sphalerite.json deleted file mode 100644 index fec8b1892..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_sphalerite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_sphalerite" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 48 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/rich_tetrahedrite.json b/kubejs/data/tfc/recipes/heating/ore/rich_tetrahedrite.json deleted file mode 100644 index 5a3941326..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/rich_tetrahedrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/rich_tetrahedrite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 48 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_bismuthinite.json b/kubejs/data/tfc/recipes/heating/ore/small_bismuthinite.json deleted file mode 100644 index 3d68d1fdf..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_bismuthinite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_bismuthinite" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 14 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_cassiterite.json b/kubejs/data/tfc/recipes/heating/ore/small_cassiterite.json deleted file mode 100644 index 2c345db69..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_cassiterite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_cassiterite" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 14 - }, - "temperature": 230 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_garnierite.json b/kubejs/data/tfc/recipes/heating/ore/small_garnierite.json deleted file mode 100644 index 304505510..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_garnierite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_garnierite" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 14 - }, - "temperature": 1453 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_hematite.json b/kubejs/data/tfc/recipes/heating/ore/small_hematite.json deleted file mode 100644 index 8672ff4a4..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_hematite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_hematite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 14 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_limonite.json b/kubejs/data/tfc/recipes/heating/ore/small_limonite.json deleted file mode 100644 index 7933af16c..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_limonite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_limonite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 14 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_magnetite.json b/kubejs/data/tfc/recipes/heating/ore/small_magnetite.json deleted file mode 100644 index 09608cf9a..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_magnetite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_magnetite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 14 - }, - "temperature": 1535 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_malachite.json b/kubejs/data/tfc/recipes/heating/ore/small_malachite.json deleted file mode 100644 index 4162e88fd..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_malachite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_malachite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 14 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_native_copper.json b/kubejs/data/tfc/recipes/heating/ore/small_native_copper.json deleted file mode 100644 index b72f0f7c9..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_native_copper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_native_copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 14 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_native_gold.json b/kubejs/data/tfc/recipes/heating/ore/small_native_gold.json deleted file mode 100644 index a9356b4ad..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_native_gold.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_native_gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 14 - }, - "temperature": 1060 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_native_silver.json b/kubejs/data/tfc/recipes/heating/ore/small_native_silver.json deleted file mode 100644 index 8908abbc9..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_native_silver.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_native_silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 14 - }, - "temperature": 961 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_sphalerite.json b/kubejs/data/tfc/recipes/heating/ore/small_sphalerite.json deleted file mode 100644 index 5325bf7fa..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_sphalerite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_sphalerite" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 14 - }, - "temperature": 420 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/small_tetrahedrite.json b/kubejs/data/tfc/recipes/heating/ore/small_tetrahedrite.json deleted file mode 100644 index c0a6abb8a..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/small_tetrahedrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "item": "tfc:ore/small_tetrahedrite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 14 - }, - "temperature": 1080 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_bismuth.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_bismuth.json deleted file mode 100644 index 658e1a8fc..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_bismuth.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_cassiterite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_cassiterite.json deleted file mode 100644 index 3984aec71..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_cassiterite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/cassiterite" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_copper.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_copper.json deleted file mode 100644 index 310eda786..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_copper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_garnierite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_garnierite.json deleted file mode 100644 index c31943c79..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_garnierite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/garnierite" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 32 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_gold.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_gold.json deleted file mode 100644 index a85b73007..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_gold.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_hematite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_hematite.json deleted file mode 100644 index 2e30d4775..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_hematite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/hematite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 28 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_iron.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_iron.json deleted file mode 100644 index 8ec04a913..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_iron.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_limonite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_limonite.json deleted file mode 100644 index e739edeff..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_limonite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/yellow_limonite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 34 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_magnetite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_magnetite.json deleted file mode 100644 index 9d6c34e33..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_magnetite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/magnetite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 30 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_malachite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_malachite.json deleted file mode 100644 index 5b0161e62..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_malachite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/malachite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 34 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_nickel.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_nickel.json deleted file mode 100644 index 81e89a158..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_nickel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_pyrite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_pyrite.json deleted file mode 100644 index 6067e6408..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_pyrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/pyrite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 26 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_silver.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_silver.json deleted file mode 100644 index 6aa21d72b..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_silver.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_sphalerite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_sphalerite.json deleted file mode 100644 index a1d9bc921..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_sphalerite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/sphalerite" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_tetrahedrite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_tetrahedrite.json deleted file mode 100644 index 6f9e29772..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_tetrahedrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/tetrahedrite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 30 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_tin.json b/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_tin.json deleted file mode 100644 index fe77c5a4c..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_normal_raw_tin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:raw_materials/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 36 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_bismuth.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_bismuth.json deleted file mode 100644 index f85dae0a1..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_bismuth.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_cassiterite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_cassiterite.json deleted file mode 100644 index b07ff49ce..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_cassiterite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/cassiterite" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_copper.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_copper.json deleted file mode 100644 index decc35686..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_copper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_garnierite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_garnierite.json deleted file mode 100644 index d97b67d73..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_garnierite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/garnierite" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 20 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_gold.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_gold.json deleted file mode 100644 index 20153c11c..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_gold.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_hematite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_hematite.json deleted file mode 100644 index 6f96eb86f..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_hematite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/hematite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 16 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_iron.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_iron.json deleted file mode 100644 index cb96b29f3..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_iron.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_limonite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_limonite.json deleted file mode 100644 index 235fc7f56..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_limonite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/yellow_limonite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 22 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_magnetite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_magnetite.json deleted file mode 100644 index b44089581..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_magnetite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/magnetite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 18 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_malachite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_malachite.json deleted file mode 100644 index f97965e06..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_malachite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/malachite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 22 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_nickel.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_nickel.json deleted file mode 100644 index b803f2c94..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_nickel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_pyrite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_pyrite.json deleted file mode 100644 index 6d0369bb3..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_pyrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/pyrite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 14 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_silver.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_silver.json deleted file mode 100644 index 0fa9e7ab7..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_silver.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_sphalerite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_sphalerite.json deleted file mode 100644 index bfe1e2645..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_sphalerite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/sphalerite" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_tetrahedrite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_tetrahedrite.json deleted file mode 100644 index a8fea045a..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_tetrahedrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/tetrahedrite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 18 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_tin.json b/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_tin.json deleted file mode 100644 index b1ed351b4..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_poor_raw_tin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:poor_raw_materials/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 24 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_bismuth.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_bismuth.json deleted file mode 100644 index 4b03826e3..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_bismuth.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/bismuth" - }, - "result_fluid": { - "fluid": "gtceu:bismuth", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_cassiterite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_cassiterite.json deleted file mode 100644 index b6c8996b9..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_cassiterite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/cassiterite" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_copper.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_copper.json deleted file mode 100644 index ba630ea64..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_copper.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/copper" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_garnierite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_garnierite.json deleted file mode 100644 index b4656215d..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_garnierite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/garnierite" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 44 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_gold.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_gold.json deleted file mode 100644 index ab5273168..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_gold.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/gold" - }, - "result_fluid": { - "fluid": "gtceu:gold", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_hematite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_hematite.json deleted file mode 100644 index ca2639e5c..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_hematite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/hematite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 40 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_iron.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_iron.json deleted file mode 100644 index 960c333d1..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_iron.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/iron" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_limonite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_limonite.json deleted file mode 100644 index 4e23a23e5..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_limonite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/yellow_limonite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 46 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_magnetite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_magnetite.json deleted file mode 100644 index 79e0822b5..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_magnetite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/magnetite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 42 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_malachite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_malachite.json deleted file mode 100644 index 4b53be3f1..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_malachite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/malachite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 46 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_nickel.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_nickel.json deleted file mode 100644 index d6c7dbf22..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_nickel.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/nickel" - }, - "result_fluid": { - "fluid": "gtceu:nickel", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_pyrite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_pyrite.json deleted file mode 100644 index 7b8c402ce..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_pyrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/pyrite" - }, - "result_fluid": { - "fluid": "gtceu:iron", - "amount": 38 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_silver.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_silver.json deleted file mode 100644 index c2548f516..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_silver.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/silver" - }, - "result_fluid": { - "fluid": "gtceu:silver", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_sphalerite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_sphalerite.json deleted file mode 100644 index 0328e7984..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_sphalerite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/sphalerite" - }, - "result_fluid": { - "fluid": "gtceu:zinc", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_tetrahedrite.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_tetrahedrite.json deleted file mode 100644 index 371bab063..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_tetrahedrite.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/tetrahedrite" - }, - "result_fluid": { - "fluid": "gtceu:copper", - "amount": 40 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_tin.json b/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_tin.json deleted file mode 100644 index 4597e83b0..000000000 --- a/kubejs/data/tfc/recipes/heating/ore/tfg_rich_raw_tin.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "type": "tfc:heating", - "ingredient": { - "tag": "forge:rich_raw_materials/tin" - }, - "result_fluid": { - "fluid": "gtceu:tin", - "amount": 48 - }, - "temperature": 270 -} \ No newline at end of file diff --git a/kubejs/server_scripts/create/recipes.js b/kubejs/server_scripts/create/recipes.js index 12e3a3063..e410a6d02 100644 --- a/kubejs/server_scripts/create/recipes.js +++ b/kubejs/server_scripts/create/recipes.js @@ -1,6 +1,7 @@ // priority: 0 const registerCreateRecipes = (event) => { + // Удаление рецептов мода create event.remove({ mod: 'create' }); @@ -34,12 +35,13 @@ const registerCreateRecipes = (event) => { B: 'gtceu:wood_gear', }); + // todo: использовать ютилити методы для создания рецептов ниже (порядок, heatItem -> heatRecipe -> любые другие тфкшные) // galvanized_iron - customWelding(event, ["forge:ingots/iron", "forge:plates/zinc"], "kubejs:galvanized_iron", 3); - customWelding(event, ["forge:ingots/wrought_iron", "forge:plates/zinc"], "kubejs:galvanized_iron", 3); - customHeating(event, "forge:ingots/galvanized_iron", ["tfc:metal/wrought_iron", 144], 1400); + //customWelding(event, ["forge:ingots/iron", "forge:plates/zinc"], "kubejs:galvanized_iron", 3); + //customWelding(event, ["forge:ingots/wrought_iron", "forge:plates/zinc"], "kubejs:galvanized_iron", 3); + //customHeating(event, "forge:ingots/galvanized_iron", ["tfc:metal/wrought_iron", 144], 1400); //customHeatLevel(event,"forge:ingots/galvanized_iron", 5.714, 921, 1228); //shaft craft - customAnvil(event, "forge:ingots/galvanized_iron", ["create:shaft", 4], 3, ["hit_last", "hit_second_last", "hit_third_last"]); + //customAnvil(event, "forge:ingots/galvanized_iron", ["create:shaft", 4], 3, ["hit_last", "hit_second_last", "hit_third_last"]); } \ No newline at end of file diff --git a/kubejs/server_scripts/mainServerScript.js b/kubejs/server_scripts/mainServerScript.js index e12b086b9..208e3c86a 100644 --- a/kubejs/server_scripts/mainServerScript.js +++ b/kubejs/server_scripts/mainServerScript.js @@ -1,27 +1,87 @@ // priority: 499 +/** + * Здесь регистрируются файлы датапаков (json). + * Срабатывает до инициализации рецептов. + */ ServerEvents.highPriorityData(event => { registerTFCData(event) }) +/** + * Здесь регистрируются тэги для блоков. + */ ServerEvents.tags('block', event => { }) +/** + * Здесь регистрируются тэги для предметов. + */ ServerEvents.tags('item', event => { registerCreateTags(event) registerTFCTags(event) }) +/** + * Здесь регистрируются рецепты (те же датапаки, но это событие немного специфичней). + * Срабатывает после инициализации датапаков. + */ ServerEvents.recipes(event => { registerSBRecipes(event) registerCreateRecipes(event) registerExtendedCraftingRecipes(event) registerMinecraftRecipes(event) registerTFCRecipes(event) - registersophisticatedbackpacksRecipes(event) }) +/** + * Здесь регистрируется кастомный дроп. + */ LootJS.modifiers((event) => { modifyLootGT(event) -}); \ No newline at end of file +}); + +/** + * Смываем за разрабами GTCEu и исправляем их баги. + * Баги: + * 1. Не работает очистка дерева от коры. + * 2. Не работает очистка меди от меда. + * 3. Не работает очистка меди от ржавчины. + */ +ItemEvents.rightClicked(event => { + const block = event.getTarget().block + const item = event.getItem() + + const blockId = block.getId() + const axeItemTagName = "tfc:axes" + + if (block == undefined) return; + + if (item.hasTag(axeItemTagName)) + { + // Wood, Log -> Bark + if (blockId.includes("tfc:wood/log/")) + { + const woodName = block.getId().split('/')[2] + + block.set("tfc:wood/stripped_log/" + woodName, block.getProperties()) + } + else if (blockId.includes("tfc:wood/wood/")) + { + const woodName = blockId.split('/')[2] + + block.set("tfc:wood/stripped_wood/" + woodName, block.getProperties()) + } + // Wax Scrapping + else if (false) + { + // todo + } + // Scrap Scrapping + else if (false) + { + // todo + } + } +}) \ No newline at end of file diff --git a/kubejs/server_scripts/sb/recipes.js b/kubejs/server_scripts/sb/recipes.js index cda2728fc..0d2284fe2 100644 --- a/kubejs/server_scripts/sb/recipes.js +++ b/kubejs/server_scripts/sb/recipes.js @@ -1,7 +1,297 @@ // priority: 0 const registerSBRecipes = (event) => { - event.remove({ id: 'sophisticatedbackpacks:netherite_backpack' }) - event.remove({ id: 'sophisticatedbackpacks:stack_upgrade_tier_4' }) + + // Удаление рецептов мода sophisticatedBackpacks + event.remove({ mod: 'sophisticatedbackpacks' }); + + // Рюкзаки + + // Базовый рюкзак + event.shaped('sophisticatedbackpacks:backpack', [ + 'ABD', + 'ACA', + 'BBB' + ], { + A: '#forge:string', + B: 'minecraft:leather', + C: '#forge:chests/wooden', + D: 'minecraft:name_tag' + }); + + // Железный рюкзак + event.shaped('sophisticatedbackpacks:iron_backpack', [// arg 1: output + 'ABA', + 'BCB', // arg 2: the shape (array of strings) + 'ABA' + ], { + A: '#forge:plates/double/wrought_iron', + B: '#forge:rods/long/wrought_iron', //arg 3: the mapping object + C: 'sophisticatedbackpacks:backpack' + }); + + // Золотой рюкзак + event.shaped('sophisticatedbackpacks:gold_backpack', [ + 'ABA', + 'CDC', + 'AEA' + ], { + A: '#forge:plates/double/rose_gold', + B: '#forge:rods/long/sterling_silver', + C: '#forge:rods/long/gold', + D: 'sophisticatedbackpacks:iron_backpack', + E: '#forge:plates/double/steel' + }); + + // Алмазный рюкзак + event.shaped('sophisticatedbackpacks:diamond_backpack', [ + 'ABA', + 'BCB', + 'ABA' + ], { + A: '#forge:plates/double/black_steel', + B: '#forge:rods/long/black_steel', + C: 'sophisticatedbackpacks:gold_backpack' + }); + // Незеритовый рюкзак + event.shaped('sophisticatedbackpacks:netherite_backpack', [ + 'ABC', + 'DED', + 'CBA' + ], { + A: '#forge:plates/double/blue_steel', + B: '#forge:rods/long/red_steel', + C: '#forge:plates/double/red_steel', + D: '#forge:rods/long/blue_steel', + E: 'sophisticatedbackpacks:diamond_backpack' + }); + + + // Апгрейды + + // База для улучшений + event.shaped('sophisticatedbackpacks:upgrade_base', [ + 'ABA', + 'BCB', + 'ADA' + ], { + A: '#forge:string', + B: '#forge:rods/long/wrought_iron', + C: 'minecraft:leather', + D: '#forge:plates/steel' + }); + + // Улучшение - подбиратель + event.shaped('sophisticatedbackpacks:pickup_upgrade', [ + 'ABA', + 'CDE', + 'FGF' + ], { + A: 'gtceu:hv_electric_motor', + B: 'gtceu:mercury_barium_calcium_cuprate_single_wire', + C: 'gtceu:hv_conveyor_module', + D: 'sophisticatedbackpacks:upgrade_base', + E: 'gtceu:hv_robot_arm', + F: '#forge:circuits/hv', + G: '#forge:batteries/hv' + }); + + // Улучшение - улучшенный подбиратель + event.shapeless('sophisticatedbackpacks:advanced_pickup_upgrade', [ + 'sophisticatedbackpacks:pickup_upgrade', + '#forge:circuits/ev' + ]); + + // Улучшение - фильтр + event.shaped('sophisticatedbackpacks:filter_upgrade', [ + 'ABC', + 'DEF', + 'GHG' + ], { + A: '#forge:batteries/lv', + B: 'gtceu:item_filter', + C: 'gtceu:manganese_phosphide_single_wire', + D: 'gtceu:lv_conveyor_module', + E: 'sophisticatedbackpacks:upgrade_base', + F: 'gtceu:lv_robot_arm', + G: '#forge:circuits/lv', + H: 'gtceu:item_tag_filter' + }); + + // Улучшение - улучшенный фильтр + event.shapeless('sophisticatedbackpacks:advanced_filter_upgrade', [ + 'sophisticatedbackpacks:filter_upgrade', + '#forge:circuits/mv' + ]); + + // Улучшение - магнит + event.shaped('sophisticatedbackpacks:magnet_upgrade', [ + 'ABA', + 'CDC', + 'AEA' + ], { + A: 'gtceu:hv_robot_arm', + B: 'gtceu:item_filter', + C: '#forge:circuits/hv', + D: 'sophisticatedbackpacks:upgrade_base', + E: '#forge:batteries/hv' + }); + + // Улучшение - улучшенный магнит + event.shapeless('sophisticatedbackpacks:advanced_magnet_upgrade', [ + 'sophisticatedbackpacks:magnet_upgrade', + '#forge:circuits/ev' + ]); + + // Улучшение - уничтожитель + event.shaped('sophisticatedbackpacks:void_upgrade', [ + 'ABA', + 'CDE', + 'FGF' + ], { + A: '#forge:screws/steel', + B: 'gtceu:item_detector_cover', + C: '#forge:tools/screwdrivers', + D: 'sophisticatedbackpacks:upgrade_base', + E: '#forge:tools/wrenches', + F: 'gtceu:brass_normal_item_pipe', + G: '#forge:ender_pearls' + }); + + // Улучшение - улучшенный уничтожитель + event.shapeless('sophisticatedbackpacks:advanced_void_upgrade', [ + 'sophisticatedbackpacks:void_upgrade', + '#forge:circuits/mv' + ]); + + // Улучшение - Deposit + event.shaped('sophisticatedbackpacks:deposit_upgrade', [ + 'ABC', + 'DED', + ' F ' + ], { + A: '#forge:batteries/lv', + B: 'gtceu:manganese_phosphide_single_wire', + C: '#forge:circuits/lv', + D: 'gtceu:lv_conveyor_module', + E: 'sophisticatedbackpacks:upgrade_base', + F: 'gtceu:lv_robot_arm' + }); + + // Улучшение - улучшенный Deposit + event.shapeless('sophisticatedbackpacks:advanced_deposit_upgrade', [ + 'sophisticatedbackpacks:deposit_upgrade', + '#forge:circuits/mv' + ]); + + // Улучшение - Restock + event.shaped('sophisticatedbackpacks:restock_upgrade', [ + ' A ', + 'BCB', + 'DEF' + ], { + A: 'gtceu:lv_robot_arm', + B: 'gtceu:lv_conveyor_module', + C: 'sophisticatedbackpacks:upgrade_base', + D: '#forge:batteries/lv', + E: 'gtceu:manganese_phosphide_single_wire', + F: '#forge:circuits/lv', + }); + + // Улучшение - улучшенный Restock + event.shapeless('sophisticatedbackpacks:advanced_restock_upgrade', [ + 'sophisticatedbackpacks:restock_upgrade', + '#forge:circuits/mv' + ]); + + // Улучшение - Refill + event.shaped('sophisticatedbackpacks:refill_upgrade', [ + 'ABC', + 'DED', + 'CBA' + ], { + A: 'gtceu:manganese_phosphide_single_wire', + B: '#forge:circuits/lv', + C: '#forge:batteries/lv', + D: 'gtceu:lv_robot_arm', + E: 'sophisticatedbackpacks:upgrade_base' + }); + + // Улучшение - улучшенный Refill + event.shapeless('sophisticatedbackpacks:advanced_refill_upgrade', [ + 'sophisticatedbackpacks:refill_upgrade', + '#forge:circuits/mv' + ]); + + // Улучшение - Everlasting + event.shaped('sophisticatedbackpacks:everlasting_upgrade', [ + 'ABC', + 'BDB', + 'EBA' + ], { + A: 'gtceu:zpm_field_generator', + B: '#forge:plates/neutronium', + C: '#forge:circuits/zpm', + D: 'sophisticatedbackpacks:upgrade_base', + E: '#forge:batteries/zpm' + }); + + // Улучшение - верстак + event.shaped('sophisticatedbackpacks:crafting_upgrade', [ + 'ABA', + 'CDC', + 'ACA' + ], { + A: '#forge:rods/steel', + B: '#tfc:workbenches', + C: '#forge:plates/steel', + D: 'sophisticatedbackpacks:upgrade_base', + }); + + // Улучшение - Stack Lvl. 1 + event.shaped('sophisticatedbackpacks:stack_upgrade_tier_1', [ + 'ABA', + 'CDC', + 'AEA' + ], { + A: '#forge:circuits/iv', + B: 'gtceu:samarium_iron_arsenic_oxide_single_wire', + C: '#forge:batteries/iv', + D: 'sophisticatedbackpacks:upgrade_base', + E: 'gtceu:iv_field_generator' + }); + + // Улучшение - проигрыватель + event.shaped('sophisticatedbackpacks:jukebox_upgrade', [ + 'ABA', + 'CDC', + 'ACA' + ], { + A: '#forge:rods/steel', + B: 'minecraft:jukebox', + C: '#forge:plates/steel', + D: 'sophisticatedbackpacks:upgrade_base', + }); + + // Улучшение - ToolSwapper + event.shaped('sophisticatedbackpacks:tool_swapper_upgrade', [ + 'ABC', + 'DEF', + 'CGA' + ], { + A: '#forge:circuits/lv', + B: '#minecraft:pickaxes', + C: 'gtceu:lv_robot_arm', + D: '#minecraft:hoes', + E: 'sophisticatedbackpacks:upgrade_base', + F: '#minecraft:shovels', + G: '#minecraft:axes', + }); + + // Улучшение - улучшенный ToolSwapper + event.shapeless('sophisticatedbackpacks:advanced_tool_swapper_upgrade', [ + 'sophisticatedbackpacks:tool_swapper_upgrade', + '#forge:circuits/mv' + ]); } \ No newline at end of file diff --git a/kubejs/server_scripts/sophisticatedbackback/recipes.js b/kubejs/server_scripts/sophisticatedbackback/recipes.js deleted file mode 100644 index 8599b5f92..000000000 --- a/kubejs/server_scripts/sophisticatedbackback/recipes.js +++ /dev/null @@ -1,298 +0,0 @@ -const registersophisticatedbackpacksRecipes = (event) => { - -// Удаление рецептов мода sophisticatedbackpacks - - event.remove({ mod: 'sophisticatedbackpacks' }); - - -//изменение крафтов рюкзаков - - //измененный крафт БАЗОВОГО рюкзака - event.shaped('sophisticatedbackpacks:backpack', [ - 'ABD', - 'ACA', - 'BBB' - ], { - A: '#forge:string', - B: 'minecraft:leather', - C: '#forge:chests/wooden', - D: 'minecraft:name_tag' - }); - - //измененный крафт ЖЕЛЕЗНОГО рюкзака - event.shaped('sophisticatedbackpacks:iron_backpack', [// arg 1: output - 'ABA', - 'BCB', // arg 2: the shape (array of strings) - 'ABA' - ], { - A: '#forge:plates/double/wrought_iron', - B: '#forge:rods/long/wrought_iron', //arg 3: the mapping object - C: 'sophisticatedbackpacks:backpack' - }); - - //измененный крафт ЗОЛОТОГО рюкзака - event.shaped('sophisticatedbackpacks:gold_backpack', [ - 'ABA', - 'CDC', - 'AEA' - ], { - A: '#forge:plates/double/rose_gold', - B: '#forge:rods/long/sterling_silver', - C: '#forge:rods/long/gold', - D: 'sophisticatedbackpacks:iron_backpack', - E: '#forge:plates/double/steel' - }); - - //измененный крафт АЛМАЗНОГО рюкзака - event.shaped('sophisticatedbackpacks:diamond_backpack', [ - 'ABA', - 'BCB', - 'ABA' - ], { - A: '#forge:plates/double/black_steel', - B: '#forge:rods/long/black_steel', - C: 'sophisticatedbackpacks:gold_backpack' - }); - - //измененный крафт НЕЗЕРИТОВОГО рюкзака - event.shaped('sophisticatedbackpacks:netherite_backpack', [ - 'ABC', - 'DED', - 'CBA' - ], { - A: '#forge:plates/double/blue_steel', - B: '#forge:rods/long/red_steel', - C: '#forge:plates/double/red_steel', - D: '#forge:rods/long/blue_steel', - E: 'sophisticatedbackpacks:diamond_backpack' - }); - - -//изменение крафтов апгрейдов - - //измененный крафт upgrade_base - event.shaped('sophisticatedbackpacks:upgrade_base', [ - 'ABA', - 'BCB', - 'ADA' - ], { - A: '#forge:string', - B: '#forge:rods/long/wrought_iron', - C: 'minecraft:leather', - D: '#forge:plates/steel' - }); - - //измененный крафт pickup_upgrade - event.shaped('sophisticatedbackpacks:pickup_upgrade', [ - 'ABA', - 'CDE', - 'FGF' - ], { - A: 'gtceu:hv_electric_motor', - B: 'gtceu:mercury_barium_calcium_cuprate_single_wire', - C: 'gtceu:hv_conveyor_module', - D: 'sophisticatedbackpacks:upgrade_base', - E: 'gtceu:hv_robot_arm', - F: '#forge:circuits/hv', - G: '#forge:batteries/hv' - }); - - //измененный крафт advanced_pickup_upgrade - event.shapeless('sophisticatedbackpacks:advanced_pickup_upgrade', [ - 'sophisticatedbackpacks:pickup_upgrade', - '#forge:circuits/ev' - ]); - - //измененный крафт filter_upgrade - event.shaped('sophisticatedbackpacks:filter_upgrade', [ - 'ABC', - 'DEF', - 'GHG' - ], { - A: '#forge:batteries/lv', - B: 'gtceu:item_filter', - C: 'gtceu:manganese_phosphide_single_wire', - D: 'gtceu:lv_conveyor_module', - E: 'sophisticatedbackpacks:upgrade_base', - F: 'gtceu:lv_robot_arm', - G: '#forge:circuits/lv', - H: 'gtceu:item_tag_filter' - }); - - //измененный крафт advanced_filter_upgrade - event.shapeless('sophisticatedbackpacks:advanced_filter_upgrade', [ - 'sophisticatedbackpacks:filter_upgrade', - '#forge:circuits/mv' - ]); - - //измененный крафт magnet_upgrade - event.shaped('sophisticatedbackpacks:magnet_upgrade', [ - 'ABA', - 'CDC', - 'AEA' - ], { - A: 'gtceu:hv_robot_arm', - B: 'gtceu:item_filter', - C: '#forge:circuits/hv', - D: 'sophisticatedbackpacks:upgrade_base', - E: '#forge:batteries/hv' - }); - - //измененный крафт advanced_magnet_upgrade - event.shapeless('sophisticatedbackpacks:advanced_magnet_upgrade', [ - 'sophisticatedbackpacks:magnet_upgrade', - '#forge:circuits/ev' - ]); - - //измененный крафт void_upgrade - event.shaped('sophisticatedbackpacks:void_upgrade', [ - 'ABA', - 'CDE', - 'FGF' - ], { - A: '#forge:screws/steel', - B: 'gtceu:item_detector_cover', - C: '#forge:tools/screwdrivers', - D: 'sophisticatedbackpacks:upgrade_base', - E: '#forge:tools/wrenches', - F: 'gtceu:brass_normal_item_pipe', - G: '#forge:ender_pearls' - }); - - //измененный крафт advanced_void_upgrade - event.shapeless('sophisticatedbackpacks:advanced_void_upgrade', [ - 'sophisticatedbackpacks:void_upgrade', - '#forge:circuits/mv' - ]); - - //измененный крафт deposit_upgrade - event.shaped('sophisticatedbackpacks:deposit_upgrade', [ - 'ABC', - 'DED', - ' F ' - ], { - A: '#forge:batteries/lv', - B: 'gtceu:manganese_phosphide_single_wire', - C: '#forge:circuits/lv', - D: 'gtceu:lv_conveyor_module', - E: 'sophisticatedbackpacks:upgrade_base', - F: 'gtceu:lv_robot_arm' - }); - - //измененный крафт advanced_deposit_upgrade - event.shapeless('sophisticatedbackpacks:advanced_deposit_upgrade', [ - 'sophisticatedbackpacks:deposit_upgrade', - '#forge:circuits/mv' - ]); - - //измененный крафт restock_upgrade - event.shaped('sophisticatedbackpacks:restock_upgrade', [ - ' A ', - 'BCB', - 'DEF' - ], { - A: 'gtceu:lv_robot_arm', - B: 'gtceu:lv_conveyor_module', - C: 'sophisticatedbackpacks:upgrade_base', - D: '#forge:batteries/lv', - E: 'gtceu:manganese_phosphide_single_wire', - F: '#forge:circuits/lv', - }); - - //измененный крафт advanced_restock_upgrade - event.shapeless('sophisticatedbackpacks:advanced_restock_upgrade', [ - 'sophisticatedbackpacks:restock_upgrade', - '#forge:circuits/mv' - ]); - - //измененный крафт refill_upgrade - event.shaped('sophisticatedbackpacks:refill_upgrade', [ - 'ABC', - 'DED', - 'CBA' - ], { - A: 'gtceu:manganese_phosphide_single_wire', - B: '#forge:circuits/lv', - C: '#forge:batteries/lv', - D: 'gtceu:lv_robot_arm', - E: 'sophisticatedbackpacks:upgrade_base' - }); - - //измененный крафт advanced_refill_upgrade - event.shapeless('sophisticatedbackpacks:advanced_refill_upgrade', [ - 'sophisticatedbackpacks:refill_upgrade', - '#forge:circuits/mv' - ]); - - //измененный крафт everlasting_upgrade - event.shaped('sophisticatedbackpacks:everlasting_upgrade', [ - 'ABC', - 'BDB', - 'EBA' - ], { - A: 'gtceu:zpm_field_generator', - B: '#forge:plates/neutronium', - C: '#forge:circuits/zpm', - D: 'sophisticatedbackpacks:upgrade_base', - E: '#forge:batteries/zpm' - }); - - //измененный крафт crafting_upgrade - event.shaped('sophisticatedbackpacks:crafting_upgrade', [ - 'ABA', - 'CDC', - 'ACA' - ], { - A: '#forge:rods/steel', - B: '#tfc:workbenches', - C: '#forge:plates/steel', - D: 'sophisticatedbackpacks:upgrade_base', - }); - - //измененный крафт stack_upgrade_tier_1 - event.shaped('sophisticatedbackpacks:stack_upgrade_tier_1', [ - 'ABA', - 'CDC', - 'AEA' - ], { - A: '#forge:circuits/iv', - B: 'gtceu:samarium_iron_arsenic_oxide_single_wire', - C: '#forge:batteries/iv', - D: 'sophisticatedbackpacks:upgrade_base', - E: 'gtceu:iv_field_generator' - }); - - //измененный крафт jukebox_upgrade - event.shaped('sophisticatedbackpacks:jukebox_upgrade', [ - 'ABA', - 'CDC', - 'ACA' - ], { - A: '#forge:rods/steel', - B: 'minecraft:jukebox', - C: '#forge:plates/steel', - D: 'sophisticatedbackpacks:upgrade_base', - }); - - //измененный крафт tool_swapper_upgrade - event.shaped('sophisticatedbackpacks:tool_swapper_upgrade', [ - 'ABC', - 'DEF', - 'CGA' - ], { - A: '#forge:circuits/lv', - B: '#minecraft:pickaxes', - C: 'gtceu:lv_robot_arm', - D: '#minecraft:hoes', - E: 'sophisticatedbackpacks:upgrade_base', - F: '#minecraft:shovels', - G: '#minecraft:axes', - }); - - //измененный крафт advanced_tool_swapper_upgrade - event.shapeless('sophisticatedbackpacks:advanced_tool_swapper_upgrade', [ - 'sophisticatedbackpacks:tool_swapper_upgrade', - '#forge:circuits/mv' - ]); -//все крафты данного мода были изменены или удалены. -} \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/constants.js b/kubejs/server_scripts/tfc/constants.js index c5e93f960..b17e80da0 100644 --- a/kubejs/server_scripts/tfc/constants.js +++ b/kubejs/server_scripts/tfc/constants.js @@ -1,178 +1,400 @@ // priority: 0 -const defaultProperty = [ - "ingot" -] - -const partProperty = [ - "double_ingot", - "sheet", - "double_sheet", - "rod", - "block", - "block_stairs", - "block_slab" -] - -const armorProperty = [ - "boots", - "greaves", - "chestplate", - "helmet", - "shield", - "unfinished_boots", - "unfinished_chestplate", - "unfinished_greaves", - "unfinished_helmet", -] - -const toolProperty = [ +const ingotGen = [ "ingot" ] +const doubleIngotGen = [ "double_ingot"] +const nuggetGen = [ "nugget" ] +const dustGen = [ "dust", "dust_small", "dust_tiny" ] +const oreGen = [ "poor_raw", "raw", "rich_raw" ] +const partGen = [ "sheet", "double_sheet", "rod", "block", "block_stairs", "block_slab" ] +const armorGen = [ "boots", "greaves", "chestplate", "helmet", "shield", "unfinished_boots", "unfinished_chestplate", "unfinished_greaves", "unfinished_helmet" ] +const utilityGen = [ "anvil", "bars", "chain", "lamp", "trapdoor", "unfinished_lamp" ] +const gtToolGen = [ "axe_head", "axe", - "chisel_head", - "chisel", - "hoe_head", - "fish_hook", - "fishing_rod", "hammer_head", "hammer", "hoe", "hoe_head", - "horse_armor", - "javelin_head", - "javelin", "knife_blade", "knife", - "mace_head", - "mace", - "pickaxe_head", - "pickaxe", - "propick_head", - "propick", "saw_blade", "saw", + "pickaxe_head", + "pickaxe", "scythe_blade", "scythe", - "shears", "shovel_head", "shovel", "sword_blade", "sword", +] +const tfcToolGen = [ + "chisel_head", + "chisel", + "fish_hook", + "fishing_rod", + "horse_armor", + "javelin_head", + "javelin", + "mace_head", + "mace", + "propick_head", + "propick", + "shears", "tuyere" ] -const utilityProperty = [ - "anvil", - "bars", - "block", - "block_stairs", - "block_slab", - "chain", - "lamp", - "trapdoor", - "unfinished_lamp" -] +const ItemHeats = { + "nugget": { heat_capacity: 0.124, metal_amount: { + "default": 16, + "bismuth": 16, + "cassiterite": 16, + "copper": 16, + "garnierite": 14, + "gold": 16, + "hematite": 13, + "iron": 16, + "yellow_limonite": 14, + "magnetite": 14, + "malachite": 13, + "nickel": 16, + "pyrite": 12, + "silver": 16, + "sphalerite": 16, + "tetrahedrite": 14, + "tin": 16, + }, input: (name) => { return { tag: `forge:nuggets/${name}` } }, output: (name) => { return { item: `gtceu:${name}_nugget` } } }, + + "dust": { heat_capacity: 1.429, metal_amount: { + "default": 144, + "bismuth": 144, + "cassiterite": 144, + "copper": 144, + "garnierite": 126, + "gold": 144, + "hematite": 117, + "iron": 144, + "yellow_limonite": 126, + "magnetite": 126, + "malachite": 117, + "nickel": 144, + "pyrite": 123, + "silver": 144, + "sphalerite": 144, + "tetrahedrite": 126, + "tin": 144, + }, input: (name) => { return { tag: `forge:dusts/${name}` } }, output: (name) => { return { item: `gtceu:${name}_dust` } } }, + + + "dust_small": { heat_capacity: 0.714, metal_amount: { + "default": 36, + "bismuth": 36, + "cassiterite": 36, + "copper": 36, + "garnierite": 31, + "gold": 36, + "hematite": 29, + "iron": 36, + "yellow_limonite": 31, + "magnetite": 31, + "malachite": 29, + "nickel": 36, + "pyrite": 27, + "silver": 36, + "sphalerite": 36, + "tetrahedrite": 31, + "tin": 36, + }, input: (name) => { return { tag: `forge:dusts/small/${name}` } }, output: (name) => { return { item: `gtceu:${name}_dust_small` } } }, + + + "dust_tiny": { heat_capacity: 0.357, metal_amount: { + "default": 16, + "bismuth": 16, + "cassiterite": 16, + "copper": 16, + "garnierite": 14, + "gold": 16, + "hematite": 13, + "iron": 16, + "yellow_limonite": 14, + "magnetite": 14, + "malachite": 13, + "nickel": 16, + "pyrite": 12, + "silver": 16, + "sphalerite": 16, + "tetrahedrite": 14, + "tin": 16, + }, input: (name) => { return { tag: `forge:dusts/tiny/${name}` } }, output: (name) => { return { item: `gtceu:${name}_dust_tiny` } } }, + + + "poor_raw": { heat_capacity: 1.429, metal_amount: { + "default": 24, + "bismuth": 24, + "cassiterite": 24, + "copper": 24, + "garnierite": 21, + "gold": 24, + "hematite": 18, + "iron": 24, + "yellow_limonite": 21, + "magnetite": 21, + "malachite": 18, + "nickel": 24, + "pyrite": 18, + "silver": 24, + "sphalerite": 24, + "tetrahedrite": 21, + "tin": 24, + }, input: (name) => { return { tag: `forge:poor_raw_materials/${name}` } }, output: (name) => { return { item: `gtceu:poor_raw_${name}` } } }, + + + "raw": { heat_capacity: 1.429, metal_amount: { + "default": 36, + "bismuth": 36, + "cassiterite": 36, + "copper": 36, + "garnierite": 31, + "gold": 36, + "hematite": 29, + "iron": 36, + "yellow_limonite": 31, + "magnetite": 31, + "malachite": 29, + "nickel": 36, + "pyrite": 27, + "silver": 36, + "sphalerite": 36, + "tetrahedrite": 31, + "tin": 36, + }, input: (name) => { return { tag: `forge:raw_materials/${name}` } }, output: (name) => { return { item: `gtceu:raw_${name}` } } }, + + + "rich_raw": { heat_capacity: 1.429, metal_amount: { + "default": 48, + "bismuth": 48, + "cassiterite": 48, + "copper": 48, + "garnierite": 42, + "gold": 48, + "hematite": 39, + "iron": 48, + "yellow_limonite": 42, + "magnetite": 42, + "malachite": 39, + "nickel": 48, + "pyrite": 36, + "silver": 48, + "sphalerite": 48, + "tetrahedrite": 42, + "tin": 48, + }, input: (name) => { return { tag: `forge:rich_raw_materials/${name}` } }, output: (name) => { return { item: `gtceu:rich_raw_${name}` } } }, + + "block_slab": { heat_capacity: null }, // can't melt + "block_stairs": { heat_capacity: null }, // can't melt + + "block": { heat_capacity: 2.857, metal_amount: 1296, + input: (name) => { return { tag: `forge:storage_blocks/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_block` } } }, + "anvil": { heat_capacity: 40.0, metal_amount: 2016, + input: (name) => { return { item: `tfc:metal/anvil/${name}` } }, + output: (name) => { return { item: `tfc:metal/anvil/${name}` } } }, + "chain": { heat_capacity: 0.171, metal_amount: 9, + input: (name) => { return { item: `tfc:metal/chain/${name}` } }, + output: (name) => { return { item: `tfc:metal/chain/${name}` } } }, + "bars": { heat_capacity: 0.714, metal_amount: 36, + input: (name) => { return { item: `tfc:metal/bars/${name}` } }, + output: (name) => { return { item: `tfc:metal/bars/${name}` } } }, + "trapdoor": { heat_capacity: 5.714, metal_amount: 288, + input: (name) => { return { item: `tfc:metal/trapdoor/${name}` } }, + output: (name) => { return { item: `tfc:metal/trapdoor/${name}` } } }, + "lamp": { heat_capacity: 2.857, metal_amount: 144, + input: (name) => { return { item: `tfc:metal/lamp/${name}` } }, + output: (name) => { return { item: `tfc:metal/lamp/${name}` } } }, + "unfinished_lamp": { heat_capacity: 2.857, metal_amount: 144, + input: (name) => { return { item: `tfc:metal/unfinished_lamp/${name}` } }, + output: (name) => { return { item: `tfc:metal/unfinished_lamp/${name}` } } }, + + "helmet": { heat_capacity: 17.143, metal_amount: 864, hasDur: true, + input: (name) => { return { item: `tfc:metal/helmet/${name}` } }, + output: (name) => { return { item: `tfc:metal/helmet/${name}` } } }, + "chestplate": { heat_capacity: 22.857, metal_amount: 1152, hasDur: true, + input: (name) => { return { item: `tfc:metal/chestplate/${name}` }}, + output: (name) => { return { item: `tfc:metal/chestplate/${name}` } } }, + "greaves": { heat_capacity: 17.143, metal_amount: 864, hasDur: true, + input: (name) => { return { item: `tfc:metal/greaves/${name}` } }, + output: (name) => { return { item: `tfc:metal/greaves/${name}` } } }, + "boots": { heat_capacity: 11.429, metal_amount: 576, hasDur: true, + input: (name) => { return { item: `tfc:metal/boots/${name}` } }, + output: (name) => { return { item: `tfc:metal/boots/${name}` } } }, + "unfinished_boots": { heat_capacity: 5.714, metal_amount: 288, + input: (name) => { return { item: `tfc:metal/unfinished_boots/${name}` } }, + output: (name) => { return { item: `tfc:metal/unfinished_boots/${name}` } } }, + "unfinished_chestplate": { heat_capacity: 11.429, metal_amount: 576, + input: (name) => { return { item: `tfc:metal/unfinished_chestplate/${name}` } }, + output: (name) => { return { item: `tfc:metal/unfinished_chestplate/${name}` } } }, + "unfinished_greaves": { heat_capacity: 11.429, metal_amount: 576, + input: (name) => { return { item: `tfc:metal/unfinished_greaves/${name}` } }, + output: (name) => { return { item: `tfc:metal/unfinished_greaves/${name}` } } }, + "unfinished_helmet": { heat_capacity: 11.429, metal_amount: 576, + input: (name) => { return { item: `tfc:metal/unfinished_helmet/${name}` } }, + output: (name) => { return { item: `tfc:metal/unfinished_helmet/${name}` } } }, + + "horse_armor": { heat_capacity: 34.286, metal_amount: 1728, hasDur: true, + input: (name) => { return { item: `tfc:metal/horse_armor/${name}` } }, + output: (name) => { return { item: `tfc:metal/horse_armor/${name}` } } }, -const itemTypeToHeat = { - "anvil" : { heat_capacity : 40.0, useTag : false, hasGTVariant : null }, - "axe_head" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "axe_head" }, - "axe" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "axe" }, - "bars" : { heat_capacity : 0.714, useTag : false, hasGTVariant : null }, - "block_slab" : { heat_capacity : 0.0, useTag : false, hasGTVariant : null }, - "block_stairs" : { heat_capacity : 0.0, useTag : false, hasGTVariant : null }, - "block" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "material_blocks/block" }, - "boots" : { heat_capacity : 11.429, useTag : false, hasGTVariant : null }, - "chain" : { heat_capacity : 0.171, useTag : false, hasGTVariant : null }, - "chestplate" : { heat_capacity : 22.857, useTag : false, hasGTVariant : null }, - "chisel_head" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null }, - "chisel" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null }, - "double_ingot" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "double_sheet" : { heat_capacity : 11.429, useTag : true, hasGTVariant : "plates/double" }, - "fish_hook" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "fishing_rod" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "greaves" : { heat_capacity : 17.143, useTag : false, hasGTVariant : null }, - "hammer_head" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "hammer_heads" }, - "hammer" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "hammer" }, - "helmet" : { heat_capacity : 17.143, useTag : false, hasGTVariant : null }, - "hoe_head" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "hoe_heads" }, - "hoe" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "hoe" }, - "horse_armor" : { heat_capacity : 34.286, useTag : false, hasGTVariant : null }, - "ingot" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "ingots" }, - "javelin_head" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null }, - "javelin" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null }, - "knife_blade" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "knife_heads" }, - "knife" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "knife" }, - "lamp" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null }, - "mace_head" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "mace" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "pickaxe_head" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "pickaxe_heads" }, - "pickaxe" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "pickaxe" }, - "propick_head" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null }, - "propick" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null }, - "rod" : { heat_capacity : 1.429, useTag : true, hasGTVariant : "rods" }, - "saw_blade" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "saw_heads" }, - "saw" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "saw" }, - "scythe_blade" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "scythe_heads" }, - "scythe" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "scythe" }, - "shears" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "sheet" : { heat_capacity : 5.714, useTag : true, hasGTVariant : "plates" }, - "shield" : { heat_capacity : 11.429, useTag : false, hasGTVariant : null }, - "shovel_head" : { heat_capacity : 2.857, useTag : true, hasGTVariant : "shovel_heads" }, - "shovel" : { heat_capacity : 2.857, useTag : false, hasGTVariant : "shovel" }, - "sword_blade" : { heat_capacity : 5.714, useTag : true, hasGTVariant : "sword_heads" }, - "sword" : { heat_capacity : 5.714, useTag : false, hasGTVariant : "sword" }, - "trapdoor" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "tuyere" : { heat_capacity : 11.429, useTag : false, hasGTVariant : null }, - "unfinished_boots" : { heat_capacity : 5.714, useTag : false, hasGTVariant : null }, - "unfinished_chestplate" : { heat_capacity : 11.429, useTag : false, hasGTVariant : null }, - "unfinished_greaves" : { heat_capacity : 11.429, useTag : false, hasGTVariant : null }, - "unfinished_helmet" : { heat_capacity : 11.429, useTag : false, hasGTVariant : null }, - "unfinished_lamp" : { heat_capacity : 2.857, useTag : false, hasGTVariant : null } + "sword_blade": { heat_capacity: 5.714, metal_amount: 288, hasMold: true, + input: (name) => { return { tag: `forge:sword_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_sword_head` } } }, + "sword": { heat_capacity: 5.714, metal_amount: 288, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_sword` } }, + output: (name) => { return { item: `gtceu:${name}_sword` } } }, + "pickaxe_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:pickaxe_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_pickaxe_head` } } }, + "pickaxe": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_pickaxe` } }, + output: (name) => { return { item: `gtceu:${name}_pickaxe` } } }, + "axe_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:axe_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_axe_head` } } }, + "axe": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_axe` } }, + output: (name) => { return { item: `gtceu:${name}_axe` } } }, + "shovel_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:shovel_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_shovel_head` } } }, + "shovel": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_shovel` } }, + output: (name) => { return { item: `gtceu:${name}_shovel` } } }, + "hammer_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:hammer_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_hammer_head` } } }, + "hammer": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_hammer` } }, + output: (name) => { return { item: `gtceu:${name}_hammer` } } }, + "hoe_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:hoe_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_hoe_head` } } }, + "hoe": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_hoe` } }, + output: (name) => { return { item: `gtceu:${name}_hoe` } } }, + "knife_blade": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:knife_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_knife_head` } } }, + "knife": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_knife` } }, + output: (name) => { return { item: `gtceu:${name}_knife` } } }, + "saw_blade": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:saw_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_saw_head` } } }, + "saw": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_saw` } }, + output: (name) => { return { item: `gtceu:${name}_saw` } } }, + "scythe_blade": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:scythe_heads/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_scythe_head` } } }, + "scythe": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `gtceu:${name}_scythe` } }, + output: (name) => { return { item: `gtceu:${name}_scythe` } } }, + "chisel_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { item: `tfc:metal/chisel_head/${name}` } }, + output: (name) => { return { item: `tfc:metal/chisel_head/${name}` } }, }, + "chisel": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `tfc:metal/chisel/${name}` } }, + output: (name) => { return { item: `tfc:metal/chisel/${name}` } } }, + "javelin_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { item: `tfc:metal/javelin_head/${name}` } }, + output: (name) => { return { item: `tfc:metal/javelin_head/${name}` } } }, + "javelin": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `tfc:metal/javelin/${name}` } }, + output: (name) => { return { item: `tfc:metal/javelin/${name}` } } }, + "propick_head": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { item: `tfc:metal/propick_head/${name}` } }, + output: (name) => { return { item: `tfc:metal/propick_head/${name}` } } }, + "propick": { heat_capacity: 2.857, metal_amount: 144, hasDur: true, + input: (name) => { return { item: `tfc:metal/propick/${name}` } }, + output: (name) => { return { item: `tfc:metal/propick/${name}` } } }, + "mace_head": { heat_capacity: 5.714, metal_amount: 288, hasMold: true, + input: (name) => { return { item: `tfc:metal/mace_head/${name}` } }, + output: (name) => { return { item: `tfc:metal/mace_head/${name}` } } }, + "mace": { heat_capacity: 5.714, metal_amount: 288, hasDur: true, + input: (name) => { return { item: `tfc:metal/mace/${name}` } }, + output: (name) => { return { item: `tfc:metal/mace/${name}` } } }, + "fish_hook": { heat_capacity: 5.714, metal_amount: 288, + input: (name) => { return { item: `tfc:metal/fish_hook/${name}` } }, + output: (name) => { return { item: `tfc:metal/fish_hook/${name}` } } }, + "fishing_rod": { heat_capacity: 5.714, metal_amount: 288, hasDur: true, + input: (name) => { return { item: `tfc:metal/fishing_rod/${name}` } }, + output: (name) => { return { item: `tfc:metal/fishing_rod/${name}` } } }, + "tuyere": { heat_capacity: 11.429, metal_amount: 576, hasDur: true, + input: (name) => { return { item: `tfc:metal/tuyere/${name}` } }, + output: (name) => { return { item: `tfc:metal/tuyere/${name}` } } }, + "shears": { heat_capacity: 5.714, metal_amount: 288, hasDur: true, + input: (name) => { return { item: `tfc:metal/shears/${name}` } }, + output: (name) => { return { item: `tfc:metal/shears/${name}` } } }, + "shield": { heat_capacity: 11.429, metal_amount: 576, hasDur: true, + input: (name) => { return { item: `tfc:metal/shield/${name}` } }, + output: (name) => { return { item: `tfc:metal/shield/${name}` } } }, + + "ingot": { heat_capacity: 2.857, metal_amount: 144, hasMold: true, + input: (name) => { return { tag: `forge:ingots/${name}` } }, + output: (name) => { return { item: Item.getId(AlmostUnified.getPreferredItemForTag(`forge:ingots/${name}`)) + "" } } }, + "double_ingot": { heat_capacity: 5.714, metal_amount: 288, + input: (name) => { return { item: `tfc:metal/double_ingot/${name}` } }, + output: (name) => { return { item: `tfc:metal/double_ingot/${name}` } } }, + "sheet": { heat_capacity: 5.714, metal_amount: 288, + input: (name) => { return { tag: `forge:plates/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_plate` } } }, + "double_sheet": { heat_capacity: 11.429, metal_amount: 576, + input: (name) => { return { tag: `forge:plates/double/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_double_plate` } } }, + "rod": { heat_capacity: 1.429, metal_amount: 72, + input: (name) => { return { tag: `forge:rods/${name}` } }, + output: (name) => { return { item: `gtceu:${name}_rod` } } }, } -const metalToSpecs = { - "bismuth" : { forging_temperature: 162, welding_temperature: 216, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) }, - "brass" : { forging_temperature: 558, welding_temperature: 744, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) }, - "gold" : { forging_temperature: 636, welding_temperature: 848, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) }, - "nickel" : { forging_temperature: 872, welding_temperature: 1162, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) }, - "rose_gold" : { forging_temperature: 576, welding_temperature: 768, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) }, - "silver" : { forging_temperature: 577, welding_temperature: 769, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) }, - "tin" : { forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) }, - "zinc" : { forging_temperature: 252, welding_temperature: 336, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) }, - "sterling_silver": { forging_temperature: 570, welding_temperature: 760, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) }, - "copper" : { forging_temperature: 648, welding_temperature: 864, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "bismuth_bronze" : { forging_temperature: 591, welding_temperature: 788, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "bronze" : { forging_temperature: 570, welding_temperature: 760, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "black_bronze" : { forging_temperature: 642, welding_temperature: 856, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "wrought_iron" : { forging_temperature: 921, welding_temperature: 1228, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "cast_iron" : { forging_temperature: 921, welding_temperature: 1228, hasOre: true, customName: "iron", props: [].concat(defaultProperty, partProperty) }, - "pig_iron" : { forging_temperature: 921, welding_temperature: 1228, hasOre: false, customName: null, props: defaultProperty}, - "steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "high_carbon_black_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty }, - "high_carbon_red_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty }, - "high_carbon_blue_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty }, - "weak_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty }, - "weak_red_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty }, - "weak_blue_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty }, - "black_steel" : { forging_temperature: 891, welding_temperature: 1188, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "red_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "blue_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) }, - "unknown" : { forging_temperature: 240, welding_temperature: 320, hasOre: false, customName: null, props: defaultProperty }, - "cassiterite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "garnierite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "hematite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "limonite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "magnetite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "malachite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "pyrite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "sphalerite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}, - "tetrahedrite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []} +const Metals = { + "bismuth": { forging_temp: 162, welding_temp: 216, melt_temp: 270, fluidName: "gtceu:bismuth", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, oreGen, partGen) }, + "brass": { forging_temp: 558, welding_temp: 744, melt_temp: 930, fluidName: "gtceu:brass", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen) }, + "gold": { forging_temp: 636, welding_temp: 848, melt_temp: 1060, fluidName: "gtceu:gold", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, oreGen, partGen) }, + "nickel": { forging_temp: 872, welding_temp: 1162, melt_temp: 1453, fluidName: "gtceu:nickel", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, oreGen, partGen) }, + "rose_gold": { forging_temp: 576, welding_temp: 768, melt_temp: 960, fluidName: "gtceu:rose_gold", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen) }, + "silver": { forging_temp: 577, welding_temp: 769, melt_temp: 961, fluidName: "gtceu:silver", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, oreGen, partGen) }, + "tin": { forging_temp: 138, welding_temp: 184, melt_temp: 230, fluidName: "gtceu:tin", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, oreGen, partGen) }, + "zinc": { forging_temp: 252, welding_temp: 336, melt_temp: 420, fluidName: "gtceu:zinc", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen) }, + "sterling_silver": { forging_temp: 570, welding_temp: 760, melt_temp: 950, fluidName: "gtceu:sterling_silver", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen) }, + "copper": { forging_temp: 648, welding_temp: 864, melt_temp: 1080, fluidName: "gtceu:copper", canBeUnmolded: true, props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, oreGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "bismuth_bronze": { forging_temp: 591, welding_temp: 788, melt_temp: 985, fluidName: "gtceu:bismuth_bronze", canBeUnmolded: true, props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "bronze": { forging_temp: 570, welding_temp: 760, melt_temp: 950, fluidName: "gtceu:bronze", canBeUnmolded: true, props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "black_bronze": { forging_temp: 642, welding_temp: 856, melt_temp: 1070, fluidName: "gtceu:black_bronze", canBeUnmolded: true, props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "wrought_iron": { forging_temp: 921, welding_temp: 1228, melt_temp: 1535, fluidName: "gtceu:wrought_iron", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "iron": { forging_temp: 921, welding_temp: 1228, melt_temp: 1535, fluidName: "gtceu:iron", props: [].concat(ingotGen, dustGen, oreGen, gtToolGen, partGen) }, + "cast_iron": { forging_temp: 921, welding_temp: 1228, melt_temp: 1535, fluidName: "gtceu:iron", props: doubleIngotGen }, + "pig_iron": { forging_temp: 921, welding_temp: 1228, melt_temp: 1535, fluidName: "tfc:metal/pig_iron", props: ingotGen}, + "steel": { forging_temp: 924, welding_temp: 1232, melt_temp: 1540, fluidName: "gtceu:steel", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "high_carbon_black_steel": { forging_temp: 924, melt_temp: 1540, welding_temp: 1232, fluidName: "tfc:metal/high_carbon_black_steel", props: ingotGen }, + "high_carbon_red_steel": { forging_temp: 924, melt_temp: 1540, welding_temp: 1232, fluidName: "tfc:metal/high_carbon_red_steel", props: ingotGen }, + "high_carbon_blue_steel": { forging_temp: 924, melt_temp: 1540, welding_temp: 1232, fluidName: "tfc:metal/high_carbon_blue_steel", props: ingotGen }, + "weak_steel": { forging_temp: 924, welding_temp: 1232, melt_temp: 1540, fluidName: "tfc:metal/weak_steel", props: ingotGen }, + "weak_red_steel": { forging_temp: 924, welding_temp: 1232, melt_temp: 1540, fluidName: "tfc:metal/weak_red_steel", props: ingotGen }, + "weak_blue_steel": { forging_temp: 924, welding_temp: 1232, melt_temp: 1540, fluidName: "tfc:metal/weak_blue_steel", props: ingotGen }, + "black_steel": { forging_temp: 891, welding_temp: 1188, melt_temp: 1485, fluidName: "gtceu:black_steel", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "red_steel": { forging_temp: 924, welding_temp: 1232, melt_temp: 1540, fluidName: "gtceu:red_steel", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "blue_steel": { forging_temp: 924, welding_temp: 1232, melt_temp: 1540, fluidName: "gtceu:blue_steel", props: [].concat(ingotGen, doubleIngotGen, nuggetGen, dustGen, partGen, armorGen, gtToolGen, tfcToolGen, utilityGen) }, + "unknown": { forging_temp: 240, welding_temp: 320, melt_temp: 400, fluidName: "tfc:metal/unknown", props: ingotGen }, + "cassiterite": { forging_temp: 138, welding_temp: 184, melt_temp: 230, fluidName: "gtceu:zinc", props: [].concat(dustGen, oreGen) }, + "garnierite": { forging_temp: 138, welding_temp: 184, melt_temp: 1453, fluidName: "gtceu:nickel", props: [].concat(dustGen, oreGen) }, + "hematite": { forging_temp: 138, welding_temp: 184, melt_temp: 1535, fluidName: "gtceu:iron", props: [].concat(dustGen, oreGen) }, + "yellow_limonite": { forging_temp: 138, welding_temp: 184, melt_temp: 1535, fluidName: "gtceu:iron", props: [].concat(dustGen, oreGen) }, + "magnetite": { forging_temp: 138, welding_temp: 184, melt_temp: 1535, fluidName: "gtceu:iron", props: [].concat(dustGen, oreGen) }, + "malachite": { forging_temp: 138, welding_temp: 184, melt_temp: 1080, fluidName: "gtceu:copper", props: [].concat(dustGen, oreGen) }, + "pyrite": { forging_temp: 138, welding_temp: 184, melt_temp: 1535, fluidName: "gtceu:iron", props: [].concat(dustGen, oreGen) }, + "sphalerite": { forging_temp: 138, welding_temp: 184, melt_temp: 420, fluidName: "gtceu:zinc", props: [].concat(dustGen, oreGen) }, + "tetrahedrite": { forging_temp: 138, welding_temp: 184, melt_temp: 1080, fluidName: "gtceu:copper", props: [].concat(dustGen, oreGen) } } -const asd = [ - -] - const removeAllTagsItems = [ 'tfc:ore/amethyst', 'tfc:ore/diamond', diff --git a/kubejs/server_scripts/tfc/data.js b/kubejs/server_scripts/tfc/data.js index 5532974b5..00fa70198 100644 --- a/kubejs/server_scripts/tfc/data.js +++ b/kubejs/server_scripts/tfc/data.js @@ -1,80 +1,24 @@ // priority: 0 const registerTFCData = (event) => { - - const emptyJson = { - conditions: [ - { type: "forge:false" } - ] - } - - const itemJson = (itemName, heat_capacity_input, forging_temperature_input, welding_temperature_input) => { - return { - ingredient: { - item: itemName - }, - heat_capacity: heat_capacity_input, - forging_temperature: forging_temperature_input, - welding_temperature: welding_temperature_input - } - } - - const tagJson = (tagName, heat_capacity_input, forging_temperature_input, welding_temperature_input) => { - return { - ingredient: { - tag: tagName - }, - heat_capacity: heat_capacity_input, - forging_temperature: forging_temperature_input, - welding_temperature: welding_temperature_input - } - } - - for (const [metal, metalSpecs] of Object.entries(metalToSpecs)) { - - let metalName = (metalSpecs.customName != null) ? metalSpecs.customName : metal - - metalSpecs.props.forEach(propName => { - let json - let property = itemTypeToHeat[propName] - - if (property.useTag) json = tagJson(`forge:${property.hasGTVariant}/${metalName}`, property.heat_capacity, metalSpecs.forging_temperature, metalSpecs.welding_temperature) - else { - let itemName - - if (property.hasGTVariant != null) itemName = `gtceu:${metalName}_${propName}` - else itemName = `tfc:metal/${propName}/${metal}` - - json = itemJson(itemName, property.heat_capacity, metalSpecs.forging_temperature, metalSpecs.welding_temperature) - } - - let path = `tfc:tfc/item_heats/metal/${metal}_${propName}` - - if (property.heat_capacity == 0.0) event.addJson(path, emptyJson) - else event.addJson(path, json) - }); - - if (metalSpecs.hasOre) { - let path = `tfc:tfc/item_heats/ore/${metalName}` - let json = { - ingredient: [ - { - "tag": `forge:poor_raw_materials/${metalName}` - }, - { - "tag": `forge:raw_materials/${metalName}` - }, - { - "tag": `forge:rich_raw_materials/${metalName}` - } - ], - heat_capacity: 1.143, - forging_temperature: metalSpecs.forging_temperature, - welding_temperature: metalSpecs.welding_temperature - } - - event.addJson(path, json) - } - } + registerAutoTFCItemHeats(event) } +const registerAutoTFCItemHeats = (event) => { + for (const [tfcMetalName, metalSpecifications] of Object.entries(Metals)) { + metalSpecifications.props.forEach(propertyName => { + let itemType = ItemHeats[propertyName] + let pathToExistFile = `tfc:tfc/item_heats/metal/${tfcMetalName}_${propertyName}` + + if (itemType.heat_capacity == null) addEmptyJson(event, pathToExistFile) + else addItemHeat( + event, + `metal/${tfcMetalName}_${propertyName}`, + itemType.input(tfcMetalName), + itemType.heat_capacity, + metalSpecifications.forging_temp, + metalSpecifications.welding_temp + ) + }) + } +} \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index dae6d0dc9..c5589d76f 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -1,6 +1,15 @@ // priority: 0 const registerTFCRecipes = (event) => { + event.remove({ id: /tfc:quern\/poor.*/ }) + event.remove({ id: /tfc:quern\/normal.*/ }) + event.remove({ id: /tfc:quern\/rich.*/ }) + event.remove({ id: /tfc:heating\/ore.*/ }) + event.remove({ id: /tfc:heating\/metal.*/ }) + event.remove({ id: /tfc:casting\/.*/ }) + // event.remove({ id: /tfc:anvil.*/ }) // todo + // event.remove({ id: /tfc:welding.*/ }) // todo + event.remove({ id: 'tfc:crafting/vanilla/lapis_block' }) event.remove({ id: 'tfc:quern/amethyst' }) @@ -35,6 +44,36 @@ const registerTFCRecipes = (event) => { event.remove({ id: 'tfc:quern/small_garnierite' }) event.remove({ id: 'tfc:quern/small_sphalerite' }) + registerAutoTFCHeatingRecipes(event) + registerAutoTFCCastingRecipes(event) + + // Gold Bell + addCastingRecipe(event, + 'tfc:recipes/casting/tfg/gold_bell', + { item: "tfc:ceramic/bell_mold"}, + { ingredient: "gtceu:gold", amount: 144 }, + { item: "minecraft:bell" }, + 1 + ) + + // Brass Bell + addCastingRecipe(event, + 'tfc:recipes/casting/tfg/brass_bell', + { item: "tfc:ceramic/bell_mold"}, + { ingredient: "gtceu:brass", amount: 144 }, + { item: "tfc:brass_bell" }, + 1 + ) + + // Bronze Bell + addCastingRecipe(event, + 'tfc:recipes/casting/tfg/bronze_bell', + { item: "tfc:ceramic/bell_mold"}, + { ingredient: "gtceu:bronze", amount: 144 }, + { item: "tfc:bronze_bell" }, + 1 + ) + // Fire Charge event.remove({ id: 'tfc:crafting/vanilla/fire_charge' }) event.shapeless('3x minecraft:fire_charge', [ @@ -44,296 +83,435 @@ const registerTFCRecipes = (event) => { ]) // 2x Coke Powder - addQuernRecipe(event, + addQuernRecipe(event, + 'tfc:recipes/quern/tfg/coke_powder', { tag: "forge:gems/coke" }, { item: "tfc:powder/coke", count: 2 } ) // 4x Amethyst Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/amethyst_powder', { tag: "forge:raw_materials/amethyst" }, { item: "tfc:powder/amethyst", count: 4 } ) // 4x Diamond Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/diamond_powder', { tag: "forge:raw_materials/diamond" }, { item: "tfc:powder/diamond", count: 4 } ) // 4x Emerald Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/emerald_powder', { tag: "forge:raw_materials/emerald" }, { item: "tfc:powder/emerald", count: 4 } ) // 4x LapisLazuli Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/lapis_powder', { tag: "forge:raw_materials/lapis" }, { item: "tfc:powder/lapis_lazuli", count: 4 } ) // 4x Opal Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/opal_powder', { tag: "forge:raw_materials/opal" }, { item: "tfc:powder/opal", count: 4 } ) // 4x Pyrite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/pyrite_powder', { tag: "forge:raw_materials/pyrite" }, { item: "tfc:powder/pyrite", count: 4 } ) // 4x Ruby Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/ruby_powder', { tag: "forge:raw_materials/ruby" }, { item: "tfc:powder/ruby", count: 4 } ) // 4x Sapphire Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/sapphire_powder', { tag: "forge:raw_materials/sapphire" }, { item: "tfc:powder/sapphire", count: 4 } ) // 4x Topaz Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/topaz_powder', { tag: "forge:raw_materials/topaz" }, { item: "tfc:powder/topaz", count: 4 } ) // 2x Gold Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_gold_powder', { tag: "forge:poor_raw_materials/gold" }, { item: "tfc:powder/native_gold", count: 2 } ) // 4x Gold Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_coke_powder', { tag: "forge:raw_materials/gold" }, { item: "tfc:powder/native_gold", count: 4 } ) // 6x Gold Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_coke_powder', { tag: "forge:rich_raw_materials/gold" }, { item: "tfc:powder/native_gold", count: 6 } ) // 2x Silver Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_silver_powder', { tag: "forge:poor_raw_materials/silver" }, { item: "tfc:powder/native_silver", count: 2 } ) // 4x Silver Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_silver_powder', { tag: "forge:raw_materials/silver" }, { item: "tfc:powder/native_silver", count: 4 } ) // 6x Silver Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_silver_powder', { tag: "forge:rich_raw_materials/silver" }, { item: "tfc:powder/native_silver", count: 6 } ) // 2x Cassiterite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_cassiterite_powder', { tag: "forge:poor_raw_materials/cassiterite" }, { item: "tfc:powder/cassiterite", count: 2 } ) // 4x Cassiterite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_cassiterite_powder', { tag: "forge:raw_materials/cassiterite" }, { item: "tfc:powder/cassiterite", count: 4 } ) // 6x Cassiterite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_cassiterite_powder', { tag: "forge:rich_raw_materials/cassiterite" }, { item: "tfc:powder/cassiterite", count: 6 } ) // 2x Bismuth Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_bismuth_powder', { tag: "forge:poor_raw_materials/bismuth" }, { item: "tfc:powder/bismuthinite", count: 2 } ) // 4x Bismuth Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_bismuth_powder', { tag: "forge:raw_materials/bismuth" }, { item: "tfc:powder/bismuthinite", count: 4 } ) // 6x Bismuth Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_bismuth_powder', { tag: "forge:rich_raw_materials/bismuth" }, { item: "tfc:powder/bismuthinite", count: 6 } ) // 2x Garnierite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_garnierite_powder', { tag: "forge:poor_raw_materials/garnierite" }, { item: "tfc:powder/garnierite", count: 1 } ) // 4x Garnierite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_garnierite_powder', { tag: "forge:raw_materials/garnierite" }, { item: "tfc:powder/garnierite", count: 3 } ) // 6x Garnierite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_garnierite_powder', { tag: "forge:rich_raw_materials/garnierite" }, { item: "tfc:powder/garnierite", count: 5 } ) // 2x Nickel Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_nickel_powder', { tag: "forge:poor_raw_materials/nickel" }, { item: "tfc:powder/garnierite", count: 2 } ) // 4x Nickel Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_nickel_powder', { tag: "forge:raw_materials/nickel" }, { item: "tfc:powder/garnierite", count: 4 } ) // 6x Nickel Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_nickel_powder', { tag: "forge:rich_raw_materials/nickel" }, { item: "tfc:powder/garnierite", count: 6 } ) // 2x Sphalerite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_sphalerite_powder', { tag: "forge:poor_raw_materials/sphalerite" }, { item: "tfc:powder/sphalerite", count: 2 } ) // 4x Sphalerite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_sphalerite_powder', { tag: "forge:raw_materials/sphalerite" }, { item: "tfc:powder/sphalerite", count: 4 } ) // 6x Sphalerite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_sphalerite_powder', { tag: "forge:rich_raw_materials/sphalerite" }, { item: "tfc:powder/sphalerite", count: 6 } ) // 2x Sulfur Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_sulfur_powder', { tag: "forge:poor_raw_materials/sulfur" }, { item: "tfc:powder/sulfur", count: 2 } ) // 4x Sulfur Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_sulfur_powder', { tag: "forge:raw_materials/sulfur" }, { item: "tfc:powder/sulfur", count: 4 } ) // 6x Sulfur Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_sulfur_powder', { tag: "forge:rich_raw_materials/sulfur" }, { item: "tfc:powder/sulfur", count: 6 } ) // 2x Saltpeter Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_saltpeter_powder', { tag: "forge:poor_raw_materials/saltpeter" }, { item: "tfc:powder/saltpeter", count: 2 } ) // 4x Saltpeter Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_saltpeter_powder', { tag: "forge:raw_materials/saltpeter" }, { item: "tfc:powder/saltpeter", count: 4 } ) // 6x Saltpeter Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_saltpeter_powder', { tag: "forge:rich_raw_materials/saltpeter" }, { item: "tfc:powder/saltpeter", count: 6 } ) // 2x Salt Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_salt_powder', { tag: "forge:poor_raw_materials/salt" }, { item: "tfc:powder/salt", count: 2 } ) // 4x Salt Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_salt_powder', { tag: "forge:raw_materials/salt" }, { item: "tfc:powder/salt", count: 4 } ) // 6x Salt Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_salt_powder', { tag: "forge:rich_raw_materials/salt" }, { item: "tfc:powder/salt", count: 6 } ) // 2x Graphite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_graphite_powder', { tag: "forge:poor_raw_materials/graphite" }, { item: "tfc:powder/graphite", count: 2 } ) // 4x Graphite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_graphite_powder', { tag: "forge:raw_materials/graphite" }, { item: "tfc:powder/graphite", count: 4 } ) // 6x Graphite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_graphite_powder', { tag: "forge:rich_raw_materials/graphite" }, { item: "tfc:powder/graphite", count: 6 } ) // 2x Sylvite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_sylvite_powder', { tag: "forge:poor_raw_materials/sylvite" }, { item: "tfc:powder/sylvite", count: 2 } ) // 4x Sylvite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_sylvite_powder', { tag: "forge:raw_materials/sylvite" }, { item: "tfc:powder/sylvite", count: 4 } ) // 6x Sylvite Powder addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_sylvite_powder', { tag: "forge:rich_raw_materials/sylvite" }, { item: "tfc:powder/sylvite", count: 6 } ) // 2x Flux addQuernRecipe(event, + 'tfc:recipes/quern/tfg/2x_borax_powder', { tag: "forge:poor_raw_materials/borax" }, { item: "tfc:powder/flux", count: 2 } ) // 4x Flux addQuernRecipe(event, + 'tfc:recipes/quern/tfg/4x_borax_powder', { tag: "forge:raw_materials/borax" }, { item: "tfc:powder/flux", count: 4 } ) // 6x Flux addQuernRecipe(event, + 'tfc:recipes/quern/tfg/6x_borax_powder', { tag: "forge:rich_raw_materials/borax" }, { item: "tfc:powder/flux", count: 6 } ) +} + +const registerAutoTFCHeatingRecipes = (event) => { + for (const [tfcMetalName, metalSpecifications] of Object.entries(Metals)) { + metalSpecifications.props.forEach(propertyName => { + let jsonRecipePath = `tfc:recipes/heating/tfg/${tfcMetalName}_${propertyName}` + let itemTypeSpecifications = ItemHeats[propertyName] + + if (itemTypeSpecifications.heat_capacity != null) { + let ingredientInput = itemTypeSpecifications.input(tfcMetalName) + + let json + + if (typeof(itemTypeSpecifications.metal_amount) == "object") + { + if (itemTypeSpecifications.metal_amount[tfcMetalName] != undefined) + { + addHeatingItemToFluidRecipe( + event, + jsonRecipePath, + ingredientInput, + { fluid: metalSpecifications.fluidName, amount: itemTypeSpecifications.metal_amount[tfcMetalName] }, + metalSpecifications.melt_temp, + (itemTypeSpecifications.hasDur != undefined) ? itemTypeSpecifications.hasDur : false + ) + } + else + { + addHeatingItemToFluidRecipe( + event, + jsonRecipePath, + ingredientInput, + { fluid: metalSpecifications.fluidName, amount: itemTypeSpecifications.metal_amount["default"] }, + metalSpecifications.melt_temp, + (itemTypeSpecifications.hasDur != undefined) ? itemTypeSpecifications.hasDur : false + ) + } + } + else { + addHeatingItemToFluidRecipe( + event, + jsonRecipePath, + ingredientInput, + { fluid: metalSpecifications.fluidName, amount: itemTypeSpecifications.metal_amount }, + metalSpecifications.melt_temp, + (itemTypeSpecifications.hasDur != undefined) ? itemTypeSpecifications.hasDur : false + ) + } + } + }) + } +} + +const registerAutoTFCCastingRecipes = (event) => { + for (const [tfcMetalName, metalSpecifications] of Object.entries(Metals)) { + metalSpecifications.props.forEach(propertyName => { + let property = ItemHeats[propertyName] + + if (property.hasMold != undefined) + { + + + let recipeId = `tfc:recipes/casting_tfg/${propertyName}_${tfcMetalName}` + + if (metalSpecifications.canBeUnmolded != undefined || propertyName == "ingot") + { + addCastingRecipe(event, + recipeId, + { item: `tfc:ceramic/${propertyName}_mold` }, + { ingredient: metalSpecifications.fluidName, amount: property.metal_amount}, + property.output(tfcMetalName), + (propertyName.includes("blade") || propertyName.includes("head") ? 1 : 0.01) + ) + + if (propertyName == "ingot") { + + let recipeId2 = `tfc:recipes/casting_tfg/fire_${propertyName}_${tfcMetalName}` + + addCastingRecipe(event, + recipeId2, + { item: `tfc:ceramic/fire_${propertyName}_mold` }, + { ingredient: metalSpecifications.fluidName, amount: property.metal_amount}, + property.output(tfcMetalName), + 0.01 + ) + } + } + } + }) + } } \ No newline at end of file diff --git a/kubejs/server_scripts/tfc/utility.js b/kubejs/server_scripts/tfc/utility.js index 15c853c65..cfc2dc27e 100644 --- a/kubejs/server_scripts/tfc/utility.js +++ b/kubejs/server_scripts/tfc/utility.js @@ -1,71 +1,205 @@ // priority: 0 -const customWelding = (event, [input1, input2], result, tier) => { - event.custom({ - type: "tfc:welding", - first_input: { - tag: input1 - }, - second_input: { - tag: input2 - }, - result: { - item: result - }, - tier: tier, - }) +/** + * Нужен для того, чтобы удалять рецепты или блокировать json файлы, + * которые нельзя удалить по id (допустим нагревательные спецификации предметов). + * Рекомендуется не использовать. + */ +const emptyJson = { + conditions: [ + { type: "forge:false" } + ] } -const customHeating = (event, input1, [result, amount], temperature) => { - event.custom({ - type: "tfc:heating", - ingredient: { - tag: input1 - }, - result_fluid: { - fluid: result, - amount: amount - }, - temperature: temperature - }) +/** + * Генерирует рандомную строку. + * @param { Number } length Длина строки. + * @returns Строка из рандомных символов. + */ +const makeId = (length) => { + let result = ''; + const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; + const charactersLength = characters.length; + let counter = 0; + while (counter < length) { + result += characters.charAt(Math.floor(Math.random() * charactersLength)); + counter += 1; + } + return result; } -const customAnvil = (event, input1, [result, count], tier, [firstRule, secondRule, thirdRule]) => { - event.custom({ - type: "tfc:anvil", - input: { - tag: input1 - }, - result: { - item: result, - count: count - }, - tier: tier, - rules: [ - firstRule, - secondRule, - thirdRule - ] - }) +/** + * Вставляет пустой json, по пути и блокирует что-либо по этому пути. + * @param { ServerEvents.highPriorityData } event Событие в котором вызывается. + * @param { String } path Путь по которому нужно вставить пустой json. + */ +const addEmptyJson = (event, path) => { + event.addJson(path, emptyJson) } -// Кастомная температура плавления - -const customHeatLevel = (event, input1, heat_capacity, forging_temperature, welding_temperature) => { - event.custom({ - ingredient: { - item: input1 - }, +/** + * Метод создает нагревательную спецификацию json для предмета. + * Используется только в событии генерации датапаков, не является рецептом. + * @param { ServerEvents.highPriorityData } event Событие в котором вызывается. + * @param { String } customPath Путь, начинается с [tfc:tfc/item_heats/], если указан customPath, + * то добавляется после [tfc:tfc/item_heats/], если не указан, генерируется сам. + * @param { Object } input Объект ингредиента, может включать предмет, или тэг. + * @param { Number } heat_capacity Теплоемкость объекта. + * @param { Number } forging_temperature Температура ковки. + * @param { Number } welding_temperature Температура сварки. + */ +const addItemHeat = (event, customPath, input, heat_capacity, forging_temperature, welding_temperature) => { + const defaultPath = `tfc:tfc/item_heats/` + const json = { + ingredient: input, heat_capacity: heat_capacity, forging_temperature: forging_temperature, welding_temperature: welding_temperature - }) + } + + event.addJson((customPath == null) ? defaultPath + makeId(20) : defaultPath + customPath, json) } -const addQuernRecipe = (event, input, output) => { +/** + * Создает рецепта нагрева, предмет -> жидкость, в основном используется для металлов. + * @param { ServerEvents.recipes } event Событие в котором вызывается. + * @param { String } recipeId Название рецепта. + * @param { Object } input Объект входа, может принимать объект с тэгом или предметом. + * @param { Object } result_fluid Результирующая жидкость после расплава предмета. + * @param { Number } temperature Температура при которой произойдет рецепт. + */ +const addHeatingItemToFluidRecipe = (event, recipeId, input, result_fluid, temperature, useDurab) => { + event.custom({ + type: "tfc:heating", + ingredient: input, + result_fluid: result_fluid, + temperature: temperature, + use_durability: useDurab + }).id(recipeId) +} + +/** + * Создает рецепт нагрева, предмет -> предмет, в основном используется для обычных предметов. + * @param { ServerEvents.recipes } event Событие в котором вызывается. + * @param { String } recipeId Название рецепта. + * @param { Object } input Объект входа, может принимать объект с тэгом или предметом. + * @param { Object } result_fluid Результирующий предмет после достижения требуемой температуры. + * @param { Number } temperature Температура при которой произойдет рецепт. + */ +const addHeatingItemToItemRecipe = (event, recipeId, input, result_item, temperature) => { + event.custom({ + type: "tfc:heating", + ingredient: input, + result_item: result_item, + temperature: temperature + }).id(recipeId) +} + +/** + * Создает рецепт для доменной печки лоу тира. + * @param { ServerEvents.recipes } event Событие в котором вызывается. + * @param { String } recipeId Название рецепта. + * @param { Object } result Объект выхода, может принимать объект с тэгом или предметом. + * @param { Object } fluid Объект жидкости, может принимать объект с жидкостью и ее кол-вом. + * @param { Object } catalyst Объект катализатора, может принимать объект с тэгом или предметом. + * @param { number } duration Длительность рецепта. + */ +const addBloomeryRecipe = (event, recipeId, result, fluid, catalyst, duration) => { + event.custom({ + type: "tfc:bloomery", + result: result, + fluid: fluid, + catalyst: catalyst, + duration: duration + }).id(recipeId) +} + +/** + * Создает рецепт для доменной печки нормал тира. + * @param { ServerEvents.recipes } event Событие в котором вызывается. + * @param { String } recipeId Название рецепта. + * @param { Object } fluid Объект жидкости, может принимать объект с жидкостью и ее кол-вом. + * @param { Object } result Объект выхода, может принимать объект с тэгом или предметом. + * @param { Object } catalyst Объект катализатора, может принимать объект с тэгом или предметом. + */ +const addTFCBlastFurnaceRecipe = (event, recipeId, fluid, result, catalyst) => { + event.custom({ + type: "tfc:blast_furnace", + fluid: fluid, + result: result, + catalyst: catalyst + }).id(recipeId) +} + +/** + * Создает рецепт отливки чего-либо из молда в предмет. + * @param { ServerEvents.recipes } event Событие в котором вызывается. + * @param { String } recipeId Название рецепта. + * @param { Object } inputMold Форма на вход. + * @param { Object } fluidInMold Объект жидкости, может принимать объект с жидкостью и ее кол-вом. + * @param { Object } result Объект выхода, может принимать объект с тэгом или предметом. + * @param { Number } break_chance Шанс, что форма сломается. + */ +const addCastingRecipe = (event, recipeId, inputMold, fluidInMold, resultOutput, break_chance) => { + event.custom({ + type: "tfc:casting", + mold: inputMold, + fluid: fluidInMold, + result: resultOutput, + break_chance: break_chance + }).id(recipeId) +} + +/** + * Создает рецепт наковальни. + * @param { ServerEvents.recipes } event Событие в котором вызывается. + * @param { String } recipeId Название рецепта. + * @param { Object } input Объект входа, может принимать объект с тэгом или предметом. + * @param { Object } result Объект выхода, может принимать объект только предметом. + * @param { Number } tier Уровень рецепта, базируется на уровне металла тфк. + * @param { Array } rules Правила ковки. + */ +const addAnvilRecipe = (event, recipeId, input, result, tier, rules) => { + event.custom({ + type: "tfc:anvil", + input: input, + result: result, + tier: tier, + rules: rules + }).id(recipeId) +} + +/** + * Создает рецепт сварки. + * @param { ServerEvents.recipes } event Событие в котором вызывается. + * @param { String } recipeId Название рецепта. + * @param { Object } input1 Объект входа, может принимать объект с тэгом или предметом. + * @param { Object } input2 Объект входа, может принимать объект с тэгом или предметом. + * @param { Object } output Объект выхода, может принимать объект только предметом. + * @param { Number } tier Уровень рецепта, базируется на уровне металла тфк. + */ +const addWeldingRecipe = (event, recipeId, input1, input2, output, tier) => { + event.custom({ + type: "tfc:welding", + first_input: input1, + second_input: input2, + result: output, + tier: tier, + }).id(recipeId) +} + +/** + * Создает рецепт дробилки. + * @param { ServerEvents.recipes } event + * @param { String } recipeId + * @param { Object } input + * @param { Object } output + */ +const addQuernRecipe = (event, recipeId, input, output) => { event.custom({ type: "tfc:quern", ingredient: input, result: output - }) -} \ No newline at end of file + }).id(recipeId) +} + diff --git a/kubejs/startup_scripts/create/items.js b/kubejs/startup_scripts/create/items.js index d2acf56a1..16c48404d 100644 --- a/kubejs/startup_scripts/create/items.js +++ b/kubejs/startup_scripts/create/items.js @@ -1,3 +1,8 @@ +// priority: 0 + const registerCreateItems = (event) => { - event.create('galvanized_iron').displayName('Galvanized Iron').maxStackSize(16).texture("kubejs:item/galvanized_iron") + event.create('galvanized_iron') + .displayName('Galvanized Iron') + .maxStackSize(16) + .texture("kubejs:item/galvanized_iron") } \ No newline at end of file