equivalent-exchange-3/src/main/java/com/pahimar/ee3/init/ModItems.java

77 lines
4.3 KiB
Java
Raw Normal View History

package com.pahimar.ee3.init;
2013-08-23 16:59:50 +02:00
import com.pahimar.ee3.item.*;
import com.pahimar.ee3.reference.Names;
import com.pahimar.ee3.reference.Reference;
2013-08-23 16:59:50 +02:00
import cpw.mods.fml.common.registry.GameRegistry;
@GameRegistry.ObjectHolder(Reference.MOD_ID)
public class ModItems
{
2014-04-02 04:47:08 +02:00
public static final ItemEE alchemicalBag = new ItemAlchemicalBag();
public static final ItemEE alchemicalDust = new ItemAlchemicalDust();
public static final ItemEE alchemicalFuel = new ItemAlchemicalFuel();
public static final ItemEE stoneInert = new ItemInertStone();
public static final ItemEE shardMinium = new ItemMiniumShard();
public static final ItemEE stoneMinium = new ItemMiniumStone();
public static final ItemEE stonePhilosophers = new ItemPhilosophersStone();
public static final ItemEE alchemicalUpgrade = new ItemAlchemicalInventoryUpgrade();
2014-04-02 04:47:08 +02:00
public static final ItemEE chalk = new ItemChalk();
public static final ItemEE diviningRod = new ItemDiviningRod();
public static final ItemEE alchemicalTome = new ItemAlchemicalTome();
public static final ItemEE matter = new ItemMatter();
2014-07-24 22:01:42 +02:00
public static final ItemEE gem = new ItemGem();
public static final ItemEE lootBall = new ItemLootBall();
public static final ItemEE knowledgeScroll = new ItemKnowledgeScroll();
public static final ItemEE potionLethe = new ItemPotionLethe();
2014-07-17 03:40:12 +02:00
public static final ItemToolEE shovelDarkMatter = new ItemDarkMatterShovel();
2014-07-17 03:42:41 +02:00
public static final ItemToolEE pickAxeDarkMatter = new ItemDarkMatterPickAxe();
2014-07-17 03:40:12 +02:00
public static final ItemEE hammerDarkMatter = new ItemDarkMatterHammer();
public static final ItemToolEE axeDarkMatter = new ItemDarkMatterAxe();
public static final ItemDarkMatterHoe hoeDarkMatter = new ItemDarkMatterHoe();
2014-07-17 03:42:41 +02:00
public static final ItemDarkMatterFishingRod fishingRodDarkMatter = new ItemDarkMatterFishingRod();
2014-07-17 03:40:12 +02:00
public static final ItemDarkMatterShears shearsDarkMatter = new ItemDarkMatterShears();
public static final ItemDarkMatterBow bowDarkMatter = new ItemDarkMatterBow();
public static final ItemDarkMatterArrow arrowDarkMatter = new ItemDarkMatterArrow();
public static final ItemDarkMatterSword swordDarkMatter = new ItemDarkMatterSword();
2013-08-23 16:59:50 +02:00
public static void init()
{
GameRegistry.registerItem(alchemicalBag, Names.Items.ALCHEMICAL_BAG);
GameRegistry.registerItem(alchemicalDust, Names.Items.ALCHEMICAL_DUST);
GameRegistry.registerItem(alchemicalFuel, Names.Items.ALCHEMICAL_FUEL);
GameRegistry.registerItem(stoneInert, Names.Items.INERT_STONE);
GameRegistry.registerItem(shardMinium, Names.Items.MINIUM_SHARD);
GameRegistry.registerItem(stoneMinium, Names.Items.MINIUM_STONE);
GameRegistry.registerItem(stonePhilosophers, Names.Items.PHILOSOPHERS_STONE);
GameRegistry.registerItem(chalk, Names.Items.CHALK);
GameRegistry.registerItem(alchemicalUpgrade, Names.Items.ALCHEMICAL_UPGRADE);
GameRegistry.registerItem(diviningRod, Names.Items.DIVINING_ROD);
GameRegistry.registerItem(alchemicalTome, Names.Items.ALCHEMICAL_TOME);
GameRegistry.registerItem(matter, Names.Items.MATTER);
2014-07-24 22:01:42 +02:00
GameRegistry.registerItem(gem, Names.Items.GEM);
GameRegistry.registerItem(lootBall, Names.Items.LOOT_BALL);
GameRegistry.registerItem(knowledgeScroll, Names.Items.KNOWLEDGE_SCROLL);
GameRegistry.registerItem(potionLethe, Names.Items.POTION_LETHE);
2014-07-16 22:10:18 +02:00
GameRegistry.registerItem(shovelDarkMatter, Names.Tools.DARK_MATTER_SHOVEL);
2014-07-17 03:42:41 +02:00
GameRegistry.registerItem(pickAxeDarkMatter, Names.Tools.DARK_MATTER_PICKAXE);
2014-07-17 03:40:12 +02:00
GameRegistry.registerItem(hammerDarkMatter, Names.Tools.DARK_MATTER_HAMMER);
GameRegistry.registerItem(axeDarkMatter, Names.Tools.DARK_MATTER_AXE);
GameRegistry.registerItem(hoeDarkMatter, Names.Tools.DARK_MATTER_HOE);
2014-07-17 03:42:41 +02:00
GameRegistry.registerItem(fishingRodDarkMatter, Names.Tools.DARK_MATTER_FISHING_ROD);
2014-07-17 03:40:12 +02:00
GameRegistry.registerItem(shearsDarkMatter, Names.Tools.DARK_MATTER_SHEARS);
2014-07-16 22:10:18 +02:00
2014-07-17 03:40:12 +02:00
GameRegistry.registerItem(bowDarkMatter, Names.Weapons.DARK_MATTER_BOW);
GameRegistry.registerItem(arrowDarkMatter, Names.Weapons.DARK_MATTER_ARROW);
GameRegistry.registerItem(swordDarkMatter, Names.Weapons.DARK_MATTER_SWORD);
2014-07-16 22:10:18 +02:00
// Helm
// Chest
// Leggings
// Boots
2013-08-23 16:59:50 +02:00
}
}