2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.items.tools;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-03-07 12:51:28 +01:00
|
|
|
import ellpeck.actuallyadditions.util.IName;
|
|
|
|
import ellpeck.actuallyadditions.util.Util;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.item.ItemAxe;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
public class ItemAxeAA extends ItemAxe implements IName{
|
2015-02-20 22:45:33 +01:00
|
|
|
|
|
|
|
private String name;
|
2015-03-07 02:23:31 +01:00
|
|
|
private EnumRarity rarity;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
public ItemAxeAA(ToolMaterial toolMat, String unlocalizedName, EnumRarity rarity){
|
2015-02-17 16:15:16 +01:00
|
|
|
super(toolMat);
|
2015-02-20 22:45:33 +01:00
|
|
|
this.name = unlocalizedName;
|
2015-03-07 02:23:31 +01:00
|
|
|
this.rarity = rarity;
|
|
|
|
this.setUnlocalizedName(Util.setUnlocalizedName(this));
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
|
|
|
|
list.add(Util.addStandardInformation(this));
|
|
|
|
if(Util.isShiftPressed()){
|
2015-02-20 22:45:33 +01:00
|
|
|
list.add(StatCollector.translateToLocal("tooltip." + Util.MOD_ID_LOWER + ".durability.desc") + ": " + (this.getMaxDamage()-this.getDamage(stack)) + "/" + this.getMaxDamage());
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public IIcon getIcon(ItemStack stack, int pass){
|
|
|
|
return this.itemIcon;
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
2015-02-20 22:45:33 +01:00
|
|
|
this.itemIcon = iconReg.registerIcon(Util.MOD_ID_LOWER + ":" + this.getName());
|
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return this.rarity;
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return name;
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
}
|