From feba52916774639c0f4076160ab75b2a7e926a49 Mon Sep 17 00:00:00 2001 From: MadMan310 <66886359+MadMan310@users.noreply.github.com> Date: Fri, 7 Oct 2022 12:05:23 -0700 Subject: 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 --- .../gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/main/java/gtPlusPlus/core') 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() { -- cgit