Obelisk of Fortuity v1
30
ID:
205
Family ID:
Author:
D1000
Rarity:
common
Element:
iron
Attack Type:
Physical
Attack Range:
800
Attack CD:
1.5
Damage:
62-66
Abil. Factor:
1.32
Status:
Approved

Description:

An ancient Obelisk. Some powers are hidden here, but something seems wrong. Maybe it just has to warm up a bit.

Latest Upload Comment:

Restored from 1.10
Warming Up
Each attack of this tower has a 30% chance to miss the target.

Level Bonus:
-0.6% miss chance
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1 ONDAMAGE_chanceLevelAdd: 0
function onDamage takes Tower tower returns nothing
    if tower.calcBadChance( 0.3 - tower.getLevel() * 0.006 ) then
        set Event.damage = 0
        call tower.getOwner().displayFloatingTextX("Miss",tower,255, 0, 0,255,0.05,0.0,2.0)
    endif
endfunction