Skip to content
Otho edited this page Oct 1, 2014 · 6 revisions

Items Properties:

READ THIS FIRST

  • {name} - The name of the item

  • {textureName} - The texture name of the item.

  • [creativeTab] = "Custom Items" - The tab label from the tab that the block will show.

  • [maxstackSize] = 64 - The maximum number on a stack (min: 1, max: 64)

Format Example

{
    "items":
    [
        {
            "name":"Item 1",
            "textureName":"item1",
            "creativeTab":"Custom Items",
            "maxstackSize": 1-64
        },
        {
            "name":"Item 2",
            "textureName":"item2",
            "creativeTab":"Custom Items",
            "maxstackSize": 1-64
        },
        ...
        {
            "name":"Item X",
            "textureName":"itemX",
            "maxstackSize": 1-64
        }
    ]
}

Clone this wiki locally