Skip to content

Commit

Permalink
Update IntegratedCircuits.groovy
Browse files Browse the repository at this point in the history
  • Loading branch information
trainvoi committed Jan 12, 2025
1 parent 67f54af commit e071bac
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions groovy/postInit/components/IntegratedCircuits.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Globals.solders.each { key, val ->
.inputs(metaitem('component.smd.diode') * 2)
.inputs(metaitem('wireFineCopper') * 2)
.inputs(metaitem('boltTin') * 2)
.fluidInputs(fluid(key) * val)
.fluidInputs(fluid(key) * val)
.outputs(metaitem('circuit.microprocessor') * 5)
.duration(200)
.EUt(120)
Expand All @@ -53,7 +53,7 @@ Globals.solders.each { key, val ->
.inputs(metaitem('component.smd.capacitor') * 4)
.inputs(metaitem('component.smd.transistor') * 4)
.inputs(metaitem('wireFineAnnealedCopper') * 4)
.fluidInputs(fluid(key) * val)
.fluidInputs(fluid(key) * val)
.outputs(metaitem('circuit.processor') * 2)
.duration(200)
.EUt(120)
Expand All @@ -66,25 +66,25 @@ Globals.solders.each { key, val ->
.inputs(metaitem('component.smd.transistor') * 4)
.inputs(metaitem('wireFineElectrum') * 8)
.inputs(metaitem('boltAnnealedCopper') * 8)
.fluidInputs(fluid(key) * (val * 2))
.fluidInputs(fluid(key) * (val * 2))
.outputs(metaitem('circuit.assembly') * 1)
.duration(300)
.EUt(120)
.buildAndRegister()

CIRCUIT_ASSEMBLER.recipeBuilder()
.inputs(metaitem('frameAluminium'))
.inputs(metaitem('circuit.assembly') * 2)
CIRCUIT_ASSEMBLER.recipeBuilder()
.inputs(metaitem('frameAluminium'))
.inputs(metaitem('circuit.assembly') * 2)
.inputs(metaitem('component.smd.diode') * 4)
.inputs(metaitem('plate.random_access_memory') * 4)
.inputs(metaitem('plate.central_processing_unit') * 4)
.inputs(ore('cableGtSingleElectrum') * 4)
.fluidInputs(fluid(key) * (val * 2))
.outputs(metaitem('circuit.workstation'))
.cleanroom(CleanroomType.CLEANROOM)
.duration(400)
.EUt(120)
.buildAndRegister();
.inputs(metaitem('plate.random_access_memory') * 4)
.inputs(metaitem('plate.central_processing_unit') * 4)
.inputs(ore('cableGtSingleElectrum') * 4)
.fluidInputs(fluid(key) * (val * 2))
.outputs(metaitem('circuit.workstation'))
.cleanroom(CleanroomType.CLEANROOM)
.duration(400)
.EUt(120)
.buildAndRegister();

CIRCUIT_ASSEMBLER.recipeBuilder()
.inputs(metaitem('frameAluminium') * 2)
Expand All @@ -96,7 +96,7 @@ Globals.solders.each { key, val ->
.fluidInputs(fluid(key) * (val * 4))
.outputs(metaitem('circuit.mainframe'))
.duration(500)
.EUt(480)
.buildAndRegister();
.EUt(480)
.buildAndRegister();

}

0 comments on commit e071bac

Please sign in to comment.