aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tools/GT_Tool_File.java
blob: 29d04f819efed3d5c386eae9fe30a0be1abc04ef (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package gregtech.common.tools;

import gregtech.api.GregTech_API;
import gregtech.api.enums.Materials;
import gregtech.api.enums.Textures;
import gregtech.api.enums.Textures.ItemIcons;
import gregtech.api.interfaces.IIconContainer;
import gregtech.api.items.GT_MetaGenerated_Tool;

import java.util.Map;

import net.minecraft.block.Block;
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_File
  extends GT_Tool
{
  public int getToolDamagePerBlockBreak()
  {
    return 50;
  }
  
  public int getToolDamagePerDropConversion()
  {
    return 100;
  }
  
  public int getToolDamagePerContainerCraft()
  {
    return 400;
  }
  
  public int getToolDamagePerEntityAttack()
  {
    return 200;
  }
  
  public int getBaseQuality()
  {
    return 0;
  }
  
  public float getBaseDamage()
  {
    return 1.5F;
  }
  
  public float getSpeedMultiplier()
  {
    return 1.0F;
  }
  
  public float getMaxDurabilityMultiplier()
  {
    return 1.0F;
  }
  
  public String getCraftingSound()
  {
    return null;
  }
  
  public String getEntityHitSound()
  {
    return null;
  }
  
  public String getBreakingSound()
  {
    return (String)GregTech_API.sSoundList.get(Integer.valueOf(0));
  }
  
  public String getMiningSound()
  {
    return null;
  }
  
  public boolean canBlock()
  {
    return true;
  }
  
  public boolean isCrowbar()
  {
    return false;
  }
  
  public boolean isMiningTool()
  {
    return false;
  }
  
  public boolean isMinableBlock(Block aBlock, byte aMetaData)
  {
    String tTool = aBlock.getHarvestTool(aMetaData);
    return (tTool != null) && (tTool.equals("file"));
  }
  
  public ItemStack getBrokenItem(ItemStack aStack)
  {
    return null;
  }
  
  public IIconContainer getIcon(boolean aIsToolHead, ItemStack aStack)
  {
    return !aIsToolHead ? GT_MetaGenerated_Tool.getPrimaryMaterial(aStack).mIconSet.mTextures[gregtech.api.enums.OrePrefixes.toolHeadFile.mTextureIndex] : Textures.ItemIcons.HANDLE_FILE;
  }
  
  public short[] getRGBa(boolean aIsToolHead, ItemStack aStack)
  {
    return !aIsToolHead ? GT_MetaGenerated_Tool.getPrimaryMaterial(aStack).mRGBa : GT_MetaGenerated_Tool.getSecondaryMaterial(aStack).mRGBa;
  }
  
  public void onStatsAddedToTool(GT_MetaGenerated_Tool aItem, int aID) {}
  
  public IChatComponent getDeathMessage(EntityLivingBase aPlayer, EntityLivingBase aEntity)
  {
    return new ChatComponentText(EnumChatFormatting.RED + aEntity.getCommandSenderName() + EnumChatFormatting.WHITE + " has been filed D for 'Dead' by " + EnumChatFormatting.GREEN + aPlayer.getCommandSenderName() + EnumChatFormatting.WHITE);
  }
}