landsandboat/scripts/enum/inventory_location.lua

32 lines
739 B
Lua
Raw Permalink Normal View History

-----------------------------------
-- Inventory locations
-----------------------------------
xi = xi or {}
---@enum xi.inventoryLocation
xi.inventoryLocation =
{
INVENTORY = 0,
MOGSAFE = 1,
STORAGE = 2,
TEMPITEMS = 3,
MOGLOCKER = 4,
MOGSATCHEL = 5,
MOGSACK = 6,
MOGCASE = 7,
WARDROBE = 8,
MOGSAFE2 = 9,
WARDROBE2 = 10,
WARDROBE3 = 11,
WARDROBE4 = 12,
WARDROBE5 = 13,
WARDROBE6 = 14,
WARDROBE7 = 15,
WARDROBE8 = 16,
RECYCLEBIN = 17,
MAX_CONTAINER_ID = 18,
}
---@alias xi.inv xi.inventoryLocation
xi.inv = xi.inventoryLocation