31 lines
958 B
Lua
31 lines
958 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param plotID number
|
|
---@return number buildingID
|
|
---@return string buildingName
|
|
---@return string texturePrefix
|
|
---@return string icon
|
|
---@return string description
|
|
---@return number rank
|
|
---@return number currencyID
|
|
---@return number currencyAmount
|
|
---@return number goldAmount
|
|
---@return string timeRequirement
|
|
---@return boolean needsPlan
|
|
---@return boolean isPreBuilt
|
|
---@return table possSpecs
|
|
---@return table upgrades
|
|
---@return boolean canUpgrade
|
|
---@return boolean isMaxLevel
|
|
---@return boolean hasFollowerSlot
|
|
---@return table knownSpecs
|
|
---@return number currentSpec
|
|
---@return numbernil specCooldown
|
|
---@return boolean isBeingBuilt
|
|
---@return number timeStarted
|
|
---@return number buildDuration
|
|
---@return string timeRemainingText
|
|
---@return boolean canCompleteBuild
|
|
---Returns information on a building in the character's garrison
|
|
function C_Garrison.GetOwnedBuildingInfo(plotID) end
|