Eye of True Sight v1
550
lvl: 20

ID:

221

Author:

cedi

Rarity:

rare

Status:

Approved

Description:

This eye is a magical artefact created to hunt and kill invisible creatures.

Latest Upload Comment:

Restored from 1.10
True Sight
The carrier of this item deals 20% more damage against invisible creeps.

Level Bonus:
+0.8% damage
Specials:

Detection
Reveals invisible enemies in 900 range.
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 goldcost: 550 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
    if Event.getTarget().isInvisible() then
        set Event.damage = Event.damage * ( 1.2 + 0.008 * itm.getCarrier().getLevel() )
    endif
endfunction