> For the complete documentation index, see [llms.txt](https://smuddgge.gitbook.io/leaf-3.0.0/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://smuddgge.gitbook.io/leaf-3.0.0/inventorys/inventory-slot.md).

# Inventory Slot

The types of slots a item can be in

### Universal Slots

```yaml
# Slots can be separated by commas
"0,1,2,3": item...

# You can use a dash to represent a range of slots
"0-10": item...
```

### Specialised Slots

```yaml
# Slots at the top of the inventory
"top": item...

# Slots at the bottom of the inventory
"bottom": item...

# All slots on these rows of the inventory
"row0,row1,row2": item...

# The center of row 0
"center0": item...
```
