cn.nukkit.item.enchantment.EnchantmentEfficiency 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.enchantment;
import cn.nukkit.item.Item;
/**
* @author MagicDroidX (Nukkit Project)
*/
public class EnchantmentEfficiency extends Enchantment {
protected EnchantmentEfficiency() {
super(ID_EFFICIENCY, "digging", Rarity.COMMON, EnchantmentType.DIGGER);
}
@Override
public int getMinEnchantAbility(int level) {
return 1 + (level - 1) * 10;
}
@Override
public int getMaxEnchantAbility(int level) {
return super.getMinEnchantAbility(level) + 50;
}
@Override
public int getMaxLevel() {
return 5;
}
@Override
public boolean canEnchant(Item item) {
return item.isShears() || super.canEnchant(item);
}
@Override
public boolean isItemAcceptable(Item item) {
if (item.isShears()) {
return true;
}
return super.isItemAcceptable(item);
}
}