Skip to content

Commit

Permalink
Add Mn oxidizing into MnO & MnO2
Browse files Browse the repository at this point in the history
  • Loading branch information
trexxet committed Dec 15, 2024
1 parent 2df4117 commit 0c57cc9
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,15 @@ BR.recipeBuilder()
.EUt(120)
.buildAndRegister()

ROASTER.recipeBuilder()
.circuitMeta(2)
.inputs(ore('dustManganese') * 1)
.fluidInputs(fluid('oxygen') * 2000)
.outputs(metaitem('dustManganeseDioxide') * 3)
.duration(100)
.EUt(30)
.buildAndRegister()

// MnO

ROASTER.recipeBuilder()
Expand All @@ -259,6 +268,15 @@ ROASTER.recipeBuilder()
.EUt(30)
.buildAndRegister()

ROASTER.recipeBuilder()
.circuitMeta(1)
.inputs(ore('dustManganese') * 1)
.fluidInputs(fluid('oxygen') * 1000)
.outputs(metaitem('dustManganeseIiOxide') * 2)
.duration(100)
.EUt(30)
.buildAndRegister()

REACTION_FURNACE.recipeBuilder()
.inputs(ore('dustManganeseDioxide') * 3)
.fluidInputs(fluid('hydrogen') * 2000)
Expand Down

0 comments on commit 0c57cc9

Please sign in to comment.