Skip to content

Scientific Calculator (Calculator)

Description

Converts two input itemstacks into one output itemstack.

Identifier

Refer to this via any of the following:

groovy
mods.calculator.scientific_calculator/* Used as page default */
mods.calculator.scientificcalculator
mods.calculator.scientificCalculator
mods.calculator.ScientificCalculator

Adding Recipes

Recipe Builder

Just like other recipe types, the Scientific Calculator also uses a recipe builder.

Don't know what a builder is? Check the builder info page out.

mods.calculator.scientific_calculator.recipeBuilder()
  • IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires exactly 2.

    groovy
    input(IIngredient)
    input(IIngredient...)
    input(Collection<IIngredient>)
  • ItemStackList. Sets the item outputs of the recipe. Requires exactly 1.

    groovy
    output(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. (returns null or sonar.calculator.mod.common.recipes.CalculatorRecipe).

    groovy
    register()
Example
groovy
mods.calculator.scientific_calculator.recipeBuilder()
    .input(item('minecraft:clay'), item('minecraft:clay'))
    .output(item('minecraft:gold_ingot') * 2)
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

    groovy
    mods.calculator.scientific_calculator.removeByInput(IIngredient)
  • Removes all recipes that match the given output:

    groovy
    mods.calculator.scientific_calculator.removeByOutput(IIngredient)
  • Removes all registered recipes:

    groovy
    mods.calculator.scientific_calculator.removeAll()
Example
groovy
mods.calculator.scientific_calculator.removeByInput(item('calculator:smallamethyst'))
mods.calculator.scientific_calculator.removeByOutput(item('calculator:redstoneingot'))
mods.calculator.scientific_calculator.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:

    groovy
    mods.calculator.scientific_calculator.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.