Skip to content

Fluix Aggregation (LazyAE2)

Description

Converts up to 3 input itemstacks into an output itemstack.

Identifier

Refer to this via any of the following:

groovy
mods.threng.aggregator/* Used as page default */
mods.threng.Aggregator
mods.lazyae2.aggregator
mods.lazyae2.Aggregator

Adding Recipes

Recipe Builder

Just like other recipe types, the Fluix Aggregation also uses a recipe builder.

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

mods.threng.aggregator.recipeBuilder()
  • IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires greater than or equal to 1 and less than or equal to 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 io.github.phantamanta44.threng.recipe.AggRecipe).

    groovy
    register()
Example
groovy
mods.threng.aggregator.recipeBuilder()
    .input(ore('blockGlass'), item('minecraft:diamond'))
    .output(item('minecraft:diamond') * 4)
    .register()

mods.threng.aggregator.recipeBuilder()
    .input(item('minecraft:gold_ingot'))
    .output(item('minecraft:diamond'))
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

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

    groovy
    mods.threng.aggregator.removeByOutput(IIngredient)
  • Removes all registered recipes:

    groovy
    mods.threng.aggregator.removeAll()
Example
groovy
mods.threng.aggregator.removeByInput(item('appliedenergistics2:material:45'))
mods.threng.aggregator.removeByOutput(item('appliedenergistics2:material:7'))
mods.threng.aggregator.removeAll()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.