From f9c2a5f70dc1734de563286970f73e5aa75ccfb1 Mon Sep 17 00:00:00 2001 From: Spicy Noodles <93035068+SpicyNoodle5@users.noreply.github.com> Date: Mon, 19 May 2025 02:26:39 +0100 Subject: [PATCH] Add extra small gear anvil recipes (#1041) * Add extra small gear anvil recipes * Update recipes.metals.js Signed-off-by: Pyritie --------- Signed-off-by: Pyritie Co-authored-by: Pyritie --- kubejs/server_scripts/tfc/recipes.metals.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfc/recipes.metals.js b/kubejs/server_scripts/tfc/recipes.metals.js index b5c35b9ff..d060eabcd 100644 --- a/kubejs/server_scripts/tfc/recipes.metals.js +++ b/kubejs/server_scripts/tfc/recipes.metals.js @@ -279,6 +279,9 @@ function registerTFCMetalsRecipes(event) { event.recipes.tfc.anvil('gtceu:small_steel_gear', '#forge:ingots/steel', ['hit_last', 'shrink_second_last', 'draw_third_last']) .tier(4) .id('tfc:anvil/small_steel_gear') + event.recipes.tfc.anvil('gtceu:small_iron_gear', '#forge:ingots/iron', ['hit_last', 'shrink_second_last', 'draw_third_last']) + .tier(2) + .id('tfc:anvil/small_iron_gear') event.recipes.tfc.anvil('gtceu:small_brass_gear', '#forge:ingots/brass', ['hit_last', 'shrink_second_last', 'draw_third_last']) .tier(2) .id('tfc:anvil/small_brass_gear') @@ -291,6 +294,9 @@ function registerTFCMetalsRecipes(event) { event.recipes.tfc.anvil('gtceu:small_black_bronze_gear', '#forge:ingots/black_bronze', ['hit_last', 'shrink_second_last', 'draw_third_last']) .tier(2) .id('tfc:anvil/small_black_bronze_gear') + event.recipes.tfc.anvil('gtceu:small_red_alloy_gear', '#forge:ingots/red_alloy', ['hit_last', 'shrink_second_last', 'draw_third_last']) + .tier(2) + .id('tfc:anvil/small_red_alloy_gear') // Cast iron -> Raw Iron Bloom event.recipes.tfc.bloomery('tfc:raw_iron_bloom', 'minecraft:charcoal', Fluid.of('gtceu:iron', 144), 15000) @@ -330,4 +336,4 @@ function registerTFCMetalsRecipes(event) { .EUt(GTValues.VA[GTValues.LV]) })}) //#endregion -} \ No newline at end of file +}