Tombstone v1
30
ID:
307
Family ID:
Author:
geX
Rarity:
common
Element:
darkness
Attack Type:
Decay
Attack Range:
1050
Attack CD:
2
Damage:
37-47
Abil. Factor:
0.98
Status:
Approved

Description:

Basic tower with a small chance on attack to kill lesser targets immediately.

Latest Upload Comment:

Restored from 1.10
Tomb's Curse
This tower has a 0.8% chance on attack to kill a non boss, non champion target immediately.

Level Bonus:
 +0.15% chance
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 0.008 ONDAMAGE_chanceLevelAdd: 0.0015
function onDamage takes Tower tower returns nothing
            
local Unit creep = Event.getTarget()
    local integer size = creep.getSize()
    if size < SIZE_CHAMPION then  // removed or size == air
        call tower.killInstantly(creep)
        call SFXAtUnit("Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl",creep.getUnit())       
    endif
        
endfunction