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
Status:
Approved

Description:

Basic tower with a small chance on attack to kill lesser targets immediately.
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
Creepy Tombstone v1
140
ID:
318
Family ID:
Author:
geX
Rarity:
common
Element:
darkness
Attack Type:
Decay
Attack Range:
1050
Attack CD:
1.95
Damage:
164-204
Status:
Approved

Description:

Basic tower with a small chance on attack to kill lesser targets immediately.
Tomb's Curse
This tower has a 1% chance on attack to kill a non boss, non champion target immediately.

Level Bonus:
 +0.17% chance
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 0.01 ONDAMAGE_chanceLevelAdd: 0.0017
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 == SIZE_AIR
        call tower.killInstantly(creep)
        call SFXAtUnit("Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl",creep.getUnit())       
    endif
        
endfunction
Cursed Tombstone v1
400
ID:
354
Family ID:
Author:
geX
Rarity:
common
Element:
darkness
Attack Type:
Decay
Attack Range:
1050
Attack CD:
1.9
Damage:
447-547
Status:
Approved

Description:

Basic tower with a small chance on attack to kill lesser targets immediately.
Tomb's Curse
This tower has a 1.2% chance on attack to kill a non boss, non champion target immediately.

Level Bonus:
 +0.2% chance
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 0.012 ONDAMAGE_chanceLevelAdd: 0.002
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 == SIZE_AIR
        call tower.killInstantly(creep)
        call SFXAtUnit("Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl",creep.getUnit())       
    endif
        
endfunction
Horrible Tombstone v1
900
ID:
324
Family ID:
Author:
geX
Rarity:
common
Element:
darkness
Attack Type:
Decay
Attack Range:
1050
Attack CD:
1.85
Damage:
953-1153
Status:
Approved

Description:

Basic tower with a small chance on attack to kill lesser targets immediately.
Tomb's Curse
This tower has a 1.4% chance on attack to kill a non boss, non champion target immediately.

Level Bonus:
 +0.22% chance
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 0.014 ONDAMAGE_chanceLevelAdd: 0.0022
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 == SIZE_AIR
        call tower.killInstantly(creep)
        call SFXAtUnit("Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl",creep.getUnit())       
    endif
        
endfunction
Daemonic Tombstone v1
1600
ID:
333
Family ID:
Author:
geX
Rarity:
common
Element:
darkness
Attack Type:
Decay
Attack Range:
1050
Attack CD:
1.8
Damage:
1585-1935
Status:
Approved

Description:

Basic tower with a small chance on attack to kill lesser targets immediately.
Tomb's Curse
This tower has a 1.6% chance on attack to kill a non boss, non champion target immediately.

Level Bonus:
 +0.24% chance
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 0.016 ONDAMAGE_chanceLevelAdd: 0.0024
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 == SIZE_AIR
        call tower.killInstantly(creep)
        call SFXAtUnit("Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl",creep.getUnit())       
    endif
        
endfunction
Monument of Death v1
2500
ID:
344
Family ID:
Author:
geX
Rarity:
common
Element:
darkness
Attack Type:
Decay
Attack Range:
1050
Attack CD:
1.75
Damage:
2296-2896
Status:
Approved

Description:

Basic tower with a small chance on attack to kill lesser targets immediately.
Tomb's Curse
This tower has a 2% chance on attack to kill a non boss, non champion target immediately.

Level Bonus:
 +0.25% chance
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 0.02 ONDAMAGE_chanceLevelAdd: 0.0025
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 == SIZE_AIR
        call tower.killInstantly(creep)
        call SFXAtUnit("Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl",creep.getUnit())       
    endif
        
endfunction