From 2cd9f79c645cf5ad40bb9403aab95a8dd2889ad9 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Mon, 22 Sep 2025 15:49:44 +0100 Subject: [PATCH] gave the torch -> wood ash interaction an ae2 recipe just so people can find it easier --- kubejs/server_scripts/tfc/recipes.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 894afb6ec..1b2cb7cc6 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -339,4 +339,14 @@ const registerTFCRecipes = (event) => { event.replaceInput({ id: `tfc:crafting/${material}_horse_armor`}, `tfc:jute_fiber`, `#tfg:burlap_fiber`) }) + // Just a dummy recipe to tell people they can get wood ash by throwing torches in water via TFC + event.custom({ + type: "ae2:transform", + circumstance: { + type: "fluid", + tag: "tfc:water" + }, + ingredients: [{ item: 'tfc:torch' }], + result: { item: 'tfc:powder/wood_ash' } + }).id(`tfg:ae_transform/torch_to_wood_ash`) }