Added all gems and crafting parts
This commit is contained in:
parent
b08afb1d5a
commit
e87f2d2430
5 changed files with 232 additions and 1 deletions
|
@ -1,17 +1,29 @@
|
|||
package techreborn.init;
|
||||
|
||||
import techreborn.items.ItemDusts;
|
||||
import techreborn.items.ItemGems;
|
||||
import techreborn.items.ItemIngots;
|
||||
import techreborn.items.ItemParts;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class ModItems {
|
||||
|
||||
public static Item dusts;
|
||||
public static Item ingots;
|
||||
public static Item gems;
|
||||
public static Item parts;
|
||||
|
||||
public static void init()
|
||||
{
|
||||
dusts = new ItemDusts();
|
||||
GameRegistry.registerItem(dusts, "dust");
|
||||
ingots = new ItemIngots();
|
||||
GameRegistry.registerItem(ingots, "ingot");
|
||||
gems = new ItemGems();
|
||||
GameRegistry.registerItem(gems, "gem");
|
||||
parts = new ItemParts();
|
||||
GameRegistry.registerItem(parts, "part");
|
||||
|
||||
registerOreDict();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue