ItemCooldowns
Link to itemcooldowns
导入类
Link to 导入类
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 Copyimport crafttweaker.api.item.ItemCooldowns;
使用方式
Link to 使用方式
Name: addCooldown
ZenScript CopyItemCooldowns.addCooldown(item as ItemDefinition, ticks as int)
参数 | 类型 |
---|---|
参数 item | 类型 ItemDefinition |
参数 ticks | 类型 int |
Name: getCooldownPercent
Return Type: float
ZenScript CopyItemCooldowns.getCooldownPercent(item as ItemDefinition, partialTicks as float) as float
参数 | 类型 |
---|---|
参数 item | 类型 ItemDefinition |
参数 partialTicks | 类型 float |
Name: isOnCooldown
Return Type: boolean
ZenScript CopyItemCooldowns.isOnCooldown(item as ItemDefinition) as boolean
参数 | 类型 |
---|---|
参数 item | 类型 ItemDefinition |
Name: removeCooldown
ZenScript CopyItemCooldowns.removeCooldown(item as ItemDefinition)
参数 | 类型 |
---|---|
参数 item | 类型 ItemDefinition |