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

# Items

Everything regarding creating/modifying Items

## Item Builder

For all methods, and their java docs click [here](https://github.com/Manered/Utils/blob/main/src/main/java/dev/manere/utils/item/ItemBuilder.java)

An `ItemBuilder` is a builder version of an `ItemStack`. After you finish with all of your item modifications, you can call `build()` to retrieve an `ItemStack`.

Let's create the item in the page cover/banner.

```java
ItemStack stack = ItemBuilder.item(Material.GRASS_BLOCK)
    .name(TextStyle.style("<#eecb4e><bold>Custom Block</bold>"))
    .lore(TextStyle.style(
        "<#685a5e><bold>INTERESTING BLOCK</bold>",
        "<#685a5e>Made with an",
        "<#eecb4e>ItemBuilder"
    ))
    .build();
```
