Potion
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.item.alchemy.Potion;
Implements
Undocumented Interfaces
FeatureElement
Members
Getter
Gets the command string of the potion.script.zs
// Potion.commandString as stringmyPotion.commandString
Return Type:
string
Getter
effects() as List<MobEffectInstance>
Gets the effects of the potion.script.zs
Returns: The effects.
myPotion.effects();
Return Type:
List<MobEffectInstance>
static getName(prefix as string, potion as Potion = null) as string
Gets the name of the potion.script.zs
Returns: The name.
Potion.getName(myString, myPotion);
Parameters:
Return Type:
string
Getter
Checks if the potion has instant effects.script.zs
// Potion.hasInstantEffects as boolmyPotion.hasInstantEffects
Return Type:
bool
hasInstantEffects() as bool
Checks if the potion has instant effects.script.zs
Returns: True if the potion has instant effects, false otherwise.
// Potion.hasInstantEffects() as bool;myPotion.hasInstantEffects();
Return Type:
bool
Getter
Gets the registry name of the potion.script.zs
// Potion.registryName as ResourceLocationmyPotion.registryName
Return Type:
ResourceLocation
registryName() as ResourceLocation
Gets the registry name of the potion.script.zs
Returns: The registry name.
myPotion.registryName();
Return Type:
ResourceLocation