diff options
author | MadMan310 <66886359+MadMan310@users.noreply.github.com> | 2022-10-07 12:05:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 21:05:23 +0200 |
commit | feba52916774639c0f4076160ab75b2a7e926a49 (patch) | |
tree | ed008effaae36923e70ced9d785d4225c0a0cf10 /src/main/java/gtPlusPlus/core | |
parent | b2d57d8d8c8ad427b19a662101bff1c8a23e2a93 (diff) | |
download | GT5-Unofficial-feba52916774639c0f4076160ab75b2a7e926a49.tar.gz GT5-Unofficial-feba52916774639c0f4076160ab75b2a7e926a49.tar.bz2 GT5-Unofficial-feba52916774639c0f4076160ab75b2a7e926a49.zip |
Mega Alloy Blast Smelter (#394)
* Initial commit
* added BW dependancy & runtime
* dimmminsishing returns on coil discount, fix other stuff
* Coil discount is now a linear function
* spotlessApply
* Add recipe
* Fixed scanner recipe
Diffstat (limited to 'src/main/java/gtPlusPlus/core')
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 1832b06558..b34578973d 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -698,6 +698,30 @@ public class RECIPES_GREGTECH { 20 * 60 * 30 * (GTNH ? 2 : 1), (int) MaterialUtils.getVoltageForTier(8)); } + GT_Values.RA.addAssemblylineRecipe( + GregtechItemList.Industrial_AlloyBlastSmelter.get(1, new Object() {}), + 20 * 60 * 30, + new Object[] { + GregtechItemList.Industrial_AlloyBlastSmelter.get(64L, new Object() {}), + GregtechItemList.Industrial_AlloyBlastSmelter.get(64L, new Object() {}), + GregtechItemList.Industrial_AlloyBlastSmelter.get(64L, new Object() {}), + GregtechItemList.Industrial_AlloyBlastSmelter.get(64L, new Object() {}), + ItemList.UV_Coil.get(16L, new Object() {}), + ItemList.Conveyor_Module_UV.get(4L, new Object() {}), + new Object[] {OrePrefixes.circuit.get(Materials.Superconductor), 8}, + new Object[] {OrePrefixes.circuit.get(Materials.Ultimate), 16}, + ItemList.Circuit_Chip_PPIC.get(16, new Object() {}), + ALLOY.PIKYONIUM.getPlate(16), + ALLOY.CINOBITE.getScrew(32) + }, + new FluidStack[] { + ALLOY.PIKYONIUM.getFluidStack(144 * 8), + ALLOY.INDALLOY_140.getFluidStack(144 * 9), + Materials.SolderingAlloy.getMolten(144 * 10) + }, + GregtechItemList.Mega_AlloyBlastSmelter.get(1L), + 60 * 20, + 1000000); } private static void laserEngraverRecipes() { |