# 1: SlimefunItemStack

The first step to adding a food item to Cultivation is to create the `SlimefunItemStack`

The `SlimefunItemStack` is the display item, the item that will be held by the player once they make the food item in question.

1. Navigate to the CultivationStacks.java class.
2. The class is broken down into Regions, the last region is Foods and is right at the bottom. You should always add your new food item at the bottom of the list.
3. Create a new `SlimefunItemStack` as a constant (public static final). Create your `ItemStack` using `Theme#themedSlimefunItemStack()`.
   1. Ensure the ID begins with CLT\_ and that the ID is the full name of the item (no abbreviations)
   2. Note that the theme should always be `FOOD`
   3. Copying the format of a previous item will make things much easier.
   4. You can have as many or as few effects as you wish.

<figure><img src="/files/kx8lsjxyxH2WdsK1oSzl" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: 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://docs.sefiraat.dev/cultivation/developers/adding-food-items-via-pr/1-slimefunitemstack.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.
