Fluid Dictionary

Link to fluid-dictionary

ZenScript
Copy
import mods.industrialforegoing.FluidDictionary;

It needs the Fluid Name as an input, the Fluid Name as an output and a conversion rate. The rate is how many mb from the origin will be transformed into the output. (InputMB * rate = OutputMB)

ZenScript
Copy
FluidDictionary.add(String input, String output, double rate);

FluidDictionary.add("essence", "xpjuice", 1);

It needs the Fluid Name as an input, the Fluid Name as an output.

ZenScript
Copy
FluidDictionary.remove(String input, String output);

FluidDictionary.remove("essence", "xpjuice");