C_PetBattles.GetAuraInfo

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

Returns information for an aura in a pet battle.

auraID, instanceID, turnsRemaining, isBuff = C_PetBattles.GetAuraInfo(petOwner, petIndex, auraIndex)

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.
auraIndex
number - The number from an index of all active auras.

Returns

auraID
number - The ability ID of the aura (all auras are abilities too).
instanceID
number - A unique identifier for this aura; used for differentiation purposes only.
turnsRemaining
number - The number of rounds left for the aura to remain active.
isBuff
boolean - True if the aura is displayed to the user, false otherwise.

Patch changes

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

See also