Potion
Link to potion
导入类
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.alchemy.Potion;
使用方式
Link to 使用方式
Name: getEffects
Return Type: stdlib.List<MobEffectInstance>
ZenScript Copy// Potion.getEffects() as stdlib.List<MobEffectInstance>
myPotion.getEffects();
Name: getName
Return Type: string
ZenScript CopyPotion.getName(prefix as string) as string
参数 | 类型 |
---|---|
参数 prefix | 类型 string |
Name: hasInstantEffects
Return Type: boolean
ZenScript Copy// Potion.hasInstantEffects() as boolean
myPotion.hasInstantEffects();
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 commandString #命令字符串 | 类型 string | 可获得 true | 可设置 false |
名称 effects | 类型 stdlib.List<MobEffectInstance> | 可获得 true | 可设置 false |
名称 hasInstantEffects | 类型 布尔值 | 可获得 true | 可设置 false |