Frost Root v1
30
ID:
150
Family ID:
Author:
drol
Rarity:
common
Element:
ice
Attack Type:
Energy
Attack Range:
750
Attack CD:
0.75
Damage:
17-21
Abil. Factor:
0.841
Status:
Approved

Description:

Can still grow even in the coldest places.

Latest Upload Comment:

Restored from 1.10
Frozen Thorn
Has a 15% chance to deal 25 additional spell damage each time it deals damage.

Level Bonus:
+1 spell damage
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    if Event.isMainTarget() and tower.calcChance(0.15) and not Event.getTarget().isImmune() then
        call SFXAtUnit("Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", Event.getTarget().getUnit())
        call tower.doSpellDamage(Event.getTarget(), 25 + tower.getLevel(), tower.calcSpellCritNoBonus())
    endif
endfunction