Chemical component (Mekanism)
Add chemical tanks inside the machine.
This component requires Custom Machinery Mekanism to be installed.
This components is used to make the machine able to hold Mekanism chemicals.
It is compatible with Mekanism pressurized pipes and any other mods that use the same system.
Basically adding this component to the machine json will add a chemical tank to the machine.
Chemical component is defined with "type": "custommachinery:chemical"
in the json.
Properties
The chemical component has 3 mandatory properties and 8 optional properties :
Mandatory properties
"type": "custommachinery:chemical" //Mandatory to define a chemical component.
Optional properties
I/O ConfigExample
An example of gas chemical component that can store 10000mB of sulfuric acid only, send 1000mB/tick and receive 666mB/tick.
{
"type": "custommachinery:chemical",
"capacity": 10000,
"id": "tank1",
"maxInput": 666,
"maxOutput": 1000,
"whitelist": "mekanism:sulfuric_acid"
}
Last updated