2013-08-23 16:59:50 +02:00
|
|
|
package com.pahimar.ee3.item;
|
|
|
|
|
2014-04-11 01:59:04 +02:00
|
|
|
import com.pahimar.ee3.block.ModBlocks;
|
2014-03-28 20:54:15 +01:00
|
|
|
import com.pahimar.ee3.reference.Names;
|
2013-08-23 16:59:50 +02:00
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
2014-04-11 01:59:04 +02:00
|
|
|
import net.minecraft.item.ItemBlock;
|
2013-08-23 16:59:50 +02:00
|
|
|
|
2013-12-16 02:26:42 +01:00
|
|
|
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 inertStone = new ItemInertStone();
|
|
|
|
public static final ItemEE miniumShard = new ItemMiniumShard();
|
|
|
|
public static final ItemEE miniumStone = new ItemMiniumStone();
|
|
|
|
public static final ItemEE philosophersStone = new ItemPhilosophersStone();
|
|
|
|
public static final ItemEE alchemicalInventoryUpgrade = new ItemAlchemicalInventoryUpgrade();
|
|
|
|
public static final ItemEE chalk = new ItemChalk();
|
|
|
|
public static final ItemEE diviningRod = new ItemDiviningRod();
|
2014-04-11 01:59:04 +02:00
|
|
|
public static final ItemBlock alchemicalChest = new ItemBlockAlchemicalChest(ModBlocks.alchemicalChest);
|
2013-08-23 16:59:50 +02:00
|
|
|
|
2013-12-16 02:26:42 +01:00
|
|
|
public static void init()
|
|
|
|
{
|
2014-04-01 22:11:52 +02:00
|
|
|
GameRegistry.registerItem(alchemicalBag, "item." + Names.Items.ALCHEMICAL_BAG);
|
|
|
|
GameRegistry.registerItem(alchemicalDust, "item." + Names.Items.ALCHEMICAL_DUST);
|
|
|
|
GameRegistry.registerItem(alchemicalFuel, "item." + Names.Items.ALCHEMICAL_FUEL);
|
|
|
|
GameRegistry.registerItem(inertStone, "item." + Names.Items.INERT_STONE);
|
|
|
|
GameRegistry.registerItem(miniumShard, "item." + Names.Items.MINIUM_SHARD);
|
|
|
|
GameRegistry.registerItem(miniumStone, "item." + Names.Items.MINIUM_STONE);
|
|
|
|
GameRegistry.registerItem(philosophersStone, "item." + Names.Items.PHILOSOPHERS_STONE);
|
|
|
|
GameRegistry.registerItem(chalk, "item." + Names.Items.CHALK);
|
|
|
|
GameRegistry.registerItem(alchemicalInventoryUpgrade, "item." + Names.Items.ALCHEMICAL_UPGRADE);
|
2014-04-02 04:47:08 +02:00
|
|
|
GameRegistry.registerItem(diviningRod, "item." + Names.Items.DIVINING_ROD);
|
2013-08-23 16:59:50 +02:00
|
|
|
}
|
|
|
|
}
|