Never-ending Keg v1
1177
lvl: 48
ID:
167
Author:
cedi
Rarity:
rare
Status:
Approved

Description:

Woot, you feel already drunk because you touched the keg?
Specials:
+x0.65 crit damage
+1x multicrit
Drunk!
On each attack this tower has a 10% chance to miss.
Download

Toggle Triggers

On Damage

ONDAMAGE_chance: 1 goldcost: -1000 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
    if GetRandomReal( 0, 100.0 ) <= 10.0 then
        call itm.getCarrier().getOwner().displaySmallFloatingText( "Miss", itm.getCarrier(), 255, 0, 0, 40.0 )
        set Event.damage = 0.00
    endif
endfunction
Minds Key v1
1225
lvl: 71
ID:
46
Author:
Neotopia
Rarity:
uncommon
Status:
Approved

Description:

Opens the Gates to ones mind, making it sharper and clearer.
Specials:
+2.5% spell crit chance (+0.1%/lvl)
+15% trigger chances (+0.6%/lvl)
Download
Dragon Claws v1
1244
lvl: 72
ID:
256
Author:
Boekie
Rarity:
uncommon
Status:
Approved

Description:

Increases the tower's crit chance and attack damage.
Specials:
+10% damage (+0.5%/lvl)
+5% crit chance (+0.1%/lvl)
Download
Spider Broach v1
1250
lvl: 72
ID:
182
Author:
drol
Rarity:
uncommon
Status:
Approved

Description:

This jewellery looks beautiful, the eyes of the spider are made from tiny emeralds.
Silver Threads
Attacks have a 15% attack speed adjusted chance to cover the target creep in a silvered web, increasing its item quality by 40% for 5 seconds.

Level Bonus:
+1% item quality
+0.1 seconds duration
Download

Toggle Triggers

Header

goldcost: 0
    globals
        BuffType drol_broach
    endglobals
    
    //Do not remove or rename this function!
    //Put your initialization tasks here, this function will be called on map init
    private function init takes nothing returns nothing
        local Modifier m = Modifier.create()
        
        set drol_broach = BuffType.create(5.0, 0.1, false)
        call m.addModification(MOD_ITEM_QUALITY_ON_DEATH, 0.4, 0.01)
        
        call drol_broach.setBuffModifier(m)
        call drol_broach.setBuffIcon('@@0@@')
    endfunction

On Damage

ONDAMAGE_chance: 1.0 goldcost: 1250 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
    local Tower tower = itm.getCarrier()

    if tower.calcChance(0.15 * tower.getBaseAttackspeed()) then
        call drol_broach.apply(tower, Event.getTarget(), tower.getLevel())
    endif
endfunction
Dragon's Heart v1
1268
lvl: 74
ID:
4
Author:
Boekie
Rarity:
uncommon
Status:
Approved

Description:

This heart of an ancient dragon increases crit chance and damage.
Specials:
+10% crit chance
+x0.075 crit damage
Download
Essence of Rot v1
1300
lvl: 53
ID:
174
Author:
Majildian
Rarity:
rare
Status:
Approved

Description:

An undefinable object that leaches the livelihood of any nearby creature.
Putrescent Presence - Aura
Decreases the attack speed of towers in 350 range by 20% and increases the attack and spell damage taken by creeps in 800 range by 20%.

Level Bonus:
+0.4% damage taken
+0.2% attack speed
Download

Toggle Triggers

Header

goldcost: 0
    globals
    BuffType MajRotTowerBuff
    BuffType MajRotCreepBuff
    endglobals
    
    //Do not remove or rename this function!
    //Put your initialization tasks here, this function will be called on map init
    private function init takes nothing returns nothing
    local Modifier m = Modifier.create()
    set MajRotTowerBuff = BuffType.createAuraEffectType(false)
    set MajRotCreepBuff = BuffType.createAuraEffectType(true)
    call MajRotTowerBuff.setBuffIcon('@@0@@')
    call MajRotCreepBuff.setBuffIcon('@@1@@')
    call m.addModification(MOD_ATTACKSPEED, -0.2, 0.002)
    call MajRotTowerBuff.setBuffModifier(m)
    set m = Modifier.create()
    call m.addModification(MOD_ATK_DAMAGE_RECEIVED, 0.2, 0.004)
    call m.addModification(MOD_SPELL_DAMAGE_RECEIVED, 0.2, 0.004)
    call MajRotCreepBuff.setBuffModifier(m)
    endfunction

Tower Aura

AURA_levelAdd: 1 AURA_targetType: TARGET_TYPE_TOWERS AURA_auraRange: 350 AURA_powerAdd: 1 AURA_targetSelf: true goldcost: 1300 AURA_auraEffect: MajRotTowerBuff AURA_power: 0 AURA_level: 0

Tower Aura

AURA_levelAdd: 1 AURA_targetType: TARGET_TYPE_CREEPS AURA_auraRange: 800 AURA_powerAdd: 1 AURA_targetSelf: false goldcost: 0 AURA_auraEffect: MajRotCreepBuff AURA_power: 0 AURA_level: 0
Warsong Double Bass v1
1325
lvl: 38
ID:
58
Author:
Neotopia
Rarity:
unique
Status:
Approved

Description:

Commonly used for Elite Tauren Bands, the Bass drum increases attackspeed of nearby Towers.
Warsong Double Bass - Aura
The catchy Bass Line of the drums increases the attackspeed of towers in 200 range, by 7.5%.

Level Bonus:
+0.1% attack speed
Download

Toggle Triggers

Header

goldcost: 1200
    globals
    BuffType Neotopia_Drumspeed
    endglobals
    
    //Do not remove or rename this function!
    //Put your initialization tasks here, this function will be called on map init
    private function init takes nothing returns nothing
    local Modifier m = Modifier.create()
    set Neotopia_Drumspeed = BuffType.createAuraEffectType(true)
    call m.addModification(MOD_ATTACKSPEED,0.0,0.0001) 
    call Neotopia_Drumspeed.setBuffModifier(m) 
    call Neotopia_Drumspeed.setBuffIcon('@@0@@')  
    call Neotopia_Drumspeed.setStackingGroup("Neotopia_Drumspeed_Aura")
    endfunction

Tower Aura

AURA_levelAdd: 10 AURA_targetType: TARGET_TYPE_TOWERS AURA_auraRange: 200 AURA_powerAdd: 10 AURA_targetSelf: true goldcost: 125 AURA_auraEffect: Neotopia_Drumspeed AURA_power: 750 AURA_level: 750