Spear of Loki v1
1470
lvl: 43

ID:

264

Author:

Boekie

Rarity:

unique

Status:

Approved

Description:

This spear of an old northern god is a very tricky weapon. It has enormous powers but also has a drawback.

Latest Upload Comment:

Restored from 1.10
Tricky Weapon
Each attack there is a 15% chance the carrier gets stunned for 1 second.
Specials:
+50% damage (+1%/lvl)
Download

Toggle Triggers

On Attack

goldcost: -1000 ONATTACK_chance: 1.0 ONATTACK_chanceLevelAdd: 0.0
function onAttack takes Item itm returns nothing
    local Tower twr = itm.getCarrier()
    if GetRandomReal(0, 1) < 0.15 / twr.getProp_TriggerChances() then
        call cb_stun.applyOnlyTimed(itm,twr,1)
    endif
endfunction