17 lines
366 B
Lua
17 lines
366 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias spellSchool
|
|
---| 1 - Physical
|
|
---| 2 - Holy
|
|
---| 3 - Fire
|
|
---| 4 - Nature
|
|
---| 5 - Frost
|
|
---| 6 - Shadow
|
|
---| 7 - Arcane
|
|
|
|
---@param school spellSchool
|
|
---@return number minCrit
|
|
---Returns the player's spell critical strike chance for a spell school
|
|
function GetSpellCritChance(school) end
|