aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/recipe
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-07-15 21:21:04 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-07-15 21:21:04 +1000
commitbc05626aaa3fc6898ecdbf9aeee0aac081dd7e99 (patch)
tree8af0769b7a880810f18786016b49f42e5226b41d /src/Java/miscutil/core/recipe
parent2289408315ab5ec8d17d72a1c53a75789961d5c4 (diff)
downloadGT5-Unofficial-bc05626aaa3fc6898ecdbf9aeee0aac081dd7e99.tar.gz
GT5-Unofficial-bc05626aaa3fc6898ecdbf9aeee0aac081dd7e99.tar.bz2
GT5-Unofficial-bc05626aaa3fc6898ecdbf9aeee0aac081dd7e99.zip
+ Added the Matter Fabricator Multiblock.
+ Added Casings for the Matter Fabricator. + Added recipes for the Matter Fabricator. + Added the Wire Factory Multiblock. + Added Casings for the Wire Factory.
Diffstat (limited to 'src/Java/miscutil/core/recipe')
-rw-r--r--src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java
index 040c4e8377..1845e1304c 100644
--- a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java
+++ b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java
@@ -19,6 +19,7 @@ public class RECIPES_GREGTECH {
private static void execute(){
cokeOvenRecipes();
+ matterFabRecipes();
assemblerRecipes();
distilleryRecipes();
addFuels();
@@ -80,6 +81,28 @@ public class RECIPES_GREGTECH {
120); //EU
}catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");}
}
+
+ private static void matterFabRecipes(){
+ Utils.LOG_INFO("Loading Recipes for Matter Fabricator.");
+
+ try {
+
+ CORE.RA.addMattrFabricatorRecipe(
+ Materials.UUAmplifier.getFluid(1L), //Fluid Input
+ Materials.UUMatter.getFluid(1L), //Fluid Output
+ 800, //Time in ticks
+ 32); //EU
+ }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");}
+ try {
+
+ CORE.RA.addMattrFabricatorRecipe(
+ null, //Fluid Input
+ Materials.UUMatter.getFluid(1L), //Fluid Output
+ 3200, //Time in ticks
+ 32); //EU
+ }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");}
+
+ }
private static void assemblerRecipes(){
//GT_Values.RA.addAssemblerRecipe(GT_OreDictUnificator.get(OrePrefixes.plate, Materials.Titanium, 6L), ItemList.Casing_Turbine.get(1L, new Object[0]), ItemList.Casing_Turbine2.get(1L, new Object[0]), 50, 16);