TechReborn/src/main/java/techreborn/items/tools/ItemSteelDrill.java

41 lines
1.3 KiB
Java
Raw Normal View History

2016-02-28 01:49:50 +01:00
package techreborn.items.tools;
2016-03-13 19:38:41 +01:00
import net.minecraft.block.state.IBlockState;
2016-12-09 03:39:49 +01:00
import net.minecraft.creativetab.CreativeTabs;
2016-02-28 01:49:50 +01:00
import net.minecraft.init.Items;
2016-12-09 03:39:49 +01:00
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.NonNullList;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import reborncore.common.powerSystem.PoweredItem;
2016-02-28 01:49:50 +01:00
import techreborn.config.ConfigTechReborn;
2016-12-09 03:39:49 +01:00
import techreborn.init.ModItems;
2016-02-28 01:49:50 +01:00
2016-10-08 21:46:16 +02:00
public class ItemSteelDrill extends ItemDrill {
public ItemSteelDrill() {
super(ToolMaterial.IRON, "techreborn.ironDrill", ConfigTechReborn.IronDrillCharge,
2016-10-08 21:46:16 +02:00
ConfigTechReborn.IronDrillTier, 0.5F, 10F);
this.cost = 50;
}
2016-02-28 01:49:50 +01:00
2016-12-09 03:39:49 +01:00
@SuppressWarnings({ "rawtypes", "unchecked" })
@SideOnly(Side.CLIENT)
public void getSubItems(Item item,
CreativeTabs par2CreativeTabs, NonNullList itemList) {
ItemStack stack = new ItemStack(ModItems.STEEL_DRILL);
2016-12-09 03:39:49 +01:00
ItemStack uncharged = stack.copy();
ItemStack charged = stack.copy();
PoweredItem.setEnergy(getMaxPower(charged), charged);
itemList.add(uncharged);
itemList.add(charged);
}
@Override
2016-10-08 21:46:16 +02:00
public boolean canHarvestBlock(IBlockState state) {
return Items.IRON_PICKAXE.canHarvestBlock(state) || Items.IRON_SHOVEL.canHarvestBlock(state);
}
2016-02-28 01:49:50 +01:00
}