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.EnchantmentCost;

Extending Record

Link to extending-record

EnchantmentCost extends Record. That means all methods available in Record are also available in EnchantmentCost

Name: calculate

Return Type: int

ZenScript
Copy
EnchantmentCost.calculate(level as int) as int
ParameterType
Parameter
level
Type
int
NameTypeHas GetterHas Setter
Name
base
Type
int
Has Getter
true
Has Setter
false
Name
perLevelAboveFirst
Type
int
Has Getter
true
Has Setter
false