The items.json structure

Info

👷 🚧 This Page is currently under construction ! 🏗️ 👷‍♀️

Prerequisites

To understand whats following, ensure to have read the Content Pack Files Structure page.

objects/items.json was designed to register all the new items you want for Minecraft

That's a JsonArray file, it always start with []


Create a Simple Item

A simple item can be registered only with the (mandatory) registryName object.

Example
[
  {
    "registryName" : "my_supa_item"
  }
]
Example with multiple items
[
   {
     "registryName" : "my_supa_item"
   },
   {
      "registryName" : "my_supa_other_item"
   },
   {
      "registryName" : "yeah_iteeeeeeems"
   }            
]

Create a Complex Item

You can customize your item with some (optional) json objects.

Warning

If these objects are empty, null or misspelled, they are ignored.