Scroll of Piercing Magic v1
300
lvl: 14

ID:

124

Author:

drol

Rarity:

uncommon

Status:

Approved

Description:

An ancient scroll which learns the reader how to destroy even the most fortified magic protections.

Latest Upload Comment:

Restored from 1.10
Piercing Magic
Deals an additional 25% damage as spell damage against creeps with Sif armor.
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()
    if t.getArmorType() == ARMOR_SIF then
        call itm.getCarrier().doSpellDamage( t, Event.damage * 0.25, itm.getCarrier().calcSpellCritNoBonus() )
        call SFXOnUnit( "Abilities\\Spells\\Human\\Feedback\\SpellBreakerAttack.mdl", t.getUnit(), "origin" )
    endif
endfunction