Skip to content

Commit

Permalink
Merge pull request #1217 from trainvoi/some-recipe-fixes
Browse files Browse the repository at this point in the history
Some recipe fixes
  • Loading branch information
bruberu authored Jan 14, 2025
2 parents adb9d51 + e071bac commit 7c40c82
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion groovy/postInit/chemistry/ChemistryOverhaul.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ ROASTER.recipeBuilder()
BR.recipeBuilder()
.inputs(ore('dustQuicklime') * 2)
.circuitMeta(1)
.fluidInputs(fluid('carbon_dioxide') * 3000)
.fluidInputs(fluid('carbon_dioxide') * 1000)
.outputs(metaitem('dustCalcite') * 5)
.duration(120)
.EUt(7)
Expand Down
36 changes: 18 additions & 18 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)
.inputs(ore('componentDiode') * 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();
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();

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 7c40c82

Please sign in to comment.