Skip to content

Atomic Calculator (Calculator)

Description

Converts three input itemstacks into one output itemstack.

Identifier

Refer to this via any of the following:

groovy
mods.calculator.atomic_calculator/* Used as page default */
mods.calculator.atomiccalculator
mods.calculator.atomicCalculator
mods.calculator.AtomicCalculator

Adding Recipes

Recipe Builder

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

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

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

    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.atomic_calculator.recipeBuilder()
    .input(item('minecraft:clay'), item('minecraft:clay'), item('minecraft:clay'))
    .output(item('minecraft:gold_ingot') * 4)
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

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

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

    groovy
    mods.calculator.atomic_calculator.removeAll()
Example
groovy
mods.calculator.atomic_calculator.removeByInput(item('minecraft:end_stone'))
mods.calculator.atomic_calculator.removeByOutput(item('calculator:firediamond'))
mods.calculator.atomic_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.atomic_calculator.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.