C_PetBattles.GetBreedQuality

From Warcraft Wiki
Jump to navigation Jump to search

Returns the rarity of a specific pet in the current pet battle.

rarity = C_PetBattles.GetBreedQuality(petOwner, petIndex)

Arguments

petOwner
number - 1: Current player, 2: Opponent
petIndex
number - Accepted values are 1-3, but the order is based off of the initial order. Which pet is currently active is irrelevant to the index, if it was your 3rd pet when you entered battle, it will always be 3 on the index.

Returns

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.

See also