Unstable Current v1
300
lvl: 14

ID:

226

Author:

Finger of Destiny

Rarity:

uncommon

Status:

Approved

Description:

Used to increase the damage against hel armor.

Latest Upload Comment:

Restored from 1.10
Unstable Current
Increases the damage against creeps with the armor type hel by 25%.
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 goldcost: 300 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
    local Creep T = Event.getTarget()
    local Tower U = itm.getCarrier()
    if T.getArmorType() == ARMOR_HEL then
        set Event.damage = Event.damage * 1.25
        call SFXOnUnit( "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl", T.getUnit(), "chest" )
     endif
endfunction