Silver Armor v1
1410
lvl: 58

ID:

59

Author:

Boekie

Rarity:

rare

Status:

Approved

Description:

This shiny armor is made of silver.

Latest Upload Comment:

Restored from 1.10
Blindingly Polished Armor
This item shines so searingly that it grants [carrier's goldcost / 100]% bonus attack damage.
Specials:
+5% attackspeed
+10% damage
Download

Toggle Triggers

On Item Drop

goldcost: 0
function onDrop takes Item itm returns nothing
    local Tower tower = itm.getCarrier()

    call tower.modifyProperty(MOD_DAMAGE_ADD_PERC, -tower.getGoldcost() * 0.0001) 
endfunction

On Item Pickup

goldcost: 1000
function onPickup  takes Item itm returns nothing
    local Tower tower = itm.getCarrier()

    call tower.modifyProperty(MOD_DAMAGE_ADD_PERC, tower.getGoldcost() * 0.0001) 
endfunction