> For the complete documentation index, see [llms.txt](https://obey.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://obey.gitbook.io/wiki/kits/features/categories.md).

# Kit Categories

Organizing kits into custom categories in CrownKits.

CrownKits allows you to group kits into distinct categories within the kit GUI.

***

{% hint style="info" %}
This Feature was not released yet.
{% endhint %}

## Configuration

Categories are defined under the `categories` section in `config.yml`:

```yaml
categories:
  pvp:
    prefix: "&c&lPvP Kits"
    description: "Kits designed for competitive combat."
    slot: 11
    showMaterial: DIAMOND_SWORD
    kits:
      - warrior
      - archer
      - tank

  farming:
    prefix: "&a&lFarming Kits"
    description: "Resource gathering and farming supplies."
    slot: 13
    showMaterial: GOLDEN_HOE
    kits:
      - farmer
      - miner
```

***

## Category Properties

* `prefix`: Display name of the category icon in the menu.
* `description`: Description lore for the category.
* `slot`: Inventory slot where the category item is placed in the GUI.
* `showMaterial`: Bukkit Material displayed as the icon.
* `kits`: List of kit names belonging to this category.
