2014-06-27 23:43:09 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common.items;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2014-10-13 20:33:20 +00:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2014-06-27 23:43:09 +00:00
|
|
|
|
|
|
|
public class ApprenticeBloodOrb extends EnergyBattery
|
|
|
|
{
|
|
|
|
public ApprenticeBloodOrb(int damage)
|
|
|
|
{
|
|
|
|
super(damage);
|
|
|
|
orbLevel = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconRegister)
|
|
|
|
{
|
|
|
|
this.itemIcon = iconRegister.registerIcon("AlchemicalWizardry:ApprenticeBloodOrb");
|
|
|
|
}
|
|
|
|
}
|