Scrapper (The Aurorian)
Description
Turns an input item into an output item. Can be sped up by placing a Crystal on top of it. The crystal has a chance to break every time a recipe is executed.
Identifier
Refer to this via any of the following:
mods.aurorian.scrapper
mods.aurorian.Scrapper
mods.theaurorian.scrapper/* Used as page default */
mods.theaurorian.Scrapper
Adding Recipes
Add the given recipe to the recipe list:
groovymods.theaurorian.scrapper.add(ScrapperRecipe)
Recipe Builder
Just like other recipe types, the Scrapper also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.theaurorian.scrapper.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
null
and outputting errors to the log file if the validation failed, then registers the builder and returns the registered object. (returnsnull
orcom.shiroroku.theaurorian.Recipes.ScrapperRecipe
).groovyregister()
Example
mods.theaurorian.scrapper.recipeBuilder()
.input(item('minecraft:stone_sword'))
.output(item('minecraft:cobblestone'))
.register()
Removing Recipes
Removes the given recipe from the recipe list:
groovymods.theaurorian.scrapper.remove(ScrapperRecipe)
Removes all recipes that match the given input:
groovymods.theaurorian.scrapper.removeByInput(IIngredient)
Removes all recipes that match the given output:
groovymods.theaurorian.scrapper.removeByOutput(IIngredient)
Removes all registered recipes:
groovymods.theaurorian.scrapper.removeAll()
Example
mods.theaurorian.scrapper.removeByInput(item('minecraft:iron_sword'))
mods.theaurorian.scrapper.removeByOutput(item('theaurorian:scrapaurorianite'))
mods.theaurorian.scrapper.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.theaurorian.scrapper.streamRecipes()