Added a ton of IC2 crafting recipes
This commit is contained in:
parent
e8fc6d5a07
commit
4f0942f215
6 changed files with 299 additions and 8 deletions
|
@ -2,6 +2,7 @@ package techreborn.init;
|
|||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.oredict.OreDictionary;
|
||||
import techreborn.blocks.BlockAesu;
|
||||
|
@ -300,6 +301,10 @@ public class ModBlocks {
|
|||
OreDictionary.registerOre("blockNickel", new ItemStack(storage, 1, 14));
|
||||
OreDictionary.registerOre("blockInvar", new ItemStack(storage, 1, 15));
|
||||
|
||||
OreDictionary.registerOre("craftingPiston", Blocks.piston);
|
||||
OreDictionary.registerOre("craftingPiston", Blocks.sticky_piston);
|
||||
OreDictionary.registerOre("crafterWood", Blocks.crafting_table);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -536,6 +536,20 @@ public class ModItems {
|
|||
OreDictionary.registerOre("crushedPurifiedTetrahedrite", new ItemStack(purifiedCrushedOre, 1, 14));
|
||||
OreDictionary.registerOre("crushedPurifiedTungsten", new ItemStack(purifiedCrushedOre, 1, 15));
|
||||
|
||||
// Purified Crushed Ore
|
||||
OreDictionary.registerOre("craftingGrinder", new ItemStack(parts, 1, 8));
|
||||
OreDictionary.registerOre("craftingGrinder", new ItemStack(parts, 1, 10));
|
||||
OreDictionary.registerOre("circuitMaster", new ItemStack(parts, 1, 4));
|
||||
OreDictionary.registerOre("circuitElite", new ItemStack(parts, 1, 5));
|
||||
OreDictionary.registerOre("craftingSuperconductor", new ItemStack(parts, 1, 30));
|
||||
OreDictionary.registerOre("batteryUltimate", new ItemStack(lapotronpack));
|
||||
OreDictionary.registerOre("gearBronze", new ItemStack(parts, 1, 20));
|
||||
OreDictionary.registerOre("gearIron", new ItemStack(parts, 1, 21));
|
||||
OreDictionary.registerOre("gearTitanium", new ItemStack(parts, 1, 22));
|
||||
OreDictionary.registerOre("gearSteel", new ItemStack(parts, 1, 23));
|
||||
OreDictionary.registerOre("gearTungstensteel", new ItemStack(parts, 1, 24));
|
||||
OreDictionary.registerOre("blockLapis", new ItemStack(parts, 1, 27));
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue