Fix Nitrogen Black Steel EBF recipe

This commit is contained in:
IntegerLimit 2023-03-12 20:32:44 +11:00
parent f7215df26e
commit 3685b0f4a2

View File

@ -44,8 +44,20 @@ fluid_solidifier.recipeBuilder().fluidInputs(<liquid:tough_alloy> * 144).notCons
// Black Steel Ingot * 1
<recipemap:electric_blast_furnace>.findRecipe(120, [<metaitem:dustBlackSteel>, <metaitem:circuit.integrated>.withTag({Configuration: 1})], null).remove();
blast_furnace.recipeBuilder().inputs([<metaitem:dustBlackSteel>]).outputs([<metaitem:ingotBlackSteel>]).property("temperature", 1000).duration(200).EUt(120).buildAndRegister();
blast_furnace.recipeBuilder().inputs([<metaitem:dustBlackSteel>]).fluidInputs([<liquid:nitrogen> * 1000]).outputs([<metaitem:ingotBlackSteel>]).property("temperature", 1000).duration(135).EUt(120).buildAndRegister();
blast_furnace.recipeBuilder()
.inputs([<metaitem:dustBlackSteel>])
.circuit(1)
.outputs([<metaitem:ingotBlackSteel>])
.property("temperature", 1000)
.duration(200).EUt(120).buildAndRegister();
blast_furnace.recipeBuilder()
.inputs([<metaitem:dustBlackSteel>])
.circuit(2)
.fluidInputs([<liquid:nitrogen> * 1000])
.outputs([<metaitem:ingotBlackSteel>])
.property("temperature", 1000)
.duration(135).EUt(120).buildAndRegister();
// Black Steel * 720
<recipemap:alloy_blast_smelter>.findRecipe(120, [<metaitem:dustNickel>, <metaitem:dustBlackBronze>, <metaitem:dustSteel> * 3, <metaitem:circuit.integrated>.withTag({Configuration: 13})], [<liquid:nitrogen> * 5000]).remove();