blob: 962d7e5c1da18a16be00f6564fbf080c452dafc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
package gregtech.common.tools;
import gregtech.api.enums.Textures;
import gregtech.api.enums.Textures.ItemIcons;
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!!!");
}
}
|