Importing the package

Link to 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.IPotionType;

Getting an IPotionType object

Link to getting-an-ipotiontype-object

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

ZenScript
Copy
<potiontype:minecraft:long_strength>;
ZenGetterTipo
ZenGetter
Tipo
ZenGetter
effects
Tipo
List<IPotionEffect>

Imitate the PotionType Bracket Handler

Link to imitate-the-potiontype-bracket-handler

This method does the same as the PotionType Bracket Handler.

Copy
//fromString(String potiontype);
IPotionType.fromString("minecraft:mundane");