Home Getting Started With Scripts Using this wiki Commands CTGUI Global functions Bracket Handlers

IPotion

An IPotion object refers a potion in the game.

Importing the package

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.
import crafttweaker.potions.IPotion;

Getting an IPotion object

You can get such an object through the use of the Potion Bracket handler

script.zs
<potion:minecraft:strength>;

Zengetters

ZengetterWhat does it doReturn Type
Zengetter
name
What does it do
Returns the potion’s internal name
Return Type
string
Zengetter
badEffect
What does it do
Returns if the potion effect is bad
Return Type
bool
Zengetter
liquidColor
What does it do
Returns the potion’s color
Return Type
int
Zengetter
liquidColour
What does it do
Returns the potion’s colour
Return Type
int
Zengetter
curativeItems
What does it do
Returns a list of all curative Items for the potion
Return Type
List<IItemStack>
Zengetter
hasStatusIcon
What does it do
Returns whether the potion has a status icon
Return Type
bool
Zengetter
isBeneficial
What does it do
Returns whether the potion is beneficial
Return Type
bool
Zengetter
isInstant
What does it do
Returns whether the potion is instant
Return Type
bool

ZenMethods

Make PotionEffect

An IPotionEffect is a Potion that has a duration and amplifier. You can use these two methods to get one from an IPotion:
As one might guess, both return an IPotionEffect object.

script.zs
pot.makePotionEffect(int duration, int amplifier);
pot.makePotionEffect(int duration, int amplifier, boolean ambientEffect, boolean particlesShown);