Magic Gloves v1
150
lvl: 8

ID:

271

Author:

Boekie

Rarity:

common

Status:

Approved

Description:

These magic gloves add minor magic powers to each attack.

Latest Upload Comment:

Restored from 1.10
Magic Powers
This item deals 100 spelldamage multiplied with the base attack speed of the tower on each attack.

Level Bonus:
+5 damage
Download

Toggle Triggers

On Attack

goldcost: 150 ONATTACK_chance: 1.0 ONATTACK_chanceLevelAdd: 0.0
function onAttack takes Item itm returns nothing
    local Tower tower = itm.getCarrier()
    call tower.doSpellDamage(Event.getTarget(),(100+(tower.getLevel()*5))*tower.getBaseAttackspeed(),tower.calcSpellCritNoBonus()) 
endfunction