You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
925 B
Java
23 lines
925 B
Java
package net.minecraft.item;
|
|
|
|
import com.google.common.collect.Sets;
|
|
import java.util.Set;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.init.Blocks;
|
|
|
|
public class ItemAxe extends ItemTool
|
|
{
|
|
private static final Set field_150917_c = Sets.newHashSet(new Block[] {Blocks.planks, Blocks.bookshelf, Blocks.log, Blocks.log2, Blocks.chest, Blocks.pumpkin, Blocks.lit_pumpkin});
|
|
private static final String __OBFID = "CL_00001770";
|
|
|
|
protected ItemAxe(Item.ToolMaterial p_i45327_1_)
|
|
{
|
|
super(3.0F, p_i45327_1_, field_150917_c);
|
|
}
|
|
|
|
public float func_150893_a(ItemStack p_150893_1_, Block p_150893_2_)
|
|
{
|
|
return p_150893_2_.getMaterial() != Material.wood && p_150893_2_.getMaterial() != Material.plants && p_150893_2_.getMaterial() != Material.vine ? super.func_150893_a(p_150893_1_, p_150893_2_) : this.efficiencyOnProperMaterial;
|
|
}
|
|
} |