Skip to content

Commit

Permalink
add stargateController recipe (#982)
Browse files Browse the repository at this point in the history
  • Loading branch information
wohaopa authored Sep 8, 2024
1 parent 9ac76fa commit a1052b8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/main/java/com/dreammaster/scripts/ScriptSGCraft.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public void loadRecipes() {
ItemStack irisUpgrade = getModItem(SGCraft.ID, "sgIrisUpgrade", 1, 0, missing);
ItemStack rfUnit = getModItem(SGCraft.ID, "rfPowerUnit", 1, 0, missing);
ItemStack ocInterface = getModItem(SGCraft.ID, "ocInterface", 1, 0, missing);
ItemStack stargateController = getModItem(SGCraft.ID, "stargateController", 1, 0, missing);

ItemStack universeCell = getModItem(AppliedEnergistics2.ID, "item.ItemExtremeStorageCell.Universe", 1, 0, missing);
ItemStack universeFluidCell = getModItem(AE2FluidCraft.ID, "fluid_storage.Universe", 1, 0, missing);
Expand Down Expand Up @@ -247,6 +248,27 @@ public void loadRecipes() {
'n', magmatterNanite,
'g', ItemList.GigaChad.get(1L));

// Stargate Controller
ExtremeCraftingManager.getInstance().addExtremeShapedOreRecipe(
stargateController,
"---mdm---",
"--mcccm--",
"-dcnnncd-",
"mcnspsncm",
"-dcnpncd-",
"--gcscg--",
"--msrsm--",
"--dgrgd--",
"--mmdmm--",
'm', magmatterBlock,
'd', darkMatterBlock,
'c', compact5Coil,
's', singularityStorage,
'r', ringBlock,
'n', magmatterNanite,
'g', ItemList.GigaChad.get(1L),
'p', magmatterSuperdensePlate);

// spotless:on
}
}

0 comments on commit a1052b8

Please sign in to comment.