Heat (Mekanism)
Make the recipe require or produce Mekanism heat.
This requirement requires Custom Machinery Mekanism to be installed.
The heat requirement (and also heat_per_tick requirement) can be used in a recipe to consume or produce mekanism heat.
The requirement will directly interact with the machine's heat component, if the machine does not have a heat component then the requirement won't work.
This requirement is available in both modes :
Input : consume heat, decrease machine temperature.
Output : produce heat, increase machine temperature.
This requirement can either consume/produce heat once with
"type": "custommachinery:heat"
or each tick of the recipe with
"type": "custommachinery:heat_per_tick"
.
Properties
The heat requirement has 3 mandatory properties and 2 optional properties.
Mandatory properties
"type": "custommachinery:heat" //Mandatory to define a heat requirement.
OR
"type": "custommachinery:heat_per_tick" //Mandatory to define a heat per tick requirement.
Optional properties
Example
A heat requirement that will make the custom machine recipe produce 1000 of Mekanism heat with 50% chance :
{
"type": "custommachinery:heat",
"mode": "output",
"amount": 1000,
"chance": 0.5
}
Last updated