Pigment Ports

How to create a Pigment Port?

{
  "id": "my_pigment_port",
  "controllerIds": "mm:controller_a",
  "name": "My Pigment Port",
  "type": "mm:mekanism/pigment",
  "config": {
    "capacity": 10000000
  }
}
"type": "mm:mekanism/pigment"

The "type" field for the Mekanism pigment port is set to mm:mekanism/pigment. This tells the config reader to look for Mekanism pigment port-specific fields inside the "config" object field.

"config": {
    "capacity": 10000000
}

Inside of the "config" field, the "capacity" field is used to define the capacity of the tank which will store the pigment in the port.

Last updated