Importare la Classe

Link to importare-la-classe

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
ParametroTipo
Parametro
prefix
Tipo
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();
NomeTipoHa GetterHa Setter
Nome
commandString
Tipo
string
Ha Getter
Ha Setter
no
Nome
effects
Tipo
stdlib.List<MobEffectInstance>
Ha Getter
Ha Setter
no
Nome
hasInstantEffects
Tipo
boolean
Ha Getter
Ha Setter
no
Nome
registryName
Tipo
ResourceLocation
Ha Getter
Ha Setter
no