aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-10-26 17:18:48 +0100
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-10-26 17:18:48 +0100
commitbe3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b (patch)
tree06e6ef11658a519146806fc0764e133232a5e0a1 /src/Java/gtPlusPlus/core/recipe
parent2cf05c4deaf3a26626853431f725d0ca375ffec3 (diff)
downloadGT5-Unofficial-be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b.tar.gz
GT5-Unofficial-be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b.tar.bz2
GT5-Unofficial-be3bdb8df41e3f05c9b48b5323c4d4dbd4bdbf7b.zip
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java19
1 files changed, 16 insertions, 3 deletions
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() {