Scroll of Myths v1
293
lvl: 19
ID:
29
Author:
Boekie
Rarity:
common
Status:
Approved

Description:

This mythical item is created by a nightelf wizard.
Specials:
+30% mana regen
Download
Hand of Ruin v1
293
lvl: 14
ID:
34
Author:
drol
Rarity:
uncommon
Status:
Approved

Description:

Once the hand of an evil and powerful wizard, this hand only has a fraction of the power it once could cast.
Specials:
+20% dmg to nature
+20% dmg to orcs
+20% dmg to humanoids
Download
Axe of Decapitation v1
293
lvl: 14
ID:
74
Author:
cedi
Rarity:
uncommon
Status:
Approved

Description:

Invented by humans to kill humans.
Specials:
-10% dmg to undead
-10% dmg to magical
-10% dmg to nature
-10% dmg to orcs
+100% dmg to humanoids
Download
Dumpster v1
293
lvl: 14
ID:
128
Author:
Monolith
Rarity:
uncommon
Status:
Approved

Description:

You can find a lot of useless stuff inside a Dumpster.
Specials:
+30% item chance (+1%/lvl)
-40% item quality
Download
Scroll of Piercing Magic v1
300
lvl: 14
ID:
124
Author:
drol
Rarity:
uncommon
Status:
Approved

Description:

An ancient scroll which learns the reader how to destroy even the most fortified magic protections.
Piercing Magic
Deals an additional 25% damage as spell damage against creeps with Sif armor.
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 goldcost: 300 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
    local Creep t = Event.getTarget()
    if t.getArmorType() == ARMOR_SIF then
        call itm.getCarrier().doSpellDamage( t, Event.damage * 0.25, itm.getCarrier().calcSpellCritNoBonus() )
        call SFXOnUnit( "Abilities\\Spells\\Human\\Feedback\\SpellBreakerAttack.mdl", t.getUnit(), "origin" )
    endif
endfunction
Deep Shadows v1
300
lvl: 14
ID:
192
Author:
cedi
Rarity:
uncommon
Status:
Approved

Description:

Used to increase the damage against sol armor.
Deep Shadows
Increases the damage against creeps with the armor type sol by 25%.
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 goldcost: 300 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
    local Creep T = Event.getTarget()
    local Tower U = itm.getCarrier()
    if T.getArmorType() == ARMOR_SOL then
        set Event.damage = Event.damage * 1.25
        call SFXOnUnit( "Abilities\\Weapons\\AvengerMissile\\AvengerMissile.mdl", T.getUnit(), "chest" )
    endif
endfunction
Aqueous Vapor v1
300
lvl: 14
ID:
195
Author:
cedi
Rarity:
uncommon
Status:
Approved

Description:

Used to increase the damage against myt armor.
Aqueous Vapor
Increases the damage against creeps with the armor type myt by 25%.
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1.0 goldcost: 300 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
    local Creep T = Event.getTarget()
    local Tower U = itm.getCarrier()
    if T.getArmorType() == ARMOR_MYT then
        set Event.damage = Event.damage * 1.25
        call SFXOnUnit( "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveDamage.mdl", T.getUnit(), "chest" )
    endif
endfunction