Ability
Ability API
Ability
extands Entity
GetOwner(ability: Ability
): Entity | nil
Ability
): Entity | nil
ability
Ability
Returns the ability owner.
IsPassive(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is passive.
IsBasic(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is basic.
IsUltimate(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is an ultimate.
IsAttributes(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is an attribute or a talent.
GetType(ability: Ability
): Enum.AbilityTypes
Ability
): Enum.AbilityTypes
ability
Ability
Returns the ability type.
GetBehavior(ability: Ability
): Enum.AbilityBehavior
Ability
): Enum.AbilityBehavior
ability
Ability
Returns the ability type.
GetTargetTeam(ability: Ability
): Enum.TargetTeam
Ability
): Enum.TargetTeam
ability
Ability
Returns the target team of this Ability.
GetTargetType(ability: Ability
): Enum.TargetType
Ability
): Enum.TargetType
ability
Ability
Returns the target type of this Ability.
GetTargetFlags(ability: Ability
): Enum.TargetFlags
Ability
): Enum.TargetFlags
ability
Ability
Returns the target flags of this Ability.
GetDamageType(ability: Ability
): Enum.DamageTypes
Ability
): Enum.DamageTypes
ability
Ability
Returns the damage type of this Ability.
GetImmunityType(ability: Ability
): Enum.ImmunityTypes
Ability
): Enum.ImmunityTypes
ability
Ability
Returns the immunity type of this Ability.
GetDispellableType(ability: Ability
): Enum.DispellableTypes
Ability
): Enum.DispellableTypes
ability
Ability
Returns the dispel type of this Ability.
GetLevelSpecialValueFor(ability: Ability
, lvl [?]
: integer
): number
Ability
, lvl [?]
: integer
): number
ability
Ability
lvl [?]
integer
Ability level, if -1 will automatically get lvl. (default: -1)
WRONG API FIX ME IT MUST BE GetSpecialValueFor.
IsReady(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is ready to use.
SecondsSinceLastUse(ability: Ability
): number
Ability
): number
ability
Ability
Returns the number of seconds passed from the last usage of the ability. Will return -1 if the ability is not on the cooldown.
GetDamage(ability: Ability
): number
Ability
): number
ability
Ability
Returns the ability damage from assets/data/npc_abilities.json field. Will return 0.0 if the ability doesn't contain this field.
GetLevel(ability: Ability
): integer
Ability
): integer
ability
Ability
Returns the current ability level.
GetCastPoint(ability: Ability
): number
Ability
): number
ability
Ability
Gets the cast delay of this Ability.
IsCastable(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is currently castable. Checks for mana cost, cooldown, level, and slot for items.
IsChannelling(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is in channeling state. Example: teleport, rearm, powershot etc.
GetName(ability: Ability
): string
Ability
): string
ability
Ability
Returns the ability name or empty string.
CastNoTarget(ability: Ability
, queue [?]
: boolean
, push [?]
: boolean
): void
Ability
, queue [?]
: boolean
, push [?]
: boolean
): void
ability
Ability
queue [?]
boolean
Will add order to the cast queue. (default: false)
push [?]
boolean
Will push order to the OnPrepareUnitOrders callback. (default: false)
Casts the ability that doesn't require a target or position.
CastPosition(ability: Ability
, pos: Vector
, queue [?]
: boolean
, push [?]
: boolean
): void
Ability
, pos: Vector
, queue [?]
: boolean
, push [?]
: boolean
): void
ability
Ability
pos
Vector
Order position.
queue [?]
boolean
Will add order to the cast queue. (default: false)
push [?]
boolean
Will push order to the OnPrepareUnitOrders callback. (default: false)
Casts the ability at a specified position.
CastTarget(ability: Ability
, target: NPC
, queue [?]
: boolean
, push [?]
: boolean
): void
Ability
, target: NPC
, queue [?]
: boolean
, push [?]
: boolean
): void
ability
Ability
target
NPC
Order target.
queue [?]
boolean
Will add order to the cast queue. (default: false)
push [?]
boolean
Will push order to the OnPrepareUnitOrders callback. (default: false)
Casts the ability on a specified target.
Toggle(ability: Ability
, queue [?]
: boolean
, push [?]
: boolean
): void
Ability
, queue [?]
: boolean
, push [?]
: boolean
): void
ability
Ability
queue [?]
boolean
Will add order to the cast queue. (default: false)
push [?]
boolean
Will push order to the OnPrepareUnitOrders callback. (default: false)
Toggles the ability. Example: Armlet.
ToggleMod(ability: Ability
, queue [?]
: boolean
, push [?]
: boolean
): void
Ability
, queue [?]
: boolean
, push [?]
: boolean
): void
ability
Ability
queue [?]
boolean
Will add order to the cast queue. (default: false)
push [?]
boolean
Will push order to the OnPrepareUnitOrders callback. (default: false)
Toggles the ability modifier. Example: Frost Arrows, Medusa's Shield.
CanBeUpgraded(ability: Ability
): Enum.AbilityLearnResult | nil
Ability
): Enum.AbilityLearnResult | nil
ability
Ability
Returns if the ability is upgradable with a specific reason.
GetIndex(ability: Ability
): integer
Ability
): integer
ability
Ability
Returns the index of the ability in the ability owner's list. The index can be used in NPC.GetAbilityByIndex later.
GetCastRange(ability: Ability
): number
Ability
): number
ability
Ability
Returns the cast range of the ability.
IsHidden(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if ability is hidden. Example: Zeus's Nimbus before purchasing agh.
IsActivated(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is in an activated state.
GetDirtyButtons(ability: Ability
): integer
Ability
): integer
ability
Ability
Returns we don't know what :).
GetToggleState(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns if the ability is toggled. Example: Medusa's Shield.
IsInAbilityPhase(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is in the cast state. Examples: Nature's Prophet's Teleport, Meepo's Poof.
GetCooldown(ability: Ability
): number
Ability
): number
ability
Ability
Returns the amount of time before the ability can be cast.
GetCooldown(ability: Ability
): number
Ability
): number
ability
Ability
Returns the amount of time the ability couldn't be cast after being used.
GetManaCost(ability: Ability
): number
Ability
): number
ability
Ability
Returns the ability mana cost.
GetAutoCastState(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns the autocast state of the ability.
GetChannelStartTime(ability: Ability
): number
Ability
): number
ability
Ability
Returns the gametime the channeling of the ability will start. Requires the ability to be in the cast state when called.
GetCastStartTime(ability: Ability
): number
Ability
): number
ability
Ability
Returns the gametime the ability will be casted. Requires the ability to be in the cast state when called.
IsInIndefinateCooldown(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the cooldown of the ability is indefinite.
IsInIndefinateCooldown(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the cooldown of the ability is frozen.
GetOverrideCastPoint(ability: Ability
): number
Ability
): number
ability
Ability
Returns the overridden cast point. Example: Arcane Blink.
IsStolen(ability: Ability
): boolean
Ability
): boolean
ability
Ability
Returns true
if the ability is stolen.
GetCurrentCharges(ability: Ability
): integer
Ability
): integer
ability
Ability
Returns the number of charges available.
ChargeRestoreTimeRemaining(ability: Ability
): integer
Ability
): integer
ability
Ability
Returns the remaining time for the next charge to restore.
Last updated