Crusher (Extra Utilities 2)
Description
Converts an input itemstack into an output itemstack with a chance of an additional itemstack output, consuming energy.
Identifier
Refer to this via any of the following:
mods.extrautils2.crusher/* Used as page default */
mods.extrautils2.Crusher
mods.extrautilities2.crusher
mods.extrautilities2.Crusher
Adding Recipes
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.
mods.extrautils2.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 greater than or equal to 1 and less than or equal to 2.groovyoutput(ItemStack) output(ItemStack...) output(Collection<ItemStack>)
int
. Sets the time in ticks the recipe takes. Requires greater than 0. (Default0
).groovytime(int)
float
. Sets the chance of the second itemstack being output. Requires greater than or equal to 0 and less than or equal to 1. (Default0.0f
).groovychance(float)
int
. Sets the energy cost of the recipe. Requires greater than or equal to 0. (Default0
).groovyenergy(int)
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
orcom.rwtema.extrautils2.api.machine.IMachineRecipe
).groovyregister()
Example
mods.extrautils2.crusher.recipeBuilder()
.input(item('minecraft:gold_ingot'))
.output(item('minecraft:clay'))
.energy(1000)
.time(5)
.register()
mods.extrautils2.crusher.recipeBuilder()
.input(item('minecraft:blaze_rod'))
.output(item('minecraft:gold_ingot') * 3)
.output(item('minecraft:gold_ingot'))
.chance(0.2f)
.energy(1000)
.time(5)
.register()
Removing Recipes
Removes all recipes that match the given input:
groovymods.extrautils2.crusher.removeByInput(IIngredient)
Removes all registered recipes:
groovymods.extrautils2.crusher.removeAll()
Example
mods.extrautils2.crusher.removeByInput(item('minecraft:blaze_rod'))
mods.extrautils2.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.extrautils2.crusher.streamRecipes()