changed recipes for sprinkler and tree tap to extruder, added curving press ones too

This commit is contained in:
Pyritie 2025-08-11 20:58:15 +01:00
parent 0349729547
commit a9d3141ecb
3 changed files with 20 additions and 4 deletions

View file

@ -90,9 +90,9 @@ const registerAFCRecipes = (event) => {
.bonus(false)
.id('afc:anvil/tree_tap')
event.recipes.gtceu.assembler('afc:tree_tap')
event.recipes.gtceu.extruder('afc:tree_tap')
.itemInputs('#forge:ingots/copper')
.circuit(3)
.notConsumable('gtceu:bottle_extruder_mold')
.itemOutputs('afc:tree_tap')
.duration(50)
.EUt(7)

View file

@ -192,10 +192,10 @@ const registerFirmaLifeRecipes = (event) => {
//#region Медная / Copper
event.recipes.gtceu.bender('tfg:firmalife/sprinkler_electric_only')
event.recipes.gtceu.extruder('tfg:firmalife/sprinkler_electric_only')
.itemInputs('#forge:plates/copper')
.notConsumable('tfg:small_casing_extruder_mold')
.itemOutputs('firmalife:sprinkler')
.circuit(4)
.duration(60)
.EUt(8)

View file

@ -701,6 +701,22 @@ function registerVintageImprovementsRecipes(event) {
processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
}).id(`tfg:vi/curving/fire_brick`)
event.custom({
type: 'vintageimprovements:curving',
ingredients: [{ tag: 'forge:ingots/copper' }],
itemAsHead: 'gtceu:bottle_extruder_mold',
results: [{ item: 'afc:tree_tap' }],
processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
}).id(`tfg:vi/curving/tree_tap`)
event.custom({
type: 'vintageimprovements:curving',
ingredients: [{ tag: 'forge:plates/copper' }],
itemAsHead: 'tfg:small_casing_extruder_mold',
results: [{ item: 'firmalife:sprinkler' }],
processingTime: 50 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
}).id(`tfg:vi/curving/sprinkler`)
// #endregion
}