cn.nukkit.item.ItemHelmetNetherite 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 ItemHelmetNetherite extends ItemArmor {
@Since("1.4.0.0-PN")
public ItemHelmetNetherite() {
this(0, 1);
}
@Since("1.4.0.0-PN")
public ItemHelmetNetherite(Integer meta) {
this(meta, 1);
}
@Since("1.4.0.0-PN")
public ItemHelmetNetherite(Integer meta, int count) {
super(NETHERITE_HELMET, meta, count, "Netherite Helmet");
}
@Override
public int getTier() {
return ItemArmor.TIER_NETHERITE;
}
@Override
public boolean isHelmet() {
return true;
}
@Override
public int getArmorPoints() {
return 3;
}
@Override
public int getMaxDurability() {
return 407;
}
@Override
public int getToughness() {
return 3;
}
@Override
public boolean isLavaResistant() {
return true;
}
}