Skip to content

Chemical Infuser (Mekanism)

Description

Combines two input gas stacks into a output gas stack.

Identifier

Refer to this via any of the following:

groovy
mods.mekanism.chemical_infuser/* Used as page default */
mods.mekanism.chemicalinfuser
mods.mekanism.chemicalInfuser
mods.mekanism.ChemicalInfuser

Adding Recipes

  • Adds recipes in the format leftInput, rightInput, output:

    groovy
    mods.mekanism.chemical_infuser.add(GasStack, GasStack, GasStack)
Example
groovy
mods.mekanism.chemical_infuser.add(gas('copper') * 10, gas('iron'), gas('gold') * 15)

Recipe Builder

Just like other recipe types, the Chemical Infuser also uses a recipe builder.

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

mods.mekanism.chemical_infuser.recipeBuilder()
  • GasStackList. Sets the gas inputs of the recipe. Requires exactly 2.

    groovy
    gasInput(GasStack)
    gasInput(GasStack...)
    gasInput(Collection<GasStack>)
  • GasStackList. Sets the gas outputs of the recipe. Requires exactly 1.

    groovy
    gasOutput(GasStack)
    gasOutput(GasStack...)
    gasOutput(Collection<GasStack>)
  • 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 mekanism.common.recipe.machines.ChemicalInfuserRecipe).

    groovy
    register()
Example
groovy
mods.mekanism.chemical_infuser.recipeBuilder()
    .gasInput(gas('copper') * 10, gas('iron'))
    .gasOutput(gas('gold') * 15)
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

    groovy
    mods.mekanism.chemical_infuser.removeByInput(GasStack, GasStack)
  • Removes all registered recipes:

    groovy
    mods.mekanism.chemical_infuser.removeAll()
Example
groovy
mods.mekanism.chemical_infuser.removeByInput(gas('hydrogen'), gas('chlorine'))
mods.mekanism.chemical_infuser.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.mekanism.chemical_infuser.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.