Skip to content

Thermal Evaporation Plant (Mekanism)

Description

Converts an input fluidstack into an output fluidstack over time based on multiblock temperature.

Identifier

The identifier mods.mekanism.thermal_evaporation_plant 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.TEP
mods.mekanism.tep
mods.mekanism.thermalevaporation
mods.mekanism.thermalEvaporation
mods.mekanism.ThermalEvaporation
mods.mekanism.thermal_evaporation
mods.mekanism.thermalevaporationplant
mods.mekanism.thermalEvaporationPlant
mods.mekanism.ThermalEvaporationPlant
mods.mekanism.thermal_evaporation_plant/* Used as page default */

Adding Recipes

  • Adds recipes in the format input, output:

    groovy
    mods.mekanism.thermal_evaporation_plant.add(FluidStack, FluidStack)
Example
groovy
mods.mekanism.thermal_evaporation_plant.add(fluid('water'), fluid('steam'))

Recipe Builder

Just like other recipe types, the Thermal Evaporation Plant 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.thermal_evaporation_plant.recipeBuilder()

  • FluidStackList. Sets the fluid inputs of the recipe. Requires exactly 1.

    groovy
    fluidInput(FluidStack)
    fluidInput(FluidStack...)
    fluidInput(Collection<FluidStack>)
  • FluidStackList. Sets the fluid outputs of the recipe. Requires exactly 1.

    groovy
    fluidOutput(FluidStack)
    fluidOutput(FluidStack...)
    fluidOutput(Collection<FluidStack>)

  • 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.ThermalEvaporationRecipe).

    groovy
    register()

Example
groovy
mods.mekanism.thermal_evaporation_plant.recipeBuilder()
    .fluidInput(fluid('water'))
    .fluidOutput(fluid('steam'))
    .register()

Removing Recipes

  • Removes all recipes that match the given input:

    groovy
    mods.mekanism.thermal_evaporation_plant.removeByInput(FluidStack)
  • Removes all registered recipes:

    groovy
    mods.mekanism.thermal_evaporation_plant.removeAll()
Example
groovy
mods.mekanism.thermal_evaporation_plant.removeByInput(fluid('water'))
mods.mekanism.thermal_evaporation_plant.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.thermal_evaporation_plant.streamRecipes()

Contributors

© 2024 CleanroomMC. All Rights Reserved.