From a02d763a0191241cad45b05a2e7c6ddd2001e260 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 15 Dec 2023 17:19:34 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D1=80=D0=B5=D1=86=D0=B5=D0=BF=D1=82=20=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D0=BB=D1=8C=D0=BD=D0=BE=D0=B9=20=D0=B6=D0=B5?= =?UTF-8?q?=D0=BB=D0=B5=D0=B7=D0=BD=D0=BE=D0=B9=20=D0=B4=D0=B2=D0=B5=D1=80?= =?UTF-8?q?=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kubejs/server_scripts/tfc/recipes.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index df6336627..c4466ced8 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -489,7 +489,7 @@ const registerTFCRecipes = (event) => { .id(`tfc:heating/metal/${metal}_sword`) // Крафт оголовья - event.recipes.tfc.anvil(`gtceu:${metal}_sword_head`, `#forge:ingots/double/${metal}`, ['punch_last', 'bend_not_last', 'draw_not_last']) + event.recipes.tfc.anvil(`gtceu:${metal}_sword_head`, `#forge:double_ingots/${metal}`, ['punch_last', 'bend_not_last', 'draw_not_last']) .tier(metalSpecs.tier) .bonus(true) .id(`tfc:anvil/${metal}_sword_blade`) @@ -873,6 +873,16 @@ const registerTFCRecipes = (event) => { .resultFluid(Fluid.of('tfc:metal/cast_iron', 288)) .id(`tfc:heating/grill`) + // Ванильная дверь + event.recipes.tfc.heating('minecraft:iron_door', 1535) + .resultFluid(Fluid.of('tfc:metal/cast_iron', 288)) + .id(`tfc:heating/iron_door`) + + event.recipes.tfc.anvil('minecraft:iron_door', '#forge:plates/wrought_iron', ['hit_last', 'draw_not_last', 'punch_not_last']) + .tier(3) + .id(`tfc:anvil/iron_door`) + + // Bloom -> Wrought Iron Ingot event.recipes.tfc.anvil('gtceu:wrought_iron_ingot', 'tfc:refined_iron_bloom', ['hit_last', 'hit_second_last', 'hit_third_last']).tier(2) .id('tfc:anvil/wrought_iron_from_bloom')