diff options
author | Dream-Master <dream-master@gmx.net> | 2017-08-19 18:14:09 +0200 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2017-08-19 18:14:20 +0200 |
commit | 963fbe80bfa50871b535bac386c1d0b6a393ed23 (patch) | |
tree | adf3618291f5ac64b72e183d036b51a5749d353b /src | |
parent | 09873c41a152eb8476ae85a6f21e050c94c1b611 (diff) | |
download | GT5-Unofficial-963fbe80bfa50871b535bac386c1d0b6a393ed23.tar.gz GT5-Unofficial-963fbe80bfa50871b535bac386c1d0b6a393ed23.tar.bz2 GT5-Unofficial-963fbe80bfa50871b535bac386c1d0b6a393ed23.zip |
Data Input output recipes
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java | 4 |
1 files changed, 4 insertions, 0 deletions
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 |