Masterful Machinery
  • 👋MM Docs
  • 💡Base Features & Config
    • Controllers
    • Ports
      • Item Ports
      • Fluid Ports
      • Energy Ports
      • Mekanism Ports (Compat)
        • Gas Ports
        • Slurry Ports
        • Pigment Ports
        • Infusion Ports
      • Create Kinetic (Compat)
      • PneumaticCraft Air (Compat)
    • Extra Blocks
    • Structures
      • Structure Requirements
      • Common Requirements
    • Process Recipes
      • Ingredient Configs
      • Input Entries
      • Output Entries
      • Recipe Conditions
  • 🔩Compat Features
    • KubeJS Support
      • Register Controller
      • Register Port
      • Register Extra Blocks
      • Create Structures
      • Create Process Recipes
  • Tutorial Guides
    • Step by Step Datapack Edition
  • General Help
    • 🪞Custom Textures
  • 🎥Gallery
    • Coke Oven
  • 📎Archived Versions
    • Deprecated 1.16 Versions
    • Deprecated 1.18-1.19 Versions
      • Data Packs
Powered by GitBook
On this page
  • What are Extra Blocks?
  • How to create Extra Blocks?
  1. Base Features & Config

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.

PreviousPneumaticCraft Air (Compat)NextStructures

Last updated 10 months ago

💡