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
This commit is contained in:
parent
d96149fc97
commit
cf46fea074
1 changed files with 7 additions and 7 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue