This page relates to Immersive Intelligence, which has built-in support!
Coagulator
Link to coagulator
The Coagulator
package can be used to modify the Immersive Intelligence Coagulator recipes.
Importing the Package
Link to importing-the-package
ZenScript Copyimport mods.immersiveintelligence.Coagulator;
Adding Recipes
Link to adding-recipes
Parameters
Link to parameters
Type | Name | Required |
---|---|---|
Type IItemstack | Name Item Output | Required Yes |
Type ILiquidStack | Name Fluid Input | Required Yes |
Type ILiquidStack | Name Coagulant Input | Required Yes |
Type int | Name Energy | Required Yes |
Type int | Name Time | Required Yes |
Syntax
Link to syntax
ZenScript Copymods.immersiveintelligence.Coagulator.addRecipe(IItemStack itemOutput, ILiquidStack fluidInput, ILiquidStack coagulantInput, int energy, int mixingTime);
Example
Link to example
ZenScript Copy
mods.immersiveintelligence.Coagulator.addRecipe(<minecraft:diamond>, <liquid:water>, <liquid:lava>, 1234 , 4637);
Removing Recipes
Link to removing-recipes
Parameters
Link to parameters-1
Type | Name | Required |
---|---|---|
Type IItemStack | Name Output | Required Yes |
Syntax
Link to syntax-1
ZenScript Copymods.immersiveintelligence.Coagulator.removeRecipe(IItemStack output);
Example
Link to example-1
ZenScript Copymods.immersiveintelligence.Coagulator.removeRecipe(<minecraft:diamond>);