Pendant of Promptness v1
2505
lvl: 76

ID:

137

Author:

Glowackos

Rarity:

unique

Status:

Approved

Description:

Tears at the very fabrics of time to imbue its bearer with immense speed.

Latest Upload Comment:

Restored from 1.10
Energy Drainer
Attacking with super speed comes at a price. The carrier burns 5% of its maximum mana per attack. Without mana it is unable to attack.
Specials:
Specials:
+75% attackspeed (+1%/lvl)
Download

Toggle Triggers

On Attack

goldcost: -7000 ONATTACK_chance: 1.0 ONATTACK_chanceLevelAdd: 0.0
function onAttack takes Item itm returns nothing
    local Tower tower = itm.getCarrier()
    if tower.subtractMana(0.05 * GetUnitState(tower.getUnit(), UNIT_STATE_MAX_MANA), false) == 0 then
        call tower.orderStop()
    endif
endfunction