WeightedLiquidStack
A Weighted Liquid Stack is like a normal ILiquidStack but has a percentage added to it.
You normally use them when dealing with percentage based actions like drops or secondary outputs.
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.item.WeightedLiquidStack;
Implementing IWeightedIngredient
WeightedLiquidStack implements IWeightedIngredient. That means all functions available to IWeightedIngredient also are available to WeightedLiquidStack.
Calling a weightedLiquidStack
You can derive a weightedLiquidStack from an ILiquidStack by either using the modulo operator or the weight function on it.
ZenGetters
ZenGetter | What does it do | Return Type |
---|---|---|
ZenGetter stack | What does it do Returns the associated LiquidStack | Return Type ILiquidStack |
ZenGetter chance | What does it do Returns the stack’s chance as decimal (e.g. 0.2) | Return Type float |
ZenGetter percent | What does it do Returns the stack’s chance as percentage (e.g. 20.0) | Return Type float |