diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-03 19:14:29 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-03-03 19:14:29 +1000 |
| commit | cd9ab98391dd7baaba4106e69823f4040d91e052 (patch) | |
| tree | d590093732f0b94a683b56f9598e5d81a65d711a /src/Java/gtPlusPlus/core/recipe | |
| parent | 94ccfe55a1b65f0c1173cb47fae1a68decb99354 (diff) | |
| download | GT5-Unofficial-cd9ab98391dd7baaba4106e69823f4040d91e052.tar.gz GT5-Unofficial-cd9ab98391dd7baaba4106e69823f4040d91e052.tar.bz2 GT5-Unofficial-cd9ab98391dd7baaba4106e69823f4040d91e052.zip | |
+ Added Multi-Use Casings.
+ Added Recipe for Multi-Machine and Multi-Use Casings.
% Improved Multi-Machine Manual.
$ Made Multi-Machine functional, disabled mode 3.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index adaa2b4609..e600ac81a1 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -1134,6 +1134,29 @@ public class RECIPES_Machines { GregtechItemList.Industrial_FishingPond.get(1)); } + + + + if (CORE.ConfigSwitches.enableMultiblock_IndustrialMultiMachine){ + ItemStack plate = ALLOY.STABALLOY.getPlate(1); + ItemStack o_Compressor = ItemList.Machine_HV_Compressor.get(1); + ItemStack o_Lathe = ItemList.Machine_HV_Lathe.get(1); + ItemStack o_Electromagnet = ItemList.Machine_HV_Polarizer.get(1); + ItemStack o_Fermenter = ItemList.Machine_HV_Fermenter.get(1); + ItemStack o_Distillery = ItemList.Machine_HV_Distillery.get(1); + ItemStack o_Extractor = ItemList.Machine_HV_Extractor.get(1); + RecipeUtils.recipeBuilder( + plate, CI.craftingToolHammer_Hard, plate, + "plateStainlessSteel", "frameGtZirconiumCarbide", "plateStainlessSteel", + plate, CI.craftingToolWrench, plate, + GregtechItemList.Casing_Multi_Use.get(Casing_Amount)); + + RecipeUtils.recipeBuilder( + o_Compressor, o_Lathe, o_Electromagnet, + plate, ItemUtils.getSimpleStack(ModBlocks.blockProjectTable), plate, + o_Fermenter, o_Distillery, o_Extractor, + GregtechItemList.Industrial_MultiMachine.get(1)); + } //Wireless Chargers RecipeUtils.addShapedGregtechRecipe( CI.emitter_LV, CI.circuitTier1, CI.emitter_LV, |
