2015-02-17 16:15:16 +01:00
|
|
|
package ellpeck.someprettyrandomstuff.items.tools;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
import ellpeck.someprettyrandomstuff.creative.CreativeTab;
|
2015-02-20 22:45:33 +01:00
|
|
|
import ellpeck.someprettyrandomstuff.util.IName;
|
2015-02-17 16:15:16 +01:00
|
|
|
import ellpeck.someprettyrandomstuff.util.Util;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemSpade;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
import net.minecraft.util.StatCollector;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
public class ItemShovelSPRS extends ItemSpade implements IName{
|
|
|
|
|
|
|
|
private String name;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
public ItemShovelSPRS(ToolMaterial toolMat, String unlocalizedName){
|
|
|
|
super(toolMat);
|
2015-02-20 22:45:33 +01:00
|
|
|
this.name = unlocalizedName;
|
|
|
|
this.setUnlocalizedName(Util.getNamePrefix() + this.getName());
|
2015-02-17 16:15:16 +01:00
|
|
|
this.setCreativeTab(CreativeTab.instance);
|
|
|
|
}
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return name;
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
}
|