Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Item Catalog Files #741

Open
Xterionix opened this issue Feb 13, 2025 · 0 comments
Open

Item Catalog Files #741

Xterionix opened this issue Feb 13, 2025 · 0 comments

Comments

@Xterionix
Copy link
Contributor

From Blockception/Minecraft-bedrock-json-schemas#334

{
   "format_version": "1.21.60",
   "minecraft:crafting_items_catalog": {
      "categories": [
         {
            // Valid values are construction, equipment, nature, and items
            "category_name": "construction",
            "groups": [
               {
                  // This will add the items to the end of the
                  // existing planks group
                  "group_identifier": {
                     "icon": "minecraft:oak_planks",
                     "name": "minecraft:itemGroup.name.planks"
                  },
                  "items": [
                     "mynamespace:my_planks1",
                     "mynamespace:my_planks2"
                  ]
               },
               {
                  // This will create a new group
                  "group_identifier": {
                     "icon": "mynamespace:my_item",
                     // This is the name of your group which doubles as
                     // the localization string. The namespace is required
                     "name": "mynamespace:my_group_name"
                  },
                  "items": [
                     "mynamespace:my_item"
                  ]
               },
               {
                  // This adds items without being part of a
                  // group as loose items
                  "items": [
                     "mynamespace:my_loose_item"
                  ]
               }
            ]
         }
      ]
   }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant