added some more glue recipes

This commit is contained in:
Pyritie
2025-04-24 22:10:48 +01:00
parent 2be25e16f4
commit 8b9f0d693c
2 changed files with 27 additions and 5 deletions

View File

@@ -499,7 +499,7 @@ const registerGTCEURecipes = (event) => {
}).id('gtceu:shaped/electric_blast_furnace')
// Клей из ТФК клея
event.recipes.gtceu.centrifuge('glue_from_tfc_glue')
event.recipes.gtceu.extractor('glue_from_tfc_glue')
.itemInputs('tfc:glue')
.outputFluids(Fluid.of('gtceu:glue', 50))
.duration(400)

View File

@@ -409,7 +409,7 @@ function registerVintageImprovementsRecipes(event) {
event.custom({
type: 'vintageimprovements:pressurizing',
ingredients: [ingotItem, ingotItem, { item: 'tfc:powder/flux' }],
"heatRequirement": "heated",
heatRequirement: "heated",
results: [ChemicalHelper.get(TFGTagPrefix.ingotDouble, material, 1)],
processingTime: material.getMass() * 6 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
}).id(`tfg:vi/pressurizing/${material.getName()}_double_ingot`)
@@ -419,7 +419,7 @@ function registerVintageImprovementsRecipes(event) {
event.custom({
type: 'vintageimprovements:pressurizing',
ingredients: [plateItem, plateItem, { item: 'tfc:powder/flux' }],
"heatRequirement": "heated",
heatRequirement: "heated",
results: [ChemicalHelper.get(TagPrefix.plateDouble, material, 1)],
processingTime: material.getMass() * 6 * global.VINTAGE_IMPROVEMENTS_DURATION_MULTIPLIER
}).id(`tfg:vi/pressurizing/${material.getName()}_double_plate`)
@@ -529,9 +529,31 @@ function registerVintageImprovementsRecipes(event) {
results: [{ fluid: 'gtceu:glue', amount: 50 }],
heatRequirement: "heated",
processingTime: 100
}).id('tfg:vi/vacuumizing/glue')
}).id('tfg:vi/vacuumizing/glue_melting')
event.custom({
type: 'vintageimprovements:vacuumizing',
ingredients: [{ item: 'gtceu:sticky_resin' }],
results: [{ fluid: 'gtceu:glue', amount: 100 }],
heatRequirement: "heated",
processingTime: 200
}).id('tfg:vi/vacuumizing/glue_from_resin')
event.custom({
type: 'vintageimprovements:vacuumizing',
ingredients: [{ item: 'minecraft:bone_meal' }, { fluid: 'tfc:limewater', amount: 500 }],
results: [{ fluid: 'gtceu:glue', amount: 50 }],
heatRequirement: "heated",
processingTime: 100
}).id('tfg:vi/vacuumizing/glue_from_bone_meal')
event.custom({
type: 'vintageimprovements:pressurizing',
ingredients: [{ fluid: 'gtceu:glue', amount: 50 }],
results: [{ item: 'tfc:glue' }],
processingTime: 100
}).id('tfg:vi/pressurizing/glue_solidifying')
// TODO: Remove me when we upgrade Greate and can just slap rubber onto wires again
event.custom({
type: 'vintageimprovements:vacuumizing',
ingredients: [{ item: 'gtceu:rubber_dust' }],