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

# Stackable

Stack Stringblocks on each other!

Change your custom stringblock like a minecraft PINK PETALS or CANDLE!

<figure><img src="https://4179595020-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FCKPUSq10oq4Caxl6Izvn%2Fuploads%2FfwoRtjGQnpXtfu88URFj%2Fjava_dHYz9HVB1P.gif?alt=media&amp;token=b823f08d-1136-4067-9b67-71cccc9f4d93" alt=""><figcaption><p>Stackable Showcase</p></figcaption></figure>

{% hint style="info" %}
This mechanic works with Stringblocks and Furniture!
{% endhint %}

```yaml
# Example

clover:
  itemname: Clover
  material: PAPER
  Pack:
    ...
  Mechanics:
    stackable:
      next: clover_2         # Next Stringblock item
      group: clover          # Whatever group id

clover_2:
  Pack:
    ...
  Mechanics:
    stackable:
      next: clover_3          # Next Stringblock item
      group: clover           # The same group id

clover_3:
  Pack:
    ...
  Mechanics:
    ...
    # There is no more stackable Mechanic so this is the last stackable option
```
