Skip to content

Stone Separator (Calculator)

Description

Converts an input itemstack into two output itemstacks.

Identifier

Refer to this via any of the following:

groovy
mods.calculator.stone_separator/* Used as page default */
mods.calculator.stoneseparator
mods.calculator.stoneSeparator
mods.calculator.StoneSeparator

Adding Recipes

Recipe Builder

Just like other recipe types, the Stone Separator also uses a recipe builder.

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

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

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

    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.stone_separator.recipeBuilder()
    .input(item('minecraft:clay'))
    .output(item('minecraft:diamond'), item('minecraft:diamond'))
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

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

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

    groovy
    mods.calculator.stone_separator.removeAll()
Example
groovy
mods.calculator.stone_separator.removeByInput(item('minecraft:gold_ore'))
mods.calculator.stone_separator.removeByOutput(item('calculator:reinforcedironingot'))
mods.calculator.stone_separator.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.stone_separator.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.