EnchantmentCategory

Link to enchantmentcategory

Importing the class

Link to importing-the-class

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.item.enchantment.EnchantmentCategory;

EnchantmentCategory is an enum. It has 14 enum constants. They are accessible using the code below.

ZenScript
Copy
EnchantmentCategory.ARMOR
EnchantmentCategory.ARMOR_FEET
EnchantmentCategory.ARMOR_LEGS
EnchantmentCategory.ARMOR_CHEST
EnchantmentCategory.ARMOR_HEAD
EnchantmentCategory.WEAPON
EnchantmentCategory.DIGGER
EnchantmentCategory.FISHING_ROD
EnchantmentCategory.TRIDENT
EnchantmentCategory.BREAKABLE
EnchantmentCategory.BOW
EnchantmentCategory.WEARABLE
EnchantmentCategory.CROSSBOW
EnchantmentCategory.VANISHABLE

Name: canEnchant

Return Type: boolean

ZenScript
Copy
EnchantmentCategory.canEnchant(item as ItemDefinition) as boolean
ParameterTypeDescription
Parameter
item
Type
ItemDefinition
Description
No Description Provided