From 6e899486b3a16099be8ce02f21f58cea593d0061 Mon Sep 17 00:00:00 2001 From: SpeeeDCraft <52341158+SpeeeDCraft@users.noreply.github.com> Date: Fri, 17 Nov 2023 10:12:45 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81:=20=D0=BD=D0=B5=20?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=B5=D0=BF=D0=BB=D0=B0=D0=B2=D0=BB=D1=8F?= =?UTF-8?q?=D1=8E=D1=82=D1=81=D1=8F=20=D0=BC=D0=B5=D0=BB=D0=BA=D0=B8=D0=B5?= =?UTF-8?q?=20=D0=BA=D1=83=D1=81=D0=BA=D0=B8=20=D0=BC=D0=B5=D1=82=D0=B0?= =?UTF-8?q?=D0=BB=D0=BB=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kubejs/server_scripts/tfc/recipes.js | 162 ++++++++++++++++++++++----- 1 file changed, 136 insertions(+), 26 deletions(-) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 5c6558746..03725d0c6 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -52,6 +52,141 @@ const registerTFCRecipes = (event) => { registerAutoTFCCastingRecipes(event) registerAutoTFCAnvilRecipes(event) + // Small Copper -> Copper + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_copper', + { item: "tfc:ore/small_native_copper" }, + { fluid: "gtceu:copper", amount: 12 }, + 1080, + false + ) + + // Small Gold -> Gold + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_gold', + { item: "tfc:ore/small_native_gold" }, + { fluid: "gtceu:gold", amount: 12 }, + 1060, + false + ) + + // Small Hematite -> Iron + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_hematite', + { item: "tfc:ore/small_hematite" }, + { fluid: "gtceu:iron", amount: 12 }, + 1535, + false + ) + + // Small Silver -> Silver + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_silver', + { item: "tfc:ore/small_native_silver" }, + { fluid: "gtceu:silver", amount: 12 }, + 961, + false + ) + + // Small Cassiterite -> Tin + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_cassiterite', + { item: "tfc:ore/small_cassiterite" }, + { fluid: "gtceu:tin", amount: 12 }, + 230, + false + ) + + // Small Bismuth -> Bismuth + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_bismuth', + { item: "tfc:ore/small_bismuthinite" }, + { fluid: "gtceu:bismuth", amount: 12 }, + 270, + false + ) + + // Small Nickel -> Nickel + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_garnierite', + { item: "tfc:ore/small_garnierite" }, + { fluid: "gtceu:nickel", amount: 12 }, + 1453, + false + ) + + // Small Malachite -> Copper + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_malachite', + { item: "tfc:ore/small_malachite" }, + { fluid: "gtceu:copper", amount: 12 }, + 1453, + false + ) + + // Small Magnetite -> Iron + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_magnetite', + { item: "tfc:ore/small_magnetite" }, + { fluid: "gtceu:iron", amount: 12 }, + 1535, + false + ) + + // Small Limonite -> Iron + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_limonite', + { item: "tfc:ore/small_limonite" }, + { fluid: "gtceu:iron", amount: 12 }, + 1535, + false + ) + + // Small Sphalerite -> Iron + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_sphalerite', + { item: "tfc:ore/small_sphalerite" }, + { fluid: "gtceu:zinc", amount: 12 }, + 420, + false + ) + + // Small Tetrahedrite -> Iron + addHeatingItemToFluidRecipe(event, + 'tfc:recipes/heating/tfg/small_tetrahedrite', + { item: "tfc:ore/small_tetrahedrite" }, + { fluid: "gtceu:copper", amount: 12 }, + 1080, + false + ) + + // 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 + ) + // Black Steel Ingot addAnvilRecipe(event, 'tfc:recipes/anvil/tfg/high_carbon_black_steel', @@ -178,32 +313,7 @@ const registerTFCRecipes = (event) => { [ "draw_any", "punch_last", "punch_not_last" ] ) - // 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' })