Washer (Mekanism)
Description
Converts an input gasstack into an output gasstack at the cost of 5mb of water.
Identifier
Refer to this via any of the following:
mods.mekanism.washer/* Used as page default */
mods.mekanism.Washer
mods.mekanism.chemical_washer
mods.mekanism.chemicalwasher
mods.mekanism.chemicalWasher
mods.mekanism.ChemicalWasher
Adding Recipes
Adds recipes in the format
input
,output
:groovymods.mekanism.washer.add(GasStack, GasStack)
Example
mods.mekanism.washer.add(gas('water'), gas('hydrogen'))
Recipe Builder
Just like other recipe types, the Washer also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.mekanism.washer.recipeBuilder()
GasStackList
. Sets the gas inputs of the recipe. Requires exactly 1.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.WasherRecipe
).groovyregister()
Example
mods.mekanism.washer.recipeBuilder()
.gasInput(gas('water') * 10)
.gasOutput(gas('hydrogen') * 20)
.register()
Removing Recipes
Removes all recipes that match the given input:
groovymods.mekanism.washer.removeByInput(GasStack)
Removes all registered recipes:
groovymods.mekanism.washer.removeAll()
Example
mods.mekanism.washer.removeByInput(gas('iron'))
mods.mekanism.washer.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.washer.streamRecipes()