More efficient diamond grinding and armor recycling
This commit is contained in:
parent
3610535169
commit
0fa72c4fc3
2 changed files with 16 additions and 18 deletions
|
@ -392,6 +392,18 @@ public class ModRecipes {
|
|||
RecipeHandler.addRecipe(
|
||||
new BlastFurnaceRecipe(BlockOre.getOreByName("Pyrite"), ItemDusts.getDustByName("calcite"),
|
||||
new ItemStack(Items.IRON_INGOT, 2), ItemDusts.getDustByName("dark_ashes"), 140, 120, 1000));
|
||||
RecipeHandler.addRecipe(
|
||||
new BlastFurnaceRecipe(new ItemStack(Items.DIAMOND_HELMET), new ItemStack(Blocks.SAND),
|
||||
new ItemStack(Items.DIAMOND, 5), ItemDusts.getDustByName("dark_ashes"), 140, 120, 1000));
|
||||
RecipeHandler.addRecipe(
|
||||
new BlastFurnaceRecipe(new ItemStack(Items.DIAMOND_CHESTPLATE), new ItemStack(Blocks.SAND),
|
||||
new ItemStack(Items.DIAMOND, 8), ItemDusts.getDustByName("dark_ashes"), 140, 120, 1000));
|
||||
RecipeHandler.addRecipe(
|
||||
new BlastFurnaceRecipe(new ItemStack(Items.DIAMOND_LEGGINGS), new ItemStack(Blocks.SAND),
|
||||
new ItemStack(Items.DIAMOND, 7), ItemDusts.getDustByName("dark_ashes"), 140, 120, 1000));
|
||||
RecipeHandler.addRecipe(
|
||||
new BlastFurnaceRecipe(new ItemStack(Items.DIAMOND_BOOTS), new ItemStack(Blocks.SAND),
|
||||
new ItemStack(Items.DIAMOND, 4), ItemDusts.getDustByName("dark_ashes"), 140, 120, 1000));
|
||||
}
|
||||
|
||||
static void addIc2Recipes() {
|
||||
|
@ -420,22 +432,6 @@ public class ModRecipes {
|
|||
// 'L', "lapotronCrystal",
|
||||
// 'T', TechRebornAPI.recipeCompact.getItem("teleporter"));
|
||||
|
||||
// RebornCraftingHelper.addShapedOreRecipe(new
|
||||
// ItemStack(ModBlocks.electricCraftingTable),
|
||||
// "ITI", "IBI", "ICI",
|
||||
// 'I', "plateIron",
|
||||
// 'C', "circuitAdvanced",
|
||||
// 'T', "crafterWood",
|
||||
// 'B', "machineBlockBasic");
|
||||
|
||||
// RebornCraftingHelper.addShapedOreRecipe(new
|
||||
// ItemStack(ModBlocks.electricCraftingTable),
|
||||
// "ATA", "ABA", "ACA",
|
||||
// 'A', "plateAluminum",
|
||||
// 'C', "circuitAdvanced",
|
||||
// 'T', "crafterWood",
|
||||
// 'B', "machineBlockBasic");
|
||||
|
||||
// RebornCraftingHelper.addShapedOreRecipe(new
|
||||
// ItemStack(ModBlocks.chunkLoader),
|
||||
// "SCS", "CMC", "SCS",
|
||||
|
|
|
@ -65,9 +65,11 @@ public class IndustrialGrinderRecipes extends RecipeMethods {
|
|||
register(getOre("oreRedstone"), WATER, 100, 64, getStack(Items.REDSTONE, 10), getMaterial("glowstone", 2, Type.SMALL_DUST));
|
||||
|
||||
register(getOre("oreDiamond"), WATER, 100, 64, getStack(Items.DIAMOND), getMaterial("diamond", 6, Type.SMALL_DUST), getMaterial("coal", Type.DUST));
|
||||
|
||||
register(getOre("oreEmerald"), WATER, 100, 64, getStack(Items.EMERALD), getMaterial("emerald", 6, Type.SMALL_DUST));
|
||||
register(getOre("oreDiamond"), MERCURY, 100, 64, getStack(Items.DIAMOND, 2), getMaterial("diamond", 3, Type.SMALL_DUST));
|
||||
|
||||
register(getOre("oreEmerald"), WATER, 100, 64, getStack(Items.EMERALD), getMaterial("emerald", 6, Type.SMALL_DUST));
|
||||
register(getOre("oreEmerald"), MERCURY, 100, 64, getStack(Items.EMERALD, 2), getMaterial("emerald", 3, Type.SMALL_DUST));
|
||||
|
||||
//TR ores
|
||||
register(getOre("oreCopper"), WATER, 100, 64, getMaterial("copper", 2, Type.DUST), getMaterial("gold", Type.SMALL_DUST), getMaterial("nickel", Type.SMALL_DUST));
|
||||
register(getOre("oreCopper"), SODIUM_PERSULFATE, 100, 64, getMaterial("copper", 3, Type.DUST), getMaterial("gold", Type.SMALL_DUST), getMaterial("nickel", Type.SMALL_DUST));
|
||||
|
|
Loading…
Reference in a new issue