changed steel mech saw back to cobalt brass since you can craft it much more easily now

This commit is contained in:
Pyritie 2025-08-23 13:01:49 +01:00
parent 912bf72277
commit a3f9193001
2 changed files with 4 additions and 4 deletions

View file

@ -414,7 +414,7 @@ function registerGreateRecipes(event) {
'FE '
], {
A: '#gtceu:circuits/ulv',
B: 'gtceu:black_steel_buzz_saw_blade',
B: 'gtceu:cobalt_brass_buzz_saw_blade',
C: 'greate:steel_cogwheel',
D: 'gtceu:ulv_machine_hull',
E: 'greate:steel_shaft',
@ -422,7 +422,7 @@ function registerGreateRecipes(event) {
}).id('greate:shaped/steel_mechanical_saw')
event.recipes.gtceu.assembler('greate:steel_mechanical_saw')
.itemInputs('gtceu:ulv_machine_hull', 'greate:steel_shaft', '2x #gtceu:circuits/ulv', 'gtceu:black_steel_buzz_saw_blade', '2x greate:steel_cogwheel')
.itemInputs('gtceu:ulv_machine_hull', 'greate:steel_shaft', '2x #gtceu:circuits/ulv', 'gtceu:cobalt_brass_buzz_saw_blade', '2x greate:steel_cogwheel')
.itemOutputs('greate:steel_mechanical_saw')
.duration(200)
.EUt(GTValues.VA[GTValues.ULV])

View file

@ -381,7 +381,7 @@ function registerGreateRecyclingRecipes(event) {
.itemInputs('greate:steel_mechanical_saw')
.itemOutputs(
ChemicalHelper.get(TagPrefix.dust, GTMaterials.WroughtIron, 8),
ChemicalHelper.get(TagPrefix.dust, GTMaterials.BlackSteel, 2),
ChemicalHelper.get(TagPrefix.dust, GTMaterials.CobaltBrass, 2),
ChemicalHelper.get(TagPrefix.dust, GTMaterials.Copper, 4))
.duration(GTMaterials.CobaltBrass.getMass() * 16)
.category(GTRecipeCategories.MACERATOR_RECYCLING)
@ -391,7 +391,7 @@ function registerGreateRecyclingRecipes(event) {
.itemInputs('greate:steel_mechanical_saw')
.itemOutputs(
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.WroughtIron, 8),
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.BlackSteel, 2),
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.CobaltBrass, 2),
ChemicalHelper.get(TagPrefix.ingot, GTMaterials.AnnealedCopper, 4))
.duration(GTMaterials.CobaltBrass.getMass() * 16)
.category(GTRecipeCategories.ARC_FURNACE_RECYCLING)