WoW:API GetSpecializationInfoByID: Difference between revisions

m
no edit summary
(Created page with "{{wowapi}} Returns information about the player's specializations. local id, name, description, icon, background, role, class = GetSpecializationInfoByID(specID) == Argument...")
 
mNo edit summary
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
Returns information about the player's specializations.
Returns information about the player's specializations.
  local id, name, description, icon, background, role, class = GetSpecializationInfoByID(specID)
  local id, name, description, icon, background, role, class
    = GetSpecializationInfoByID(specializationID)


== Arguments ==
== Arguments ==
;specID : Number - The id from [[API_GetSpecializationInfo|GetSpecializationInfo()]] ;  Listed at [[Specialization_IDs]]
;specializationID
: Number - The id from [[API_GetSpecializationInfo|GetSpecializationInfo()]]. See [[specializationID]]


== Returns ==
== Returns ==
;id : Number - [[Specialization_IDs|specialization ID]].
;id
;name : String - specialization name, e.g. "Balance".
: Number - [[specializationID]].
;description : String - description of the specialization, e.g. "Can take on the form of a powerful Moonkin, balancing the power of Arcane and Nature magic to destroy enemies at a distance."
;name
;icon : String - Texture path to this specialization's icon.
: String - specialization name, e.g. "Balance".
;background : String - Background texture name for this talent tree; prepend "Interface\TALENTFRAME\" to this value for a valid texture path.
;description
;role : String - This specialization's intended role in a party, one of "DAMAGER", "TANK", "HEALER".
: String - description of the specialization, e.g. "Can take on the form of a powerful Moonkin, balancing the power of Arcane and Nature magic to destroy enemies at a distance."
;class : String - This specialization's class, e.g. "Warrior".
;icon
: String - Texture path to this specialization's icon.
;background
: String - Background texture name for this talent tree; prepend "Interface\TALENTFRAME\" to this value for a valid texture path.
;role
: String - This specialization's intended role in a party, one of "DAMAGER", "TANK", "HEALER".
;class
: String - This specialization's class, e.g. "Warrior".
== Details ==
== Details ==