Restoration Chamber (Calculator)
Description
Converts an input itemstack into an output itemstack, typically a Dirty Circuit.
Identifier
Refer to this via any of the following:
mods.calculator.restoration_chamber/* Used as page default */
mods.calculator.restorationchamber
mods.calculator.restorationChamber
mods.calculator.RestorationChamber
Adding Recipes
Add the given recipe to the recipe list:
groovymods.calculator.restoration_chamber.add(CalculatorRecipe)
Recipe Builder
Just like other recipe types, the Restoration Chamber also uses a recipe builder.
Don't know what a builder is? Check the builder info page out.
mods.calculator.restoration_chamber.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
orsonar.calculator.mod.common.recipes.CalculatorRecipe
).groovyregister()
Example
mods.calculator.restoration_chamber.recipeBuilder()
.input(item('minecraft:clay'))
.output(item('minecraft:diamond'))
.register()
Removing Recipes
Removes the given recipe from the recipe list:
groovymods.calculator.restoration_chamber.remove(CalculatorRecipe)
Removes all recipes that match the given input:
groovymods.calculator.restoration_chamber.removeByInput(IIngredient)
Removes all recipes that match the given output:
groovymods.calculator.restoration_chamber.removeByOutput(IIngredient)
Removes all registered recipes:
groovymods.calculator.restoration_chamber.removeAll()
Example
mods.calculator.restoration_chamber.removeByInput(item('calculator:circuitdirty:5'))
mods.calculator.restoration_chamber.removeByOutput(item('calculator:circuitboard:3'))
mods.calculator.restoration_chamber.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.calculator.restoration_chamber.streamRecipes()