aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-10-05 20:30:57 +1000
committerAlkalus <draknyte1@hotmail.com>2017-10-05 20:30:57 +1000
commita73cfc50672b20bece82db0e20546cce47548db5 (patch)
tree5de0ac328127fbbfdfdc11173008aaab88aa608e /src/Java/gtPlusPlus/core/recipe
parent7e86a106ba8411ba2c959d58562f0d941be801c5 (diff)
downloadGT5-Unofficial-a73cfc50672b20bece82db0e20546cce47548db5.tar.gz
GT5-Unofficial-a73cfc50672b20bece82db0e20546cce47548db5.tar.bz2
GT5-Unofficial-a73cfc50672b20bece82db0e20546cce47548db5.zip
+ Added a custom recipe handler for the Advanced Combiner.
+ Added a Combined recipe for the HG-1223 Super Conductor. % Slight tweak to material generator.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
index f627d28c00..24c1bd4855 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
@@ -7,6 +7,7 @@ import gtPlusPlus.core.block.ModBlocks;
import gtPlusPlus.core.item.ModItems;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.lib.LoadedMods;
+import gtPlusPlus.core.material.ALLOY;
import gtPlusPlus.core.material.nuclear.NUCLIDE;
import gtPlusPlus.core.recipe.common.CI;
import gtPlusPlus.core.util.Utils;
@@ -50,6 +51,7 @@ public class RECIPES_GREGTECH {
benderRecipes();
cyclotronRecipes();
blastSmelterRecipes();
+ advancedMixerRecipes();
addFuels();
}
@@ -948,5 +950,22 @@ public class RECIPES_GREGTECH {
2040,
500*20);
}
+
+ private static void advancedMixerRecipes(){
+ //HgBa2Ca2Cu3O8
+ CORE.RA.addMixerRecipe(
+ ItemUtils.getItemStackOfAmountFromOreDict("cellMercury", 1),
+ ItemUtils.getItemStackOfAmountFromOreDict("dustBarium", 2),
+ ItemUtils.getItemStackOfAmountFromOreDict("dustCalcium", 2),
+ ItemUtils.getItemStackOfAmountFromOreDict("dustCopper", 3),
+ FluidUtils.getFluidStack("oxygen", 8000),
+ null,
+ ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 1),
+ ALLOY.HG1223.getDust(16),
+ null,
+ null,
+ 30*20,
+ 500);
+ }
} \ No newline at end of file