Skip to content

Pressurized Reaction Chamber (Mekanism)

Description

Converts an input fluidstack, gasstack, and optional itemstack into an output gasstack and optional itemstack.

Identifier

The identifier mods.mekanism.pressurized_reaction_chamber will be used as the default on this page.

All Identifiers

Any of these can be used to refer to this compat:

groovy
mods.mekanism.PRC
mods.mekanism.prc
mods.mekanism.pressurizedreactionchamber
mods.mekanism.pressurizedReactionChamber
mods.mekanism.PressurizedReactionChamber
mods.mekanism.pressurized_reaction_chamber/* Used as page default */

Adding Recipes

  • Adds recipes in the format inputSolid, inputFluid, inputGas, outputSolid, outputGas, energy, duration:

    groovy
    mods.mekanism.pressurized_reaction_chamber.add(IIngredient, FluidStack, GasStack, ItemStack, GasStack, double, int)

Recipe Builder

Just like other recipe types, the Pressurized Reaction Chamber also uses a recipe builder.

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

Recipe Builder
  • Create the Recipe Builder.

    groovy
    mods.mekanism.pressurized_reaction_chamber.recipeBuilder()

  • IngredientList<IIngredient>. Sets the item inputs of the recipe. Requires greater than or equal to 0 and less than or equal to 1.

    groovy
    input(IIngredient)
    input(IIngredient...)
    input(Collection<IIngredient>)
  • FluidStackList. Sets the fluid inputs of the recipe. Requires exactly 1.

    groovy
    fluidInput(FluidStack)
    fluidInput(FluidStack...)
    fluidInput(Collection<FluidStack>)
  • GasStackList. Sets the gas inputs of the recipe. Requires exactly 1.

    groovy
    gasInput(GasStack)
    gasInput(GasStack...)
    gasInput(Collection<GasStack>)
  • ItemStackList. Sets the item outputs of the recipe. Requires greater than or equal to 0 and less than or equal to 1.

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

    groovy
    gasOutput(GasStack)
    gasOutput(GasStack...)
    gasOutput(Collection<GasStack>)
  • double. Sets the energy cost of the recipe. Requires greater than 0. (Default 0.0d).

    groovy
    energy(double)
  • int. Sets the time in ticks for the recipe to process. Requires greater than 0. (Default 0).

    groovy
    duration(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 mekanism.common.recipe.machines.PressurizedRecipe).

    groovy
    register()

Example
groovy
mods.mekanism.pressurized_reaction_chamber.recipeBuilder()
    .fluidInput(fluid('water'))
    .gasInput(gas('water'))
    .input(item('minecraft:clay_ball'))
    .gasOutput(gas('ethene'))
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

    groovy
    mods.mekanism.pressurized_reaction_chamber.removeByInput(IIngredient, FluidStack, GasStack)
  • Removes all registered recipes:

    groovy
    mods.mekanism.pressurized_reaction_chamber.removeAll()
Example
groovy
mods.mekanism.pressurized_reaction_chamber.removeByInput(ore('logWood'), fluid('water'), gas('oxygen'))
mods.mekanism.pressurized_reaction_chamber.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.pressurized_reaction_chamber.streamRecipes()

Contributors

© 2024 CleanroomMC. All Rights Reserved.