2014-02-14 20:20:20 +00:00
|
|
|
package WayofTime.alchemicalWizardry;
|
|
|
|
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.Item;
|
2014-03-07 12:02:18 +00:00
|
|
|
import WayofTime.alchemicalWizardry.common.items.AWBaseItems;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ActivationCrystal;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.AirScribeTool;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ApprenticeBloodOrb;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ArchmageBloodOrb;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ArmourInhibitor;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.BlankSpell;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.BloodShard;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.BoundArmour;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.BoundAxe;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.BoundPickaxe;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.BoundShovel;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.CheatyItem;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.DaggerOfSacrifice;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.DemonPlacer;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.DemonicTelepositionFocus;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.DuskScribeTool;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.EarthScribeTool;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.EnergyBattery;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.EnergyBazooka;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.EnergyBlast;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.EnergySword;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.EnhancedTelepositionFocus;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.FireScribeTool;
|
2014-03-15 21:43:59 +00:00
|
|
|
import WayofTime.alchemicalWizardry.common.items.ItemAlchemyBase;
|
2014-03-07 12:02:18 +00:00
|
|
|
import WayofTime.alchemicalWizardry.common.items.ItemComplexSpellCrystal;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ItemComponents;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ItemDiabloKey;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ItemRitualDiviner;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.LavaCrystal;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.LifeBucket;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.MagicianBloodOrb;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.MasterBloodOrb;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.ReinforcedTelepositionFocus;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.SacrificialDagger;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.TelepositionFocus;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.WaterScribeTool;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.AlchemyFlask;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.AverageLengtheningCatalyst;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.AveragePowerCatalyst;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.EnhancedFillingAgent;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.GreaterLengtheningCatalyst;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.GreaterPowerCatalyst;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.MundaneLengtheningCatalyst;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.MundanePowerCatalyst;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.StandardBindingAgent;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.StandardFillingAgent;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.WeakBindingAgent;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.potion.WeakFillingAgent;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.AirSigil;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.DivinationSigil;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.ItemBloodLightSigil;
|
2014-03-15 21:43:59 +00:00
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.ItemSigilOfEnderSeverance;
|
2014-05-04 22:11:09 +00:00
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.ItemSigilOfSupression;
|
2014-03-07 12:02:18 +00:00
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.LavaSigil;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfElementalAffinity;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfGrowth;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHaste;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfMagnetism;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfTheBridge;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfTheFastMiner;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfWind;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.VoidSigil;
|
|
|
|
import WayofTime.alchemicalWizardry.common.items.sigil.WaterSigil;
|
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
2014-02-14 20:20:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created with IntelliJ IDEA.
|
|
|
|
* User: Pokefenn
|
|
|
|
* Date: 17/01/14
|
|
|
|
* Time: 19:48
|
|
|
|
*/
|
|
|
|
public class ModItems
|
|
|
|
{
|
|
|
|
public static Item weakBloodOrb;
|
|
|
|
public static Item apprenticeBloodOrb;
|
|
|
|
public static Item magicianBloodOrb;
|
|
|
|
public static Item energyBlaster;
|
|
|
|
public static Item energySword;
|
|
|
|
public static Item lavaCrystal;
|
|
|
|
public static Item waterSigil;
|
|
|
|
public static Item lavaSigil;
|
|
|
|
public static Item voidSigil;
|
|
|
|
public static Item blankSlate;
|
|
|
|
public static Item reinforcedSlate;
|
|
|
|
public static Item sacrificialDagger;
|
|
|
|
public static Item daggerOfSacrifice;
|
|
|
|
public static Item airSigil;
|
|
|
|
public static Item sigilOfTheFastMiner;
|
|
|
|
public static Item sigilOfElementalAffinity;
|
|
|
|
public static Item sigilOfHaste;
|
|
|
|
public static Item sigilOfHolding;
|
|
|
|
public static Item divinationSigil;
|
|
|
|
public static Item waterScribeTool;
|
|
|
|
public static Item fireScribeTool;
|
|
|
|
public static Item earthScribeTool;
|
|
|
|
public static Item airScribeTool;
|
|
|
|
public static Item activationCrystal;
|
|
|
|
public static Item boundPickaxe;
|
|
|
|
public static Item boundAxe;
|
|
|
|
public static Item boundShovel;
|
|
|
|
public static Item boundHelmet;
|
|
|
|
public static Item boundPlate;
|
|
|
|
public static Item boundLeggings;
|
|
|
|
public static Item boundBoots;
|
|
|
|
public static Item weakBloodShard;
|
|
|
|
public static Item growthSigil;
|
|
|
|
public static Item blankSpell;
|
|
|
|
public static Item masterBloodOrb;
|
|
|
|
public static Item alchemyFlask;
|
|
|
|
public static Item standardBindingAgent;
|
|
|
|
public static Item mundanePowerCatalyst;
|
|
|
|
public static Item averagePowerCatalyst;
|
|
|
|
public static Item greaterPowerCatalyst;
|
|
|
|
public static Item mundaneLengtheningCatalyst;
|
|
|
|
public static Item averageLengtheningCatalyst;
|
|
|
|
public static Item greaterLengtheningCatalyst;
|
|
|
|
public static Item incendium;
|
|
|
|
public static Item magicales;
|
|
|
|
public static Item sanctus;
|
|
|
|
public static Item aether;
|
|
|
|
public static Item simpleCatalyst;
|
|
|
|
public static Item crepitous;
|
|
|
|
public static Item crystallos;
|
|
|
|
public static Item terrae;
|
|
|
|
public static Item aquasalus;
|
|
|
|
public static Item tennebrae;
|
|
|
|
public static Item demonBloodShard;
|
|
|
|
public static Item archmageBloodOrb;
|
|
|
|
public static Item sigilOfWind;
|
|
|
|
public static Item telepositionFocus;
|
|
|
|
public static Item enhancedTelepositionFocus;
|
|
|
|
public static Item reinforcedTelepositionFocus;
|
|
|
|
public static Item demonicTelepositionFocus;
|
|
|
|
public static Item imbuedSlate;
|
|
|
|
public static Item demonicSlate;
|
|
|
|
public static Item duskScribeTool;
|
|
|
|
public static Item sigilOfTheBridge;
|
|
|
|
public static Item armourInhibitor;
|
|
|
|
public static Item creativeFiller;
|
|
|
|
public static Item demonPlacer;
|
2014-03-07 12:02:18 +00:00
|
|
|
|
|
|
|
public static Item baseItems;
|
2014-03-15 21:43:59 +00:00
|
|
|
public static Item baseAlchemyItems;
|
2014-02-14 20:20:20 +00:00
|
|
|
|
|
|
|
public static Item weakFillingAgent;
|
|
|
|
public static Item standardFillingAgent;
|
|
|
|
public static Item enhancedFillingAgent;
|
|
|
|
public static Item weakBindingAgent;
|
|
|
|
public static Item itemRitualDiviner;
|
|
|
|
public static Item sanguineHelmet;
|
|
|
|
public static Item focusBloodBlast;
|
|
|
|
public static Item focusGravityWell;
|
|
|
|
public static Item sigilOfMagnetism;
|
|
|
|
public static Item itemKeyOfDiablo;
|
|
|
|
public static Item energyBazooka;
|
|
|
|
public static Item itemBloodLightSigil;
|
|
|
|
public static Item itemComplexSpellCrystal;
|
|
|
|
public static Item itemBloodFrame;
|
|
|
|
|
2014-03-15 21:43:59 +00:00
|
|
|
public static Item itemSigilOfEnderSeverance;
|
2014-05-04 22:11:09 +00:00
|
|
|
public static Item itemSigilOfSupression;
|
2014-03-15 21:43:59 +00:00
|
|
|
|
2014-02-14 20:20:20 +00:00
|
|
|
public static Item bucketLife;
|
|
|
|
|
|
|
|
public static void init()
|
|
|
|
{
|
|
|
|
weakBloodOrb = new EnergyBattery(5000).setUnlocalizedName("weakBloodOrb");
|
|
|
|
apprenticeBloodOrb = new ApprenticeBloodOrb(25000).setUnlocalizedName("apprenticeBloodOrb");
|
|
|
|
magicianBloodOrb = new MagicianBloodOrb(150000).setUnlocalizedName("magicianBloodOrb");
|
|
|
|
masterBloodOrb = new MasterBloodOrb(1000000).setUnlocalizedName("masterBloodOrb");
|
|
|
|
archmageBloodOrb = new ArchmageBloodOrb(10000000).setUnlocalizedName("archmageBloodOrb");
|
|
|
|
energyBlaster = new EnergyBlast().setUnlocalizedName("energyBlast");
|
|
|
|
energySword = new EnergySword().setUnlocalizedName("energySword");
|
|
|
|
lavaCrystal = new LavaCrystal().setUnlocalizedName("lavaCrystal");
|
|
|
|
waterSigil = new WaterSigil().setUnlocalizedName("waterSigil");
|
|
|
|
lavaSigil = new LavaSigil().setUnlocalizedName("lavaSigil");
|
|
|
|
voidSigil = new VoidSigil().setUnlocalizedName("voidSigil");
|
|
|
|
blankSlate = new AWBaseItems().setUnlocalizedName("blankSlate");
|
|
|
|
reinforcedSlate = new AWBaseItems().setUnlocalizedName("reinforcedSlate");
|
|
|
|
sacrificialDagger = new SacrificialDagger().setUnlocalizedName("sacrificialDagger");
|
|
|
|
daggerOfSacrifice = new DaggerOfSacrifice().setUnlocalizedName("daggerOfSacrifice");
|
|
|
|
airSigil = new AirSigil().setUnlocalizedName("airSigil");
|
|
|
|
sigilOfTheFastMiner = new SigilOfTheFastMiner().setUnlocalizedName("sigilOfTheFastMiner");
|
|
|
|
sigilOfElementalAffinity = new SigilOfElementalAffinity().setUnlocalizedName("sigilOfElementalAffinity");
|
|
|
|
sigilOfHaste = new SigilOfHaste().setUnlocalizedName("sigilOfHaste");
|
|
|
|
sigilOfHolding = new SigilOfHolding().setUnlocalizedName("sigilOfHolding");
|
|
|
|
divinationSigil = new DivinationSigil().setUnlocalizedName("divinationSigil");
|
|
|
|
waterScribeTool = new WaterScribeTool().setUnlocalizedName("waterScribeTool");
|
|
|
|
fireScribeTool = new FireScribeTool().setUnlocalizedName("fireScribeTool");
|
|
|
|
earthScribeTool = new EarthScribeTool().setUnlocalizedName("earthScribeTool");
|
|
|
|
airScribeTool = new AirScribeTool().setUnlocalizedName("airScribeTool");
|
|
|
|
activationCrystal = new ActivationCrystal();
|
|
|
|
boundPickaxe = new BoundPickaxe().setUnlocalizedName("boundPickaxe");
|
|
|
|
boundAxe = new BoundAxe().setUnlocalizedName("boundAxe");
|
|
|
|
boundShovel = new BoundShovel().setUnlocalizedName("boundShovel");
|
|
|
|
boundHelmet = new BoundArmour(0).setUnlocalizedName("boundHelmet");
|
|
|
|
boundPlate = new BoundArmour(1).setUnlocalizedName("boundPlate");
|
|
|
|
boundLeggings = new BoundArmour(2).setUnlocalizedName("boundLeggings");
|
|
|
|
boundBoots = new BoundArmour(3).setUnlocalizedName("boundBoots");
|
|
|
|
weakBloodShard = new BloodShard().setUnlocalizedName("weakBloodShard");
|
|
|
|
growthSigil = new SigilOfGrowth().setUnlocalizedName("growthSigil");
|
|
|
|
blankSpell = new BlankSpell().setUnlocalizedName("blankSpell");
|
|
|
|
alchemyFlask = new AlchemyFlask().setUnlocalizedName("alchemyFlask");
|
|
|
|
standardBindingAgent = new StandardBindingAgent().setUnlocalizedName("standardBindingAgent");
|
|
|
|
mundanePowerCatalyst = new MundanePowerCatalyst().setUnlocalizedName("mundanePowerCatalyst");
|
|
|
|
averagePowerCatalyst = new AveragePowerCatalyst().setUnlocalizedName("averagePowerCatalyst");
|
|
|
|
greaterPowerCatalyst = new GreaterPowerCatalyst().setUnlocalizedName("greaterPowerCatalyst");
|
|
|
|
mundaneLengtheningCatalyst = new MundaneLengtheningCatalyst().setUnlocalizedName("mundaneLengtheningCatalyst");
|
|
|
|
averageLengtheningCatalyst = new AverageLengtheningCatalyst().setUnlocalizedName("averageLengtheningCatalyst");
|
|
|
|
greaterLengtheningCatalyst = new GreaterLengtheningCatalyst().setUnlocalizedName("greaterLengtheningCatalyst");
|
|
|
|
incendium = new AlchemyReagent().setUnlocalizedName("incendium");
|
|
|
|
magicales = new AlchemyReagent().setUnlocalizedName("magicales");
|
|
|
|
sanctus = new AlchemyReagent().setUnlocalizedName("sanctus");
|
|
|
|
aether = new AlchemyReagent().setUnlocalizedName("aether");
|
|
|
|
simpleCatalyst = new AlchemyReagent().setUnlocalizedName("simpleCatalyst");
|
|
|
|
crepitous = new AlchemyReagent().setUnlocalizedName("crepitous");
|
|
|
|
crystallos = new AlchemyReagent().setUnlocalizedName("crystallos");
|
|
|
|
terrae = new AlchemyReagent().setUnlocalizedName("terrae");
|
|
|
|
aquasalus = new AlchemyReagent().setUnlocalizedName("aquasalus");
|
|
|
|
tennebrae = new AlchemyReagent().setUnlocalizedName("tennebrae");
|
|
|
|
demonBloodShard = new BloodShard().setUnlocalizedName("demonBloodShard");
|
|
|
|
sigilOfWind = new SigilOfWind().setUnlocalizedName("sigilOfWind");
|
|
|
|
telepositionFocus = new TelepositionFocus(1).setUnlocalizedName("telepositionFocus");
|
|
|
|
enhancedTelepositionFocus = new EnhancedTelepositionFocus().setUnlocalizedName("enhancedTelepositionFocus");
|
|
|
|
reinforcedTelepositionFocus = new ReinforcedTelepositionFocus().setUnlocalizedName("reinforcedTelepositionFocus");
|
|
|
|
demonicTelepositionFocus = new DemonicTelepositionFocus().setUnlocalizedName("demonicTelepositionFocus");
|
|
|
|
imbuedSlate = new AWBaseItems().setUnlocalizedName("imbuedSlate");
|
|
|
|
demonicSlate = new AWBaseItems().setUnlocalizedName("demonicSlate");
|
|
|
|
duskScribeTool = new DuskScribeTool().setUnlocalizedName("duskScribeTool");
|
|
|
|
sigilOfTheBridge = new SigilOfTheBridge().setUnlocalizedName("sigilOfTheBridge");
|
|
|
|
armourInhibitor = new ArmourInhibitor().setUnlocalizedName("armourInhibitor");
|
|
|
|
creativeFiller = new CheatyItem().setUnlocalizedName("cheatyItem");
|
|
|
|
demonPlacer = new DemonPlacer().setUnlocalizedName("demonPlacer");
|
|
|
|
weakFillingAgent = new WeakFillingAgent().setUnlocalizedName("weakFillingAgent");
|
|
|
|
standardFillingAgent = new StandardFillingAgent().setUnlocalizedName("standardFillingAgent");
|
|
|
|
enhancedFillingAgent = new EnhancedFillingAgent().setUnlocalizedName("enhancedFillingAgent");
|
|
|
|
weakBindingAgent = new WeakBindingAgent().setUnlocalizedName("weakBindingAgent");
|
|
|
|
itemRitualDiviner = new ItemRitualDiviner().setUnlocalizedName("ritualDiviner");
|
|
|
|
sigilOfMagnetism = new SigilOfMagnetism().setUnlocalizedName("sigilOfMagnetism");
|
|
|
|
itemKeyOfDiablo = new ItemDiabloKey().setUnlocalizedName("itemDiabloKey");
|
|
|
|
energyBazooka = new EnergyBazooka().setUnlocalizedName("energyBazooka");
|
|
|
|
itemBloodLightSigil = new ItemBloodLightSigil().setUnlocalizedName("bloodLightSigil");
|
|
|
|
itemComplexSpellCrystal = new ItemComplexSpellCrystal().setUnlocalizedName("itemComplexSpellCrystal");
|
|
|
|
bucketLife = (new LifeBucket(ModBlocks.blockLifeEssence)).setUnlocalizedName("bucketLife").setContainerItem(Items.bucket).setCreativeTab(CreativeTabs.tabMisc);
|
2014-03-15 21:43:59 +00:00
|
|
|
itemSigilOfEnderSeverance = (new ItemSigilOfEnderSeverance()).setUnlocalizedName("itemSigilOfEnderSeverance");
|
2014-03-07 12:02:18 +00:00
|
|
|
baseItems = new ItemComponents().setUnlocalizedName("baseItems");
|
2014-03-15 21:43:59 +00:00
|
|
|
baseAlchemyItems = new ItemAlchemyBase().setUnlocalizedName("baseAlchemyItems");
|
2014-05-04 22:11:09 +00:00
|
|
|
itemSigilOfSupression = new ItemSigilOfSupression().setUnlocalizedName("itemSigilOfSupression");
|
2014-02-14 20:20:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void registerItems()
|
|
|
|
{
|
|
|
|
GameRegistry.registerItem(ModItems.weakBloodOrb, "weakBloodOrb");
|
|
|
|
GameRegistry.registerItem(ModItems.apprenticeBloodOrb, "apprenticeBloodOrb");
|
|
|
|
GameRegistry.registerItem(ModItems.magicianBloodOrb, "magicianBloodOrb");
|
|
|
|
GameRegistry.registerItem(ModItems.energyBlaster, "energyBlaster");
|
|
|
|
|
|
|
|
GameRegistry.registerItem(ModItems.energySword, "energySword");
|
|
|
|
GameRegistry.registerItem(ModItems.lavaCrystal, "lavaCrystal");
|
|
|
|
GameRegistry.registerItem(ModItems.waterSigil, "waterSigil");
|
|
|
|
GameRegistry.registerItem(ModItems.lavaSigil, "lavaSigil");
|
|
|
|
GameRegistry.registerItem(ModItems.voidSigil, "voidSigil");
|
|
|
|
GameRegistry.registerItem(ModItems.blankSlate, "blankSlate");
|
|
|
|
GameRegistry.registerItem(ModItems.reinforcedSlate, "reinforcedSlate");
|
|
|
|
GameRegistry.registerItem(ModItems.sacrificialDagger, "sacrificialKnife");
|
|
|
|
GameRegistry.registerItem(ModItems.daggerOfSacrifice, "daggerOfSacrifice");
|
|
|
|
GameRegistry.registerItem(ModItems.airSigil, "airSigil");
|
|
|
|
GameRegistry.registerItem(ModItems.sigilOfTheFastMiner, "sigilOfTheFastMiner");
|
|
|
|
GameRegistry.registerItem(ModItems.sigilOfElementalAffinity, "sigilOfElementalAffinity");
|
|
|
|
GameRegistry.registerItem(ModItems.sigilOfHaste, "sigilOfHaste");
|
|
|
|
GameRegistry.registerItem(ModItems.sigilOfHolding, "sigilOfHolding");
|
|
|
|
GameRegistry.registerItem(ModItems.divinationSigil, "divinationSigil");
|
|
|
|
GameRegistry.registerItem(ModItems.waterScribeTool, "waterScribeTool");
|
|
|
|
GameRegistry.registerItem(ModItems.fireScribeTool, "fireScribeTool");
|
|
|
|
GameRegistry.registerItem(ModItems.earthScribeTool, "earthScribeTool");
|
|
|
|
GameRegistry.registerItem(ModItems.airScribeTool, "airScribeTool");
|
|
|
|
GameRegistry.registerItem(ModItems.activationCrystal, "activationCrystal");
|
|
|
|
GameRegistry.registerItem(ModItems.boundPickaxe, "boundPickaxe");
|
|
|
|
GameRegistry.registerItem(ModItems.boundAxe, "boundAxe");
|
|
|
|
GameRegistry.registerItem(ModItems.boundShovel, "boundShovel");
|
|
|
|
GameRegistry.registerItem(ModItems.boundHelmet, "boundHelmet");
|
|
|
|
GameRegistry.registerItem(ModItems.boundPlate, "boundPlate");
|
|
|
|
GameRegistry.registerItem(ModItems.boundLeggings, "boundLeggings");
|
|
|
|
GameRegistry.registerItem(ModItems.boundBoots, "boundBoots");
|
|
|
|
GameRegistry.registerItem(ModItems.weakBloodShard, "weakBloodShard");
|
|
|
|
GameRegistry.registerItem(ModItems.growthSigil, "growthSigil");
|
|
|
|
GameRegistry.registerItem(ModItems.blankSpell, "blankSpell");
|
|
|
|
GameRegistry.registerItem(ModItems.masterBloodOrb, "masterBloodOrb");
|
|
|
|
GameRegistry.registerItem(ModItems.alchemyFlask, "alchemyFlask");
|
|
|
|
GameRegistry.registerItem(ModItems.standardBindingAgent, "standardBindingAgent");
|
|
|
|
GameRegistry.registerItem(ModItems.mundanePowerCatalyst, "mundanePowerCatalyst");
|
|
|
|
GameRegistry.registerItem(ModItems.averagePowerCatalyst, "averagePowerCatalyst");
|
|
|
|
GameRegistry.registerItem(ModItems.greaterPowerCatalyst, "greaterPowerCatalyst");
|
|
|
|
GameRegistry.registerItem(ModItems.mundaneLengtheningCatalyst, "mundaneLengtheningCatalyst");
|
|
|
|
GameRegistry.registerItem(ModItems.averageLengtheningCatalyst, "averageLengtheningCatalyst");
|
|
|
|
GameRegistry.registerItem(ModItems.greaterLengtheningCatalyst, "greaterLengtheningCatalyst");
|
|
|
|
GameRegistry.registerItem(ModItems.incendium, "incendium");
|
|
|
|
GameRegistry.registerItem(ModItems.magicales, "magicales");
|
|
|
|
GameRegistry.registerItem(ModItems.sanctus, "sanctus");
|
|
|
|
GameRegistry.registerItem(ModItems.aether, "aether");
|
|
|
|
GameRegistry.registerItem(ModItems.simpleCatalyst, "simpleCatalyst");
|
|
|
|
GameRegistry.registerItem(ModItems.crepitous, "crepitous");
|
|
|
|
GameRegistry.registerItem(ModItems.crystallos, "crystallos");
|
|
|
|
GameRegistry.registerItem(ModItems.terrae, "terrae");
|
|
|
|
GameRegistry.registerItem(ModItems.aquasalus, "aquasalus");
|
|
|
|
GameRegistry.registerItem(ModItems.tennebrae, "tennebrae");
|
|
|
|
GameRegistry.registerItem(ModItems.demonBloodShard, "demonBloodShard");
|
|
|
|
GameRegistry.registerItem(ModItems.archmageBloodOrb, "archmageBloodOrb");
|
|
|
|
GameRegistry.registerItem(ModItems.sigilOfWind, "sigilOfWind");
|
|
|
|
GameRegistry.registerItem(ModItems.telepositionFocus, "telepositionFocus");
|
|
|
|
GameRegistry.registerItem(ModItems.enhancedTelepositionFocus, "enhancedTelepositionFocus");
|
|
|
|
GameRegistry.registerItem(ModItems.reinforcedTelepositionFocus, "reinforcedTelepositionFocus");
|
|
|
|
GameRegistry.registerItem(ModItems.demonicTelepositionFocus, "demonicTelepositionFocus");
|
|
|
|
GameRegistry.registerItem(ModItems.imbuedSlate, "imbuedSlate");
|
|
|
|
GameRegistry.registerItem(ModItems.demonicSlate, "demonicSlate");
|
|
|
|
GameRegistry.registerItem(ModItems.duskScribeTool, "duskScribeTool");
|
|
|
|
GameRegistry.registerItem(ModItems.sigilOfTheBridge, "sigilOfTheBridge");
|
|
|
|
GameRegistry.registerItem(ModItems.armourInhibitor, "armourInhibitor");
|
|
|
|
GameRegistry.registerItem(ModItems.creativeFiller, "creativeFiller");
|
|
|
|
GameRegistry.registerItem(ModItems.demonPlacer, "demonPlacer");
|
|
|
|
|
|
|
|
GameRegistry.registerItem(ModItems.weakFillingAgent, "weakFillingAgent");
|
|
|
|
GameRegistry.registerItem(ModItems.standardFillingAgent, "standardFillingAgent");
|
|
|
|
GameRegistry.registerItem(ModItems.enhancedFillingAgent, "enhancedFillingAgent");
|
|
|
|
GameRegistry.registerItem(ModItems.weakBindingAgent, "weakBindingAgent");
|
|
|
|
GameRegistry.registerItem(ModItems.itemRitualDiviner, "itemRitualDiviner");
|
|
|
|
//GameRegistry.registerItem(ModItems.sanguineHelmet, "sanguineHelmet");
|
|
|
|
//GameRegistry.registerItem(ModItems.focusBloodBlast, "focusBloodBlast");
|
|
|
|
//GameRegistry.registerItem(ModItems.focusGravityWell, "focusGravityWell");
|
|
|
|
GameRegistry.registerItem(ModItems.sigilOfMagnetism, "sigilOfMagnetism");
|
|
|
|
GameRegistry.registerItem(ModItems.itemKeyOfDiablo, "itemKeyOfDiablo");
|
|
|
|
GameRegistry.registerItem(ModItems.energyBazooka, "energyBazooka");
|
|
|
|
GameRegistry.registerItem(ModItems.itemBloodLightSigil, "itemBloodLightSigil");
|
|
|
|
GameRegistry.registerItem(ModItems.itemComplexSpellCrystal, "itemComplexSpellCrystal");
|
2014-05-04 22:11:09 +00:00
|
|
|
GameRegistry.registerItem(ModItems.itemSigilOfSupression, "sigilOfSupression");
|
2014-03-15 21:43:59 +00:00
|
|
|
GameRegistry.registerItem(ModItems.itemSigilOfEnderSeverance, "sigilOfEnderSeverance");
|
|
|
|
|
2014-02-14 20:20:20 +00:00
|
|
|
GameRegistry.registerItem(ModItems.bucketLife, "bucketLife");
|
2014-03-07 12:02:18 +00:00
|
|
|
|
|
|
|
GameRegistry.registerItem(ModItems.baseItems, "bloodMagicBaseItems");
|
2014-03-15 21:43:59 +00:00
|
|
|
GameRegistry.registerItem(ModItems.baseAlchemyItems, "bloodMagicBaseAlchemyItems");
|
2014-02-14 20:20:20 +00:00
|
|
|
//GameRegistry.registerItem(ModItems.itemBloodFrame, "itemBloodFrame");
|
|
|
|
}
|
|
|
|
}
|