cn.nukkit.item.ItemShovelNetherite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.item;
import cn.nukkit.api.Since;
@Since("1.4.0.0-PN")
public class ItemShovelNetherite extends ItemTool {
@Since("1.4.0.0-PN")
public ItemShovelNetherite() {
this(0, 1);
}
@Since("1.4.0.0-PN")
public ItemShovelNetherite(Integer meta) {
this(meta, 1);
}
@Since("1.4.0.0-PN")
public ItemShovelNetherite(Integer meta, int count) {
super(NETHERITE_SHOVEL, meta, count, "Netherite Shovel");
}
@Override
public int getMaxDurability() {
return ItemTool.DURABILITY_NETHERITE;
}
@Override
public boolean isShovel() {
return true;
}
@Override
public int getTier() {
return ItemTool.TIER_NETHERITE;
}
@Override
public int getAttackDamage() {
return 5;
}
@Override
public boolean isLavaResistant() {
return true;
}
}