C_PetJournal.GetPetStats

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 5.0.4

Returns the stats of a collected battle pet.

health, maxHealth, power, speed, rarity = C_PetJournal.GetPetStats(petID)

Arguments

petID
string - GUID of pet in Pet Journal (different than speciesID and displayID)

Returns

health
number - Current health of the pet. Zero or negative if the pet is dead.
maxHealth
number - Maximum health of the pet
power
number
speed
number
rarity
number - 1: "Poor", 2: "Common", 3: "Uncommon", 4: "Rare", 5: "Epic", 6: "Legendary"

Details

Use _G["BATTLE_PET_BREED_QUALITY"..rarity] to convert the rarity to a String while drawing on Blizzard's pre-existing localization information.

Patch changes

Mists of Pandaria Patch 5.0.4 (2012-08-28): Added.