> For the complete documentation index, see [llms.txt](https://items.advancedplugins.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://items.advancedplugins.net/items/items-settings/item-abilities.md).

# Item Abilities

```yaml
abilities:
  RIGHT_CLICK:
    chance: 50
    cooldown: 5
    conditions:
    - '%your condition here% = true : %allow%'
    effects:
      - 'CANCEL_EVENT'
      - 'OPEN_CRAFTING_TABLE'
```

#### `abilities`

* Abilities are effects that can be used with triggers.
* Read more about abilities here: [Abilities Wiki](https://wiki.advancedplugins.net/abilities)

#### `triggers`

* Triggers are what activate effects.
* Find all triggers here: [Triggers Wiki](https://wiki.advancedplugins.net/abilities/triggers)
* In the example above, when a player right-clicks with the item, it will activate the effects in this trigger.

#### `effects`

* The effects that will be activated by the trigger.
* Find all effects here: [Effects Wiki](https://wiki.advancedplugins.net/abilities/effects)
* In the example above, right-clicking with the item will cancel the event and open a crafting table.
