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.tiered.IItemTier;

Name: getAttackDamage

Gets this tier's attack damage.

Returns: This tier's attack damage.
Return Type: float

ZenScript
Copy
// IItemTier.getAttackDamage() as float

myIItemTier.getAttackDamage();

Name: getEfficiency

Gets this tier's efficiency.

Returns: This tier's efficiency.
Return Type: float

ZenScript
Copy
// IItemTier.getEfficiency() as float

myIItemTier.getEfficiency();

Link to getEnchantability

Name: getEnchantability

Gets this tier's enchantability.

Returns: This tier's enchantability.
Return Type: int

ZenScript
Copy
// IItemTier.getEnchantability() as int

myIItemTier.getEnchantability();

Name: getHarvestLevel

Gets this tier's harvest level.

Returns: This tier's harvest level.
Return Type: int

ZenScript
Copy
// IItemTier.getHarvestLevel() as int

myIItemTier.getHarvestLevel();

Name: getMaxUses

Gets this tier's max uses.

Returns: This tier's max uses.
Return Type: int

ZenScript
Copy
// IItemTier.getMaxUses() as int

myIItemTier.getMaxUses();

Link to getRepairMaterial

Name: getRepairMaterial

Gets this tier's repair material.

Returns: This tier's repair material.
Return Type: Ingredient

ZenScript
Copy
// IItemTier.getRepairMaterial() as Ingredient

myIItemTier.getRepairMaterial();
名称类型可获得可设置描述
名称
attackDamage
类型
float
可获得
true
可设置
false
描述
Gets this tier's attack damage.
名称
efficiency
类型
float
可获得
true
可设置
false
描述
Gets this tier's efficiency.
名称
enchantability
类型
int
可获得
true
可设置
false
描述
Gets this tier's enchantability.
名称
harvestLevel
类型
int
可获得
true
可设置
false
描述
Gets this tier's harvest level.
名称
maxUses
类型
int
可获得
true
可设置
false
描述
Gets this tier's max uses.
名称
repairMaterial
类型
Ingredient
可获得
true
可设置
false
描述
Gets this tier's repair material.