> For the complete documentation index, see [llms.txt](https://zauctionhouse.groupez.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zauctionhouse.groupez.dev/configurations/categories.md).

# Categories

In the categories.yml file you will be able to create different categories and have a list of [materials](https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html) for each category:

{% hint style="info" %}
You can create your own categories in addition to the default categories created by the plugin.
{% endhint %}

```yaml
categories:
  examples:
    name: Examples
    materials:
    - name: test name
    - loreKey: test lore
    - material: STONE
      name: test stone
      removeColor: true
    - material: PAPER
      modelId: 2500
  blocks:
    name: Blocks
    materials:
    - material: AIR
    - material: STONE
    - material: GRANITE
    - material: POLISHED_GRANITE
    - ...
  
  potions:
    name: Potions
    materials:
    - material: BLAZE_ROD
    - material: GHAST_TEAR
    - material: NETHER_STAR
    - ...
  tools:
    name: Tools
    materials:
    - material: STONE_AXE
    - material: STONE_SHOVEL
    - material: STONE_HOE
    - material: STONE_PICKAXE
    - material: IRON_AXE
    - ...
  weapons:
    name: Weapons
    materials:
    - material: FLINT_AND_STEEL
    - material: BOW
    - material: ARROW
    - ...
  misc:
    name: Misc

```

Use the `CategoryItem` interface to create your own item verification for a Category.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://zauctionhouse.groupez.dev/configurations/categories.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
