2015-06-23 22:29:05 +00:00
package gregtech.common.tools ;
import gregtech.api.GregTech_API ;
2015-04-23 16:14:22 +00:00
import gregtech.api.enums.Textures ;
2015-06-23 22:29:05 +00:00
import gregtech.api.interfaces.IIconContainer ;
import gregtech.api.items.GT_MetaGenerated_Tool ;
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 ;
2015-04-23 16:14:22 +00:00
2015-06-23 22:29:05 +00:00
public class GT_Tool_WireCutter
2015-10-22 02:06:25 +00:00
extends GT_Tool {
public int getToolDamagePerBlockBreak ( ) {
return 100 ;
}
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 . 25F ;
}
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 false ;
}
public boolean isCrowbar ( ) {
return false ;
}
public boolean isMinableBlock ( Block aBlock , byte aMetaData ) {
String tTool = aBlock . getHarvestTool ( aMetaData ) ;
return ( tTool ! = null ) & & ( tTool . equals ( " cutter " ) ) ;
}
public ItemStack getBrokenItem ( ItemStack aStack ) {
return null ;
}
public IIconContainer getIcon ( boolean aIsToolHead , ItemStack aStack ) {
return aIsToolHead ? Textures . ItemIcons . WIRE_CUTTER : null ;
}
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 . GREEN + aPlayer . getCommandSenderName ( ) + EnumChatFormatting . WHITE + " has cut the Cable for the Life Support Machine of " + EnumChatFormatting . RED + aEntity . getCommandSenderName ( ) + EnumChatFormatting . WHITE ) ;
}
2015-06-23 22:29:05 +00:00
}