From be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Fri, 26 Oct 2018 17:18:48 +0100 Subject: + Added a roasting recipe for obtaining small quantities of Germanium. - Disabled obfuscated method names in ASM. % More adjustments to EBF and ABS recipes. $ Fixed names of Tungsten Steel & Stainless Steel Hexadecuple Pipes. $ Fixed recipe collision of Rose Gold and Tumbaga in the mixer. --- src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/core/recipe') diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 50658ee2a2..e5de6ab190 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -43,11 +43,11 @@ public class RECIPES_GREGTECH { chemicalReactorRecipes(); dehydratorRecipes(); blastFurnaceRecipes(); - + if (CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK) { largeChemReactorRecipes(); } - + fissionFuelRecipes(); autoclaveRecipes(); compressorRecipes(); @@ -120,9 +120,22 @@ public class RECIPES_GREGTECH { ELEMENT.getInstance().CERIUM.getDust(8) }, FluidUtils.getFluidStack("molten.trinium", 136 * 144), 0, 20 * 3000, - 2040); + 2040*4); } + // Germanium Roasting + CORE.RA.addBlastSmelterRecipe( + new ItemStack[] { + ItemUtils.getGregtechCircuit(22), + ItemUtils.getItemStackOfAmountFromOreDict("crushedPurifiedSphalerite", 8), + ELEMENT.getInstance().CARBON.getDust(32), + }, + Materials.SulfuricAcid.getFluid(2000), + ELEMENT.getInstance().GERMANIUM.getFluid(288), + 0, + 20 * 300, + 2000); + } private static void fluidcannerRecipes() { -- cgit