The Sucona v1 1788
lvl: 75
|
ID: 133
Author: cedi
Rarity: rare
Status: Approved
|
Specials:
+200% dmg to nature
|
Download
|
Secret Tome of Mana v1 1788
lvl: 75
|
ID: 239
Author: hokkei
Rarity: rare
Status: Approved
|
Description: This magical tome greatly increase one's capacity for mana, even if it quickly drains it.
Specials:
+200% mana -100% mana regen |
Download
|
Spear of the Malphai v1 1826
lvl: 77
|
ID: 258
Author: Khlox-NL-
Rarity: rare
Status: Approved
|
Description: This spear is known for its ability to strike an enemy repeatedly in a weak spot.
Specials:
+x0.2 crit damage (+x0.02/lvl) +1x multicrit |
Download
|
Lucky Dice v1 1867
lvl: 78
|
ID: 48
Author: Majildian
Rarity: rare
Status: Approved
|
Description: A bag of enchanted dice that increase the tower's chances.
Specials:
+2.5% crit chance (+0.2%/lvl) +2.5% spell crit chance (+0.2%/lvl) +5% item chance (+0.4%/lvl) +2.5% trigger chances (+0.2%/lvl) |
Download
|
Thunder Gloves v1 1924
lvl: 81
|
ID: 101
Author: cedi
Rarity: rare
Status: Approved
|
Description: Shocking, right?
Specials:
+20% attackspeed +x0.7 spell crit damage |
Download
|
Toy Boy v1 1970
lvl: 83
|
ID: 146
Author: cedi
Rarity: rare
Status: Approved
|
Description: Play with me, or I will kill you.
Specials:
+50% damage (+1%/lvl)
Play With Me!
Every 10 seconds the Toy Boy forces the tower to play with him, slowing attack speed of the tower by 50% for 2 seconds. |
Download
Toggle Triggers Header
goldcost: 0
globals
BuffType BT
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.5, 0.00 )
set BT = BuffType.create( 2.0, 0.00, false )
call BT.setBuffIcon( '@@0@@' )
call BT.setBuffModifier( m )
endfunction
Periodic
PERIODIC_period: 10.00
goldcost: -500
function periodic takes Item itm returns nothing
call BT.apply( itm.getCarrier(), itm.getCarrier(), 1 )
endfunction
|
Sleeve of Rage v1 2000
lvl: 60
|
ID: 42
Author: SirCoqaLot.
Rarity: unique
Status: Approved
|
Description: Magical powers slumber in this ring.
Ancient Rage
On attack this tower will enrage for 1.5 seconds gaining 0.5% increased attackspeed 1% attack damage and 0.25% spell damage. This effect stacks up to 120 times. |
Download
Toggle Triggers Header
goldcost: 0
globals
BuffType sir_sleeve_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,0.005)
call m.addModification(MOD_SPELL_DAMAGE_DEALT,0,0.0025)
call m.addModification(MOD_DAMAGE_ADD_PERC,0,0.01)
set sir_sleeve_buff = BuffType.create(0,0,true)
call sir_sleeve_buff.setBuffIcon('@@0@@')
call sir_sleeve_buff.setBuffModifier(m)
call sir_sleeve_buff.setStackingGroup("sir_sleeve_group")
endfunction
On Attack
goldcost: 2000
ONATTACK_chance: 1.0
ONATTACK_chanceLevelAdd: 0.0
function onAttack takes Item itm returns nothing
local Tower tower = itm.getCarrier()
local Buff b = tower.getBuffOfGroup("sir_sleeve_group")
local integer level = b.getLevel()
if level < 120 then
call sir_sleeve_buff.applyAdvanced(tower,tower,1+level,level,1.5)
else
call b.refreshDuration()
endif
endfunction
|
Description: