Skip to content

Item format

plusmouse edited this page Mar 20, 2024 · 6 revisions

All basic items as stored in the item storage should follow this format:

{
  itemID: number,
  itemLink: string, -- Item link, as acquired from an item that is in the client's item cache.
  itemCount: number or nil, -- if nil assumed to be 1
  iconTexture: number, -- Icon texture for the item, e.g. from GetItemInfo or C_Container.GetContainerItemInfo
  quality: Enum.ItemQuality,
  isBound: boolean or nil, -- Is this item soulbound, account bound, or similar.
}