2014-04-30 04:26:30 +02:00
|
|
|
package com.pahimar.ee3.init;
|
2013-08-23 16:59:50 +02:00
|
|
|
|
2014-04-30 04:26:30 +02:00
|
|
|
import com.pahimar.ee3.item.*;
|
2014-03-28 20:54:15 +01:00
|
|
|
import com.pahimar.ee3.reference.Names;
|
2014-05-26 17:28:51 +02:00
|
|
|
import com.pahimar.ee3.reference.Reference;
|
2013-08-23 16:59:50 +02:00
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
|
|
|
|
2014-05-26 17:28:51 +02:00
|
|
|
@GameRegistry.ObjectHolder(Reference.MOD_ID)
|
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();
|
2014-05-26 17:28:51 +02:00
|
|
|
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();
|
2015-11-28 05:07:45 +01:00
|
|
|
public static final ItemEE alchenomicon = new ItemAlchenomicon();
|
2013-08-23 16:59:50 +02:00
|
|
|
|
2013-12-16 02:26:42 +01:00
|
|
|
public static void init()
|
|
|
|
{
|
2014-05-25 16:55:50 +02:00
|
|
|
GameRegistry.registerItem(alchemicalBag, Names.Items.ALCHEMICAL_BAG);
|
|
|
|
GameRegistry.registerItem(alchemicalDust, Names.Items.ALCHEMICAL_DUST);
|
|
|
|
GameRegistry.registerItem(alchemicalFuel, Names.Items.ALCHEMICAL_FUEL);
|
2014-05-26 17:28:51 +02:00
|
|
|
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);
|
2014-05-25 16:55:50 +02:00
|
|
|
GameRegistry.registerItem(chalk, Names.Items.CHALK);
|
2014-05-26 17:28:51 +02:00
|
|
|
GameRegistry.registerItem(alchemicalUpgrade, Names.Items.ALCHEMICAL_UPGRADE);
|
2015-11-28 05:07:45 +01:00
|
|
|
GameRegistry.registerItem(alchenomicon, Names.Items.ALCHENOMICON, Names.Items.ALCHEMICAL_TOME);
|
2013-08-23 16:59:50 +02:00
|
|
|
}
|
|
|
|
}
|