Skip to content

Thermal Mediator (Thermal Expansion)

Description

Consumes fluid to speed up the tick rate of adjacent machines and devices and generate power in the Compression Dynamo.

Warning

Due to a limitation involving displaying the entry in JEI, entries must output at least 4000 rf.

Identifier

Refer to this via any of the following:

groovy
mods.thermal.coolant
mods.thermal.Coolant
mods.thermalexpansion.coolant/* Used as page default */
mods.thermalexpansion.Coolant

Adding Entries

  • Adds recipes in the format energy, input, fluidOutput:

    groovy
    mods.thermalexpansion.coolant.add(FluidStack, int, int)
Example
groovy
mods.thermalexpansion.coolant.add(fluid('lava'), 4000, 30)

Removing Entries

  • Removes the given fluid from the Thermal Mediator:

    groovy
    mods.thermalexpansion.coolant.remove(FluidStack)
  • Removes all registered recipes:

    groovy
    mods.thermalexpansion.coolant.removeAll()
Example
groovy
mods.thermalexpansion.coolant.remove(fluid('cryotheum'))
mods.thermalexpansion.coolant.removeAll()

Getting the value of entries

  • Iterates through every entry in the registry, with the ability to call remove on any element to remove it:

    groovy
    mods.thermalexpansion.coolant.streamRecipes()

Contributors

Changelog

© 2024 CleanroomMC. All Rights Reserved.