cn.nukkit.item.ItemIngotNetherite 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.3.2.0-PN")
public class ItemIngotNetherite extends Item {
@Since("1.3.2.0-PN")
public ItemIngotNetherite() {
this(0, 1);
}
@Since("1.3.2.0-PN")
public ItemIngotNetherite(Integer meta) {
this(meta, 1);
}
public ItemIngotNetherite(Integer meta, int count) {
super(NETHERITE_INGOT, 0, count, "Netherite Ingot");
}
@Override
public boolean isLavaResistant() {
return true;
}
}