22 lines
615 B
Lua
22 lines
615 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias runeSlot
|
|
---| 1 - Leftmost
|
|
---| 2 - Second from left
|
|
---| 3 - Fifth from left (second from right)
|
|
---| 4 - Sixth from left (rightmost)
|
|
---| 5 - Third from left
|
|
---| 6 - Fourth from left
|
|
|
|
---@alias runeType
|
|
---| 1 - Blood rune
|
|
---| 2 - Unholy rune
|
|
---| 3 - Frost rune
|
|
---| 4 - Death rune
|
|
|
|
---@param slot runeSlot
|
|
---@return runeType runeType
|
|
---Returns the type of one of the player's rune resources. Note the placement of runes 3-4 (normally Unholy) and 5-6 (normally Frost) are reversed in the default UI.
|
|
function GetRuneType(slot) end
|