PNC Heat (PNC)
Make the recipe require or produce Pneumaticcraft heat.
This requirement requires Custom Machinery Pneumaticcraft to be installed.
The heat requirement (and also heat_per_tick requirement) can be used in a recipe to consume or produce Pneumaticcraft 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:pnc_heat" 
or each tick of the recipe with 
"type": "custommachinery:pnc_heat_per_tick".
Properties
The heat requirement has 3 mandatory properties and 2 optional properties.
Mandatory properties
"type": "custommachinery:pnc_heat" //Mandatory to define a heat requirement.
OR
"type": "custommachinery:pnc_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 PNC heat with 50% chance :
{
    "type": "custommachinery:pnc_heat",
    "mode": "output",
    "amount": 1000,
    "chance": 0.5
}Last updated
