Bartuc's Spirit v1
1000
lvl: 40

ID:

138

Author:

Bartuck

Rarity:

rare

Status:

Approved

Description:

Enhances the carrier with the spirit of Bartuc, an ancient demonic warrior. Occasionally releases a burst of magic upon attacking.

Latest Upload Comment:

Restored from 1.10
Bartuc's Spirit
Every 10th attack will release a burst of magic doing 2000 spell damage to units in a range of 300 around the target. 

Level Bonus:
+80 spell damage
Download

Toggle Triggers

On Attack

goldcost: 1000 ONATTACK_chance: 1.0 ONATTACK_chanceLevelAdd: 0.0
function onAttack takes Item itm returns nothing
    local Tower tower = itm.getCarrier()
set itm.userInt = itm.userInt +1
if itm.userInt == 10 then
call tower.doSpellDamageAoEUnit(Event.getTarget(),300,2000+(tower.getLevel()*80), tower.calcSpellCritNoBonus(),0.0)
call SFXAtUnit("Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl",Event.getTarget().getUnit())
set itm.userInt = 0
endif
endfunction

On Item Pickup

goldcost: 0
function onPickup  takes Item itm returns nothing
    set itm.userInt = 0
endfunction