From 963fbe80bfa50871b535bac386c1d0b6a393ed23 Mon Sep 17 00:00:00 2001 From: Dream-Master Date: Sat, 19 Aug 2017 18:14:09 +0200 Subject: Data Input output recipes --- .../com/github/technus/tectech/loader/DreamCraftRecipeLoader.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java index a56c5e6164..73f1c79d56 100644 --- a/src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java +++ b/src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java @@ -70,6 +70,10 @@ public class DreamCraftRecipeLoader implements Runnable { GT_Values.RA.addAssemblerRecipe(new ItemStack[]{CustomItemList.eM_Computer_Casing.get(1, o), ItemList.Circuit_Masterquantumcomputer.get(4, o), ItemList.Cover_Screen.get(1, o ), CustomItemList.DATApipe.get(8, o), new ItemStack(Blocks.stone_button, 16, 32767)}, Materials.Tungsten.getMolten(2592), CustomItemList.Parametrizer_Hatch.get(1, o), 800, 122880, true); //Uncertainity GT_Values.RA.addAssemblerRecipe(new ItemStack[]{CustomItemList.eM_Computer_Casing.get(1, o), ItemList.Circuit_Ultimatecrystalcomputer.get(4, o), ItemList.Cover_Screen.get(1, o ), CustomItemList.DATApipe.get(16, o), new ItemStack(Blocks.stone_button, 16, 32767)}, Materials.Tungsten.getMolten(2592), CustomItemList.Uncertainty_Hatch.get(1, o), 1200, 122880, true); + //Data Input Hatch + GT_Values.RA.addAssemblerRecipe(new ItemStack[]{CustomItemList.eM_Computer_Casing.get(1, o), ItemList.Hatch_Input_Bus_LuV.get(1, o), ItemList.Circuit_Crystalcomputer.get(1, o), CustomItemList.DATApipe.get(2, o)}, Materials.Tungsten.getMolten(2592), CustomItemList.dataIn_Hatch.get(1, o), 1200, 122880, true); + //Data Output Hatch + GT_Values.RA.addAssemblerRecipe(new ItemStack[]{CustomItemList.eM_Computer_Casing.get(1, o), ItemList.Hatch_Output_Bus_LuV.get(1, o), ItemList.Circuit_Crystalcomputer.get(1, o), CustomItemList.DATApipe.get(2, o)}, Materials.Tungsten.getMolten(2592), CustomItemList.dataOut_Hatch.get(1, o), 1200, 122880, true); //endregion //Active Transformer -- cgit