Skip to content

Redstone Extractor (Calculator)

Description

Converts an input itemstack into power, at the cost of a burnable fuel.

Identifier

Refer to this via any of the following:

groovy
mods.calculator.redstone_extractor/* Used as page default */
mods.calculator.redstoneextractor
mods.calculator.redstoneExtractor
mods.calculator.RedstoneExtractor

Adding Recipes

Recipe Builder

Just like other recipe types, the Redstone Extractor also uses a recipe builder.

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

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

    groovy
    input(IIngredient)
    input(IIngredient...)
    input(Collection<IIngredient>)
  • int. Sets the duration in ticks that power will be produced. Requires greater than or equal to 1. (Default 0).

    groovy
    value(int)
  • 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.core.recipes.DefaultSonarRecipe$Value).

    groovy
    register()
Example
groovy
mods.calculator.redstone_extractor.recipeBuilder()
    .input(item('minecraft:clay'))
    .value(100)
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

    groovy
    mods.calculator.redstone_extractor.removeByInput(IIngredient)
  • Removes all registered recipes:

    groovy
    mods.calculator.redstone_extractor.removeAll()
Example
groovy
mods.calculator.redstone_extractor.removeByInput(item('minecraft:redstone_block'))
mods.calculator.redstone_extractor.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.redstone_extractor.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.