From cf46fea074aa591354ace133cb5c2825ea962d5d Mon Sep 17 00:00:00 2001 From: Zygimantas Date: Wed, 10 Aug 2016 22:33:49 +0300 Subject: [PATCH] Electrolyzer recipes (#728) * 3 Pyrite dusts in an Industrial Electrolyzer gives 1 Iron dust and 2 Sulfur dust * referenced to issue #484, fixed #1, #3, #6, #7 --- src/main/java/techreborn/init/ModRecipes.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/techreborn/init/ModRecipes.java b/src/main/java/techreborn/init/ModRecipes.java index 89813eafd..a3c5abaa6 100644 --- a/src/main/java/techreborn/init/ModRecipes.java +++ b/src/main/java/techreborn/init/ModRecipes.java @@ -2046,7 +2046,7 @@ public class ModRecipes ItemCells.getCellByName("nitrogen"), ItemCells.getCellByName("carbon"), null, null, 80, 60)); RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("pyrite", 3), null, - ItemDusts.getDustByName("iron"), ItemDusts.getDustByName("sulfur"), null, null, 120, 128)); + ItemDusts.getDustByName("iron"), ItemDusts.getDustByName("sulfur", 2), null, null, 120, 128)); RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("sphalerite", 2), null, ItemDusts.getDustByName("zinc"), ItemDusts.getDustByName("sulfur"), null, null, 150, 100)); @@ -3228,13 +3228,13 @@ public class ModRecipes ItemCells.getCellByName("empty", 2), ItemCells.getCellByName("empty", 3), 400, 90)); RecipeHandler.addRecipe( - new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("ruby", 6), ItemCells.getCellByName("empty"), + new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("ruby", 9), ItemCells.getCellByName("empty"), ItemDusts.getDustByName("aluminum", 2), ItemCells.getCellByName("empty", 1), ItemDusts.getDustByName("chrome", 1), null, 140, 90)); - RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("sapphire", 5), + RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("sapphire", 8), ItemCells.getCellByName("empty"), ItemDusts.getDustByName("aluminum", 2), - ItemCells.getCellByName("empty", 5), null, null, 100, 60)); + ItemCells.getCellByName("empty"), null, null, 100, 60)); RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemCells.getCellByName("sodiumSulfide", 2), null, ItemCells.getCellByName("sodium", 1), ItemDusts.getDustByName("sulfur", 1), null, @@ -3242,7 +3242,7 @@ public class ModRecipes RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("peridot", 5), ItemCells.getCellByName("empty"), ItemDusts.getDustByName("aluminum", 2), - ItemCells.getCellByName("empty", 5), null, null, 100, 60)); + ItemCells.getCellByName("empty"), null, null, 100, 60)); RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("emerald", 29), ItemCells.getCellByName("empty", 18), ItemCells.getCellByName("berylium", 3), @@ -3273,13 +3273,13 @@ public class ModRecipes RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("pyrope", 20), ItemCells.getCellByName("empty", 9), ItemDusts.getDustByName("aluminum", 2), ItemDusts.getDustByName("magnesium", 3), ItemCells.getCellByName("silicon", 3), - ItemCells.getCellByName("empty", 9), 400, 120)); + ItemCells.getCellByName("empty", 6), 400, 120)); ItemStack sand = new ItemStack(Blocks.SAND); sand.stackSize = 16; RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(sand, ItemCells.getCellByName("empty", 2), - ItemCells.getCellByName("silicon", 1), ItemCells.getCellByName("empty", 2), null, null, 1000, 25)); + ItemCells.getCellByName("silicon", 1), ItemCells.getCellByName("empty"), null, null, 1000, 25)); RecipeHandler.addRecipe(new IndustrialElectrolyzerRecipe(ItemDusts.getDustByName("almandine", 20), ItemCells.getCellByName("empty", 9), ItemDusts.getDustByName("aluminum", 2),