C_PetBattles.GetAbilityState

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

Returns information about a pet's ability's current state in the pet battle.

isUsable, currentCooldown, currentLockdown = C_PetBattles.GetAbilityState(petOwner, petIndex, actionIndex)

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.
actionIndex
number - Accepted values are 1-3, corresponding to the ability buttons from left to right.

Returns

isUsable
boolean - if ability can be used
currentCooldown
number - turns until ability can be used (if not usable due to cooldown)
currentLockdown
number - turns until ability can be used (if not usable due to lockdowns, such as Nevermore)

Patch changes

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

See also