2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.items;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
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.config.ConfigValues;
|
|
|
|
import ellpeck.actuallyadditions.creative.CreativeTab;
|
|
|
|
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.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
2015-02-09 17:25:05 +01:00
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
public class ItemKnife extends Item implements IName{
|
2015-02-09 17:25:05 +01:00
|
|
|
|
|
|
|
public ItemKnife(){
|
2015-03-07 02:23:31 +01:00
|
|
|
this.setUnlocalizedName(Util.setUnlocalizedName(this));
|
2015-02-17 16:15:16 +01:00
|
|
|
this.setMaxDamage(ConfigValues.itemKnifeMaxDamage);
|
|
|
|
this.setCreativeTab(CreativeTab.instance);
|
|
|
|
this.setMaxStackSize(1);
|
2015-02-09 17:25:05 +01:00
|
|
|
this.setContainerItem(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
|
|
|
public ItemStack getContainerItem(ItemStack stack){
|
|
|
|
ItemStack theStack = stack.copy();
|
|
|
|
theStack.setItemDamage(theStack.getItemDamage() + 1);
|
|
|
|
theStack.stackSize = 1;
|
|
|
|
return theStack;
|
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.epic;
|
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public boolean getShareTag(){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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 "itemKnife";
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
2015-02-09 17:25:05 +01:00
|
|
|
}
|