Crusher (Mekanism)
Description
Converts an input itemstack into an output itemstack.
Identifier
The identifier mods.mekanism.crusher will be used as the default on this page.
All Identifiers
Any of these can be used to refer to this compat:
mods.mekanism.crusher/* Used as page default */
mods.mekanism.CrusherAdding Recipes
Adds recipes in the format
ingredient,output:groovymods.mekanism.crusher.add(IIngredient, ItemStack)
Example
mods.mekanism.crusher.add(item('minecraft:clay_ball'), item('minecraft:gold_ingot'))Recipe Builder
Just like other recipe types, the Crusher also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
Recipe Builder
Create the Recipe Builder.
groovymods.mekanism.crusher.recipeBuilder()
IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 1.groovyinput(IIngredient) input(IIngredient...) input(Collection<IIngredient>)ItemStackList. Sets the item outputs of the recipe. Requires exactly 1.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
First validates the builder, returning
nulland outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returnsnullormekanism.common.recipe.machines.CrusherRecipe).groovyregister()
Example
mods.mekanism.crusher.recipeBuilder()
.input(item('minecraft:clay_ball'))
.output(item('minecraft:gold_ingot'))
.register()Removing Recipes
Removes all recipes that match the given input:
groovymods.mekanism.crusher.removeByInput(IIngredient)Removes all registered recipes:
groovymods.mekanism.crusher.removeAll()
Example
mods.mekanism.crusher.removeByInput(ore('ingotTin'))
mods.mekanism.crusher.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.crusher.streamRecipes()
