cn.nukkit.item.enchantment.trident.EnchantmentTridentChanneling 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.trident;
import cn.nukkit.item.enchantment.Enchantment;
public class EnchantmentTridentChanneling extends EnchantmentTrident {
public EnchantmentTridentChanneling() {
super(Enchantment.ID_TRIDENT_CHANNELING, "tridentChanneling", Rarity.VERY_RARE);
}
@Override
public int getMinEnchantAbility(int level) {
return 25;
}
@Override
public int getMaxEnchantAbility(int level) {
return 50;
}
}