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
:groovymods.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:
groovymods.thermalexpansion.coolant.remove(FluidStack)
Removes all registered recipes:
groovymods.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:
groovymods.thermalexpansion.coolant.streamRecipes()