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

Name: addCooldown

ZenScript
Copy
ItemCooldowns.addCooldown(item as ItemDefinition, ticks as int)
参数类型
参数
item
类型
ItemDefinition
参数
ticks
类型
int

Link to getCooldownPercent

Name: getCooldownPercent

Return Type: float

ZenScript
Copy
ItemCooldowns.getCooldownPercent(item as ItemDefinition, partialTicks as float) as float
参数类型
参数
item
类型
ItemDefinition
参数
partialTicks
类型
float

Name: isOnCooldown

Return Type: boolean

ZenScript
Copy
ItemCooldowns.isOnCooldown(item as ItemDefinition) as boolean
参数类型
参数
item
类型
ItemDefinition

Name: removeCooldown

ZenScript
Copy
ItemCooldowns.removeCooldown(item as ItemDefinition)
参数类型
参数
item
类型
ItemDefinition