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.alchemy.Potion;

Name: getEffects

Return Type: stdlib.List<MobEffectInstance>

ZenScript
Copy
// Potion.getEffects() as stdlib.List<MobEffectInstance>

myPotion.getEffects();

Name: getName

Return Type: string

ZenScript
Copy
Potion.getName(prefix as string) as string
参数类型
参数
prefix
类型
string

Name: getRegistryName

Return Type: ResourceLocation

ZenScript
Copy
// Potion.getRegistryName() as ResourceLocation

myPotion.getRegistryName();

Link to hasInstantEffects

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
名称
registryName
类型
资源位置
可获得
true
可设置
false