![]() Bomb Shells v1 452
![]() lvl: 32
|
ID: 33
Author: Neotopia
Rarity: common
Status: Approved
|
![]() +50% dmg to masses +5% attackspeed |
Download
|
![]() Orc War Spear v1 486
![]() lvl: 34
|
ID: 21
Author: Boekie
Rarity: common
Status: Approved
|
Description: This spear is used by barbaric orc warriors. ![]() +15% damage +x0.2 crit damage |
Download
|
![]() Glowing Gauntlets v1 486
![]() lvl: 25
|
ID: 196
Author: Majildian
Rarity: uncommon
Status: Approved
|
Description: These gauntlets produce a purple glow that increases the speed of the wearer. ![]()
+12% attackspeed
|
Download
|
![]() Elegant Ring v1 495
![]() lvl: 35
|
ID: 234
Author: ShyGnome
Rarity: common
Status: Approved
|
Description: Beautifully crafted and encrusted with pretty jewels. ![]() +4% item chance +4% item quality +10% trigger chances |
Download
|
![]() Jungle Stalker's Doll v1 500
![]() lvl: 12
|
ID: 149
Author: poussix
Rarity: unique
Status: Approved
|
Description: This doll is empowered with voodoo spells, be careful! ![]() +2.5% crit chance (+0.1%/lvl) ![]() When the carrier kills a unit it becomes enraged for 3 seconds. While enraged, it has 20% bonus attackspeed. Cannot retrigger while active! Level Bonus: +0.4% attackspeed |
Download
Toggle Triggers Header
goldcost: 0
globals
BuffType poussix_rageitem_buff
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()
call m.addModification(MOD_ATTACKSPEED,0.20,0.004)
set poussix_rageitem_buff = BuffType.create(0.0,0.0,true) //0.0 time since I will apply it custom timed
call poussix_rageitem_buff.setBuffModifier(m)
call poussix_rageitem_buff.setBuffIcon('@@0@@')
call poussix_rageitem_buff.setStackingGroup("poussix_rageitem")
endfunction
On Kill
goldcost: 239
function onKill takes Item itm returns nothing
local Tower tower = itm.getCarrier()
if tower.getBuffOfGroup("poussix_rageitem") == 0 then
call SFXAtUnit("Abilities\\Spells\\Other\\Stampede\\StampedeMissileDeath.mdl",Event.getTarget().getUnit())
call poussix_rageitem_buff.applyCustomTimed(tower,tower,tower.getLevel(),3.0)
endif
endfunction
|
![]() Bones of Essence v1 500
![]() lvl: 26
|
ID: 194
Author: cedi
Rarity: uncommon
Status: Approved
|
Description: Used to increase the damage against sif armor. ![]() Increases the damage against creeps with the armor type sif by 25%.
|
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 1.0
goldcost: 500
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_SIF then
set Event.damage = Event.damage * 1.25
call SFXOnUnit( "Abilities\\Weapons\\BansheeMissile\\BansheeMissile.mdl", T.getUnit(), "chest" )
endif
endfunction
|
![]() Book of Knowledge v1 500
![]() lvl: 18
|
ID: 222
Author: Boekie
Rarity: rare
Status: Approved
|
Description: Grants the tower bonus experience. ![]() The carrier gains 0.2 experience every time its attack hits its main target. The amount of experience gained is range and base attackspeed adjusted.
|
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 1.0
goldcost: 500
ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
local Tower tower = itm.getCarrier()
local real cd = tower.getBaseAttackspeed()
local real range = tower.getRange()
if Event.isMainTarget() then
call tower.addExp(0.2*cd*(800.0/range))
endif
endfunction
|
Description: