![JAR search and dependency download from the Maven repository](/logo.png)
cn.nukkit.item.enchantment.trident.EnchantmentTridentRiptide 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 EnchantmentTridentRiptide extends EnchantmentTrident {
public EnchantmentTridentRiptide() {
super(Enchantment.ID_TRIDENT_RIPTIDE, "tridentRiptide", Rarity.RARE);
}
@Override
public int getMinEnchantAbility(int level) {
return 7 * level + 10;
}
@Override
public int getMaxLevel() {
return 3;
}
@Override
public boolean checkCompatibility(Enchantment enchantment) {
return super.checkCompatibility(enchantment)
&& enchantment.id != Enchantment.ID_TRIDENT_LOYALTY
&& enchantment.id != Enchantment.ID_TRIDENT_CHANNELING;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy