2015-06-23 22:29:05 +00:00
package gregtech.common.tools ;
import gregtech.api.enums.Textures ;
2015-04-23 16:14:22 +00:00
import gregtech.api.enums.Textures.ItemIcons ;
2015-06-23 22:29:05 +00:00
import gregtech.api.interfaces.IIconContainer ;
import net.minecraft.entity.EntityLivingBase ;
import net.minecraft.item.ItemStack ;
import net.minecraft.util.ChatComponentText ;
import net.minecraft.util.EnumChatFormatting ;
import net.minecraft.util.IChatComponent ;
public class GT_Tool_Knife
extends GT_Tool_Sword
{
public int getToolDamagePerBlockBreak ( )
{
return 100 ;
}
public int getToolDamagePerDropConversion ( )
{
return 100 ;
}
public int getToolDamagePerContainerCraft ( )
{
return 100 ;
}
public int getToolDamagePerEntityAttack ( )
{
return 200 ;
}
public float getBaseDamage ( )
{
return 2 . 0F ;
}
public float getSpeedMultiplier ( )
{
return 0 . 5F ;
}
public float getMaxDurabilityMultiplier ( )
{
return 1 . 0F ;
}
public IIconContainer getIcon ( boolean aIsToolHead , ItemStack aStack )
{
return aIsToolHead ? Textures . ItemIcons . KNIFE : null ;
}
public IChatComponent getDeathMessage ( EntityLivingBase aPlayer , EntityLivingBase aEntity )
{
return new ChatComponentText ( " < " + EnumChatFormatting . RED + aEntity . getCommandSenderName ( ) + EnumChatFormatting . WHITE + " > " + EnumChatFormatting . GREEN + aPlayer . getCommandSenderName ( ) + EnumChatFormatting . WHITE + " what are you doing?, " + EnumChatFormatting . GREEN + aPlayer . getCommandSenderName ( ) + EnumChatFormatting . WHITE + " ?!? STAHP!!! " ) ;
}
}
2015-04-23 16:14:22 +00:00
/ * Location : F : \ Torrent \ minecraft \ jd - gui - 0 . 3 . 6 . windows \ gregtech_1 . 7 . 10 - 5 . 07 . 07 - dev . jar
* Qualified Name : gregtech . common . tools . GT_Tool_Knife
* JD - Core Version : 0 . 7 . 0 . 1
* /