Skip to content
Timothy Metcalfe edited this page Dec 22, 2019 · 1 revision

This is a mod to add a way to add content to the game, including blocks, items, and events. It is intended for use by modpack developers, and does nothing out of the box.

It adds a folder in the Minecraft directory called "gameobjects". Create a JSON file in there with any name you'd like and add entries.

For example, copy the following into a file named test.json under the gameobjects folder:

[
  {
    "type": "item",
    "name": "testitem"
  },
  {
    "type": "block",
    "name": "testblock"
  }
]

You've added your first item and block! Start the game, go into creative mode, and look in the miscellaneous tab to find them.

There are currently 2 main object types that can be added to the game. Head to each of their pages for more information:

Clone this wiki locally