Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
ra2 plasma forge
Browse files Browse the repository at this point in the history
  • Loading branch information
chochem committed Jan 13, 2024
1 parent 9977a5d commit 72583a9
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/main/java/goodgenerator/loader/RecipeLoader_02.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import static gregtech.api.recipe.RecipeMaps.fusionRecipes;
import static gregtech.api.recipe.RecipeMaps.mixerRecipes;
import static gregtech.api.recipe.RecipeMaps.multiblockChemicalReactorRecipes;
import static gregtech.api.recipe.RecipeMaps.plasmaForgeRecipes;
import static gregtech.api.recipe.RecipeMaps.unpackagerRecipes;
import static gregtech.api.recipe.RecipeMaps.vacuumFreezerRecipes;
import static gregtech.api.util.GT_RecipeBuilder.HOURS;
Expand Down Expand Up @@ -1450,16 +1451,14 @@ public static void InitLoadRecipe() {
1100,
1000);

GT_Values.RA.addPlasmaForgeRecipe(
new ItemStack[] { ItemRefer.HiC_T5.get(0) },
new FluidStack[] { MyMaterial.metastableOganesson.getMolten(1152),
MyMaterial.preciousMetalAlloy.getMolten(2304), MaterialsUEVplus.SpaceTime.getMolten(288),
MaterialsUEVplus.DimensionallyTranscendentResidue.getFluid(5000) },
new ItemStack[] {},
new FluidStack[] { MyMaterial.shirabon.getMolten(144) },
200,
1500000000,
13500);
GT_Values.RA.stdBuilder().itemInputs(ItemRefer.HiC_T5.get(0))
.fluidInputs(
MyMaterial.metastableOganesson.getMolten(1152),
MyMaterial.preciousMetalAlloy.getMolten(2304),
MaterialsUEVplus.SpaceTime.getMolten(288),
MaterialsUEVplus.DimensionallyTranscendentResidue.getFluid(5000))
.fluidOutputs(MyMaterial.shirabon.getMolten(144)).duration(10 * SECONDS).eut(1500000000)
.metadata(COIL_HEAT, 13500).addTo(plasmaForgeRecipes);
}

public static void FinishLoadRecipe() {
Expand Down

0 comments on commit 72583a9

Please sign in to comment.