Chemical Infuser (Mekanism)
Description
Combines two input gas stacks into a output gas stack.
Identifier
Refer to this via any of the following:
mods.mekanism.chemical_infuser/* Used as page default */
mods.mekanism.chemicalinfuser
mods.mekanism.chemicalInfuser
mods.mekanism.ChemicalInfuser
Adding Recipes
Adds recipes in the format
leftInput
,rightInput
,output
:groovymods.mekanism.chemical_infuser.add(GasStack, GasStack, GasStack)
Example
mods.mekanism.chemical_infuser.add(gas('copper') * 10, gas('iron'), gas('gold') * 15)
Recipe Builder
Just like other recipe types, the Chemical Infuser also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.mekanism.chemical_infuser.recipeBuilder()
GasStackList
. Sets the gas inputs of the recipe. Requires exactly 2.groovygasInput(GasStack) gasInput(GasStack...) gasInput(Collection<GasStack>)
GasStackList
. Sets the gas outputs of the recipe. Requires exactly 1.groovygasOutput(GasStack) gasOutput(GasStack...) gasOutput(Collection<GasStack>)
First validates the builder, returning
null
and outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returnsnull
ormekanism.common.recipe.machines.ChemicalInfuserRecipe
).groovyregister()
Example
mods.mekanism.chemical_infuser.recipeBuilder()
.gasInput(gas('copper') * 10, gas('iron'))
.gasOutput(gas('gold') * 15)
.register()
Removing Recipes
Removes all recipes that match the given input:
groovymods.mekanism.chemical_infuser.removeByInput(GasStack, GasStack)
Removes all registered recipes:
groovymods.mekanism.chemical_infuser.removeAll()
Example
mods.mekanism.chemical_infuser.removeByInput(gas('hydrogen'), gas('chlorine'))
mods.mekanism.chemical_infuser.removeAll()
Getting the value of recipes
Iterates through every entry in the registry, with the ability to call remove on any element to remove it:
groovymods.mekanism.chemical_infuser.streamRecipes()