fixed cobalt brass buzzsaws not being obtainable until mv

This commit is contained in:
Pyritie
2025-07-26 17:10:06 +01:00
parent f117c73e5d
commit 76001f0fc4

View File

@@ -217,7 +217,27 @@ function registerGTCEUMetalRecipes(event) {
event.remove({ id: `gtceu:shaped/plate_double_${material.getName()}` })
if (material.getProperty(TFGPropertyKey.TFC_PROPERTY) == null) {
if (material == GTMaterials.CobaltBrass) {
event.recipes.greate.compacting(doublePlateItem, [plateItem, plateItem, 'tfc:powder/flux'])
.heated()
.recipeTier(1)
.id(`greate:compacting/cobalt_brass_double_plate`)
event.recipes.gtceu.bender('bend_cobalt_brass_plate_to_double_plate')
.itemInputs('2x #forge:plates/cobalt_brass')
.itemOutputs(doublePlateItem)
.circuit(2)
.duration(20 * 5.8)
.EUt(24)
event.recipes.gtceu.bender('bend_cobalt_brass_ingot_to_double_plate')
.itemInputs('2x #forge:ingots/cobalt_brass')
.itemOutputs(doublePlateItem)
.circuit(2)
.duration(20 * 5.8)
.EUt(24)
}
else if (material.getProperty(TFGPropertyKey.TFC_PROPERTY) == null) {
event.recipes.greate.compacting(doublePlateItem, [plateItem, plateItem, 'tfc:powder/flux'])
.heated()
.recipeTier(2)