From ae28642a7bca25597239ecc3fc7c1ea7e56f227c Mon Sep 17 00:00:00 2001 From: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> Date: Sun, 22 Jun 2025 23:44:01 +0300 Subject: [PATCH] Liquid burning (#1204) * Added ABS glowstone recipe Idk how useful this is but I want it Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> * Update recipes.js Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> * Update recipes.js Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> * Added the straw TomTomTom gave it to me to copy paste it here so the straw is all his work Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> * Now it's tin alloy fluid pipe as per pyritie's wishes Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> * Added Tom's anvil recipe for the straw Also added comments to make it a clear region Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> * Tier 5 now for straw Tom edited the message after I saw it . Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> * Tom's changes to anvil recipe , now tier 3 and plate instead of pipe Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> --------- Signed-off-by: 34y34y34y34y34y34y34y34y34y <34y34y34y34y34y34y34y34y34y@gmail.com> --- .../create_additions/recipes.js | 101 ++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/kubejs/server_scripts/create_additions/recipes.js b/kubejs/server_scripts/create_additions/recipes.js index 9c3d4c964..7d75a4558 100644 --- a/kubejs/server_scripts/create_additions/recipes.js +++ b/kubejs/server_scripts/create_additions/recipes.js @@ -92,4 +92,105 @@ const registerCreateAdditionsRecipes = (event) => { E: 'gtceu:tin_single_cable', F: '#tfg:shafts' }).id('tfg:createadditions/shaped/alternator') + +//#region Liquid blaze burners + + event.recipes.tfc.anvil('createaddition:straw', '#forge:plates/tin_alloy', ['shrink_second_last', 'upset_not_last', 'punch_last']) + .tier(3) + .id(`tfc:anvil/straw`) + + event.recipes.gtceu.lathe('assembler:createaddition_straw') + .itemInputs('forge:small_fluid_pipes/tin_alloy') + .itemOutputs('createaddition:straw') + .duration(20*6) + .EUt(16) + + event.custom({ + type: 'vintageimprovements:turning', + ingredients: [{ tag: 'forge:small_fluid_pipes/tin_alloy' }], + results: [{ item: 'createaddition:straw' }], + processingTime: 20*6 + }).id(`tfg:vi/lathe/straw`) + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'minecraft:lava', + amount: 100 + }, + burnTime: 7*9*9 + }).id('tfg:createadditions/liquid_burning/lava') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'forge:creosote', + amount: 160 + }, + burnTime: 10*9*9 + }).id('tfg:createadditions/liquid_burning/creosote') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'forge:biomass', + amount: 40 + }, + burnTime: 10*9*9 + }).id('tfg:createadditions/liquid_burning/biomass') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'forge:oil', + amount: 200 + }, + burnTime: 10*9*9 + }).id('tfg:createadditions/liquid_burning/oil') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'forge:oil_heavy', + amount: 32 + }, + burnTime: 10*9*9 + }).id('tfg:createadditions/liquid_burning/oil_heavy') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'forge:sulfuric_heavy_fuel', + amount: 32 + }, + burnTime: 10*9*9 + }).id('tfg:createadditions/liquid_burning/sulfuric_heavy_fuel') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'forge:heavy_fuel', + amount: 16 + }, + burnTime: 30*9*9 + }).id('tfg:createadditions/liquid_burning/heavy_fuel') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'forge:fish_oil', + amount: 160 + }, + burnTime: 10*9*9 + }).id('tfg:createadditions/liquid_burning/fish_oil') + + event.custom({ + type: 'createaddition:liquid_burning', + input: { + fluidTag: 'tfc:olive_oil', + amount: 50 + }, + burnTime: 150*9*9 + }).id('tfg:createadditions/liquid_burning/olive_oil') +//#endregion }