Astral Lantern v1
35
ID:
117
Family ID:
Author:
Velex
Rarity:
common
Element:
astral
Attack Type:
Magic
Attack Range:
750
Attack CD:
2.2
Damage:
90-95
Abil. Factor:
.97
Status:
Approved

Description:

Tower that deals additional damage to invisible units.

Latest Upload Comment:

Restored from 1.10
Light in the Dark
Deals 15% additional damage to invisible creeps.

Level Bonus:
+0.6% damage
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    
    if Event.getTarget().isInvisible() then
        set Event.damage = Event.damage * ( 1.15 + 0.006 * tower.getLevel() )
    endif
    
endfunction