Skip to content

Trinket Slot

A trinket slot is a slot where trinkets can be equipped. This is used in powers that interact with trinkets.

Note

This data type is useless without Trinkets installed.

Note

See Trinkets Documentation for a list of default trinket slots. Value before the slash is the group, value after the slash is the name. E.g. chest/necklace is the necklace slot in the chest group.

Fields

Field Type Default Description
group String optional The group of the slot.
name String optional The name of the slot.
index Integer optional The index of the slot.

Examples

{
  "group": "chest",
  "name": "necklace",
  "index": 0
}

This would represent the first slot in the chest group, named necklace.

{
  "group": "chest"
}

This would represent any slot in the chest group (chest/necklace, chest/cape, chest/back, etc.).

{
  "name": "glove"
}

This would represent any slot named glove in any group (hand/glove, offhand/glove, etc.).

{
  "index": 0
}

This would represent the first slot in any group.

{}

This would represent any slot.

I think you get the idea.