cleaned up the red alloy recipes, also fixed #1565
This commit is contained in:
parent
b0608183e9
commit
1bea67bb09
2 changed files with 15 additions and 15 deletions
|
|
@ -62,8 +62,7 @@ function registerGTCEuTFCMetalsRecipes(event) {
|
|||
|
||||
// red alloy, because crucible always makes 4+1=5
|
||||
|
||||
event.remove({ id: 'gtceu:alloy_blast_smelter/red_alloy' })
|
||||
event.recipes.gtceu.alloy_blast_smelter('tfg:red_alloy_mixer')
|
||||
event.recipes.gtceu.alloy_blast_smelter('red_alloy')
|
||||
.itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone')
|
||||
.outputFluids(Fluid.of('gtceu:red_alloy', 720))
|
||||
.circuit(5)
|
||||
|
|
@ -71,43 +70,39 @@ function registerGTCEuTFCMetalsRecipes(event) {
|
|||
.EUt(GTValues.VA[GTValues.LV])
|
||||
|
||||
event.remove({ id: 'gtceu:mixer/red_alloy' })
|
||||
event.recipes.gtceu.mixer('tfg:red_alloy_mixer')
|
||||
// incorrect on purpose to prevent a greate duplicate recipe (the id becomes mixer/mixer/red_alloy)
|
||||
event.recipes.gtceu.mixer('gtceu:mixer/red_alloy')
|
||||
.itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone')
|
||||
.itemOutputs('5x gtceu:red_alloy_dust')
|
||||
.circuit(2)
|
||||
.duration(100)
|
||||
.EUt(7)
|
||||
|
||||
event.remove({ id: 'gtceu:centrifuge/red_alloy_separation' })
|
||||
event.recipes.gtceu.centrifuge('tfg:red_alloy_separation')
|
||||
event.recipes.gtceu.centrifuge('red_alloy_separation')
|
||||
.itemInputs('5x gtceu:red_alloy_dust')
|
||||
.itemOutputs('1x gtceu:copper_dust', '4x minecraft:redstone')
|
||||
.duration(900)
|
||||
.EUt(30)
|
||||
|
||||
event.remove({ id: 'gtceu:alloy_smelter/copper_dust_and_redstone_dust_into_red_alloy' })
|
||||
event.recipes.gtceu.alloy_smelter('tfg:copper_dust_and_redstone_dust_into_red_alloy')
|
||||
event.recipes.gtceu.alloy_smelter('copper_dust_and_redstone_dust_into_red_alloy')
|
||||
.itemInputs('1x gtceu:copper_dust', '4x minecraft:redstone')
|
||||
.itemOutputs('5x gtceu:red_alloy_ingot')
|
||||
.duration(50)
|
||||
.EUt(16)
|
||||
|
||||
event.remove({ id: 'gtceu:alloy_smelter/annealed_copper_dust_and_redstone_dust_into_red_alloy' })
|
||||
event.recipes.gtceu.alloy_smelter('tfg:annealed_copper_dust_and_redstone_dust_into_red_alloy')
|
||||
event.recipes.gtceu.alloy_smelter('annealed_copper_dust_and_redstone_dust_into_red_alloy')
|
||||
.itemInputs('1x gtceu:annealed_copper_dust', '4x minecraft:redstone')
|
||||
.itemOutputs('5x gtceu:red_alloy_ingot')
|
||||
.duration(50)
|
||||
.EUt(16)
|
||||
|
||||
event.remove({ id: 'gtceu:alloy_smelter/copper_ingot_and_redstone_dust_into_red_alloy' })
|
||||
event.recipes.gtceu.alloy_smelter('tfg:copper_ingot_and_redstone_dust_into_red_alloy')
|
||||
event.recipes.gtceu.alloy_smelter('copper_ingot_and_redstone_dust_into_red_alloy')
|
||||
.itemInputs('1x minecraft:copper_ingot', '4x minecraft:redstone')
|
||||
.itemOutputs('5x gtceu:red_alloy_ingot')
|
||||
.duration(50)
|
||||
.EUt(16)
|
||||
|
||||
event.remove({ id: 'gtceu:alloy_smelter/annealed_copper_ingot_and_redstone_dust_into_red_alloy' })
|
||||
event.recipes.gtceu.alloy_smelter('tfg:annealed_copper_ingot_and_redstone_dust_into_red_alloy')
|
||||
event.recipes.gtceu.alloy_smelter('annealed_copper_ingot_and_redstone_dust_into_red_alloy')
|
||||
.itemInputs('1x gtceu:annealed_copper_ingot', '4x minecraft:redstone')
|
||||
.itemOutputs('5x gtceu:red_alloy_ingot')
|
||||
.duration(50)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue