Phase Gloves v1
550
lvl: 20

ID:

276

Author:

Boekie

Rarity:

rare

Status:

Approved

Description:

The carrier of this item deals a small amount of its attack damage as spelldamage.

Latest Upload Comment:

Restored from 1.10
Phase Powers
The carrier of this item deals 30% of its attackdamage as spelldamage. This is no bonus damage,  the tower will deal less attackdamage!
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 goldcost: 550 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
local real damage = Event.damage
local Unit creep = Event.getTarget()
local Tower tower = itm.getCarrier()

set Event.damage = damage * 0.7 
call tower.doSpellDamage(creep,damage * 0.3,tower.calcSpellCritNoBonus()) 
endfunction