Extra Blocks

What are Extra Blocks?

These blocks are simple blocks you can add with an existing look to compliment your machines.

Currently there are three different possible extra blocks.

  • Vent

  • Gearbox

  • Circuit

How to create Extra Blocks?

To create a Circuit block called "My Circuit" with the id of mm:my_circuit

{
  "id": "my_circuit",
  "name": "My Circuit",
  "type": "mm:circuit"
}

To create a Gearbox block called "My Gears" with the id of mm:my_gears

{
  "id": "my_gears",
  "name": "My Gears",
  "type": "mm:gearbox"
}

To create a Gearbox block called "My Vent" with the id of mm:my_vent

{
  "id": "my_vent",
  "name": "My Vent",
  "type": "mm:vent"
}

The "name" field can be changed to the Language name of your block.

The "id" field can be changed to the id path of your block. The "id" field will be prefixed with mm:. So my_vent will have the full id of mm:my_vent.

Last updated