8 lines
381 B
Lua
8 lines
381 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param itemID number
|
|
---@param itemName string
|
|
---@param itemLink string
|
|
---@return 1nil consumable
|
|
---Returns whether an item is consumable. Indicates whether the item is destroyed upon use, not necessarily whether it belongs to the "Consumable" type/class.
|
|
function IsConsumableItem(itemID, itemName, itemLink) end |