Broken Cage v1
70
ID:
580
Family ID:
Author:
Chronos
Rarity:
common
Element:
darkness
Attack Type:
Decay
Attack Range:
800
Attack CD:
1.5
Damage:
88-93
Abil. Factor:
0.79
Status:
Approved

Description:

Common darkness tower, adept at eliminating magical, nature and undead foes.

Latest Upload Comment:

Restored from 1.10
Banish
Magic, undead and nature creeps damaged by this tower suffer an additional 35% of that damage as spelldamage.

Level Bonus:
+1% damage
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    local Unit creep = Event.getTarget()
    if creep.getCategory() <= CATEGORY_NATURE then
        call tower.doSpellDamage(creep, Event.damage * (0.35 + (0.01 * tower.getLevel())), tower.calcSpellCritNoBonus())
        call SFXAtUnit("Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", creep.getUnit())
    endif
endfunction