TechReborn/src/main/java/techreborn/items/tools/ItemIronDrill.java
2016-05-06 22:13:24 +01:00

35 lines
756 B
Java

package techreborn.items.tools;
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Items;
import techreborn.config.ConfigTechReborn;
import net.minecraft.item.Item.ToolMaterial;
public class ItemIronDrill extends ItemDrill
{
public ItemIronDrill()
{
super(ToolMaterial.IRON, "techreborn.ironDrill", ConfigTechReborn.IronDrillCharge,
ConfigTechReborn.IronDrillTier, 0.5F, 10F);
this.cost = 50;
}
@Override
public boolean canHarvestBlock(IBlockState state)
{
return Items.IRON_PICKAXE.canHarvestBlock(state) || Items.IRON_SHOVEL.canHarvestBlock(state);
}
@Override
public String getTextureName(int damage)
{
return "techreborn:items/tool/ironDrill";
}
@Override
public int getMaxMeta()
{
return 1;
}
}