Lesser Priest v1
90
ID:
590
Family ID:
Author:
Boekie
Rarity:
uncommon
Element:
astral
Attack Type:
Elemental
Attack Range:
1000
Attack CD:
2
Damage:
97-97
Abil. Factor:
0.52
Status:
Approved

Description:

This holy priest is able to smite creeps. It's very weak at the start but becomes a lot stronger when it gains experience.

Latest Upload Comment:

Restored from 1.10
Specials:
+3% attackspeed/lvl
Smite
When this tower damages a creep it has 5% chance to smite it, dealing 10 spelldamage.

Level Bonus:
+2% chance
+18 spelldamage
-0.6 permanent armor reduction (-0.2 on bosses) at level 25
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 0.05 ONDAMAGE_chanceLevelAdd: 0.02
function onDamage takes Tower tower returns nothing
    local Unit creep = Event.getTarget() 
    local integer level = tower.getLevel()

    call tower.doSpellDamage(creep,10.0+(level*18.0),tower.calcSpellCritNoBonus()) 
    call SFXOnUnit("Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl",creep.getUnit(),"origin") 
    
    if level == 25 then
    
        if creep.getSize() < SIZE_BOSS then
            call creep.modifyProperty(MOD_ARMOR, -0.6) 
        else
            call creep.modifyProperty(MOD_ARMOR, -0.2) 
        endif
        
    endif
    
endfunction