Bones of Essence v1
500
lvl: 26

ID:

194

Author:

cedi

Rarity:

uncommon

Status:

Approved

Description:

Used to increase the damage against sif armor.

Latest Upload Comment:

Restored from 1.10
Bones of Essence
Increases the damage against creeps with the armor type sif by 25%.
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 goldcost: 500 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_SIF then
        set Event.damage = Event.damage * 1.25
        call SFXOnUnit( "Abilities\\Weapons\\BansheeMissile\\BansheeMissile.mdl", T.getUnit(), "chest" )
    endif
endfunction