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>
This commit is contained in:
34y34y34y34y34y34y34y34y34y 2025-06-22 23:44:01 +03:00 committed by GitHub
parent 2138a8b0dc
commit ae28642a7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
}