Obsidian Figurine v1 240
lvl: 10
|
ID: 115
Author: drol
Rarity: uncommon
Status: Approved
|
Specials:
-17.5% debuff duration
|
Download
|
Support Column v1 244
lvl: 11
|
ID: 114
Author: drol
Rarity: uncommon
Status: Approved
|
Description: Used by miners to create tunnels to the treasures hidden deep.
Specials:
+5% item chance +7.5% item quality |
Download
|
Mur'gul Slave v1 247
lvl: 11
|
ID: 53
Author: Boekie
Rarity: uncommon
Status: Approved
|
Description: This tiny Mur'gul helps you in combat.
Specials:
+1% attackspeed (+0.1%/lvl) +3% damage (+0.2%/lvl) +0.5% crit chance (+0.05%/lvl) |
Download
|
Priest Figurine v1 250
lvl: 4
|
ID: 103
Author: Boekie
Rarity: unique
Status: Approved
|
Description: This small figurine shines bright on damaged creeps. They will grant more experience.
Enlighten
Whenever the carrier of this item damages a creep there is a 20% attackspeed adjusted chance that the damaged creep grants 5% more experience. This modification is permanent and it stacks. |
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 1.0
goldcost: 250
ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Item itm returns nothing
local Tower tower = itm.getCarrier()
local real speed = tower.getBaseAttackspeed()
if Event.isMainTarget() == true and tower.calcChance(0.2*speed) == true then
call Event.getTarget().modifyProperty(MOD_EXP_GRANTED, 0.05)
endif
endfunction
|
Medallion of Opulence v1 250
lvl: 7
|
ID: 122
Author: Chronos
Rarity: rare
Status: Approved
|
Description: This medallion allows its wearer to imbue his strikes with gold.
Greed Is Good
On attack there is a 20% attackspeed adjusted chance to deal 10% of your current gold as spelldamage to the target. |
Download
Toggle Triggers On Attack
goldcost: 250
ONATTACK_chance: 1.0
ONATTACK_chanceLevelAdd: 0.0
function onAttack takes Item itm returns nothing
local Tower tower = itm.getCarrier()
local real speed = tower.getBaseAttackspeed()
local real gold
if tower.calcChance(0.2 * speed) == true then
call tower.doSpellDamage(Event.getTarget(), GetPlayerState(tower.getOwner().getThePlayer(), PLAYER_STATE_RESOURCE_GOLD) * (0.10),tower.calcSpellCritNoBonus())
endif
endfunction
|
Writer's Knowledge v1 250
lvl: 7
|
ID: 152
Author: poussix
Rarity: rare
Status: Approved
|
Description: Sometimes words are stronger than weapons.
Specials:
-0.8% damage/lvl +40% exp gain (-0.8%/lvl)
Learn
Every 12 seconds the user of this item gains 1 experience. |
Download
Toggle Triggers Periodic
PERIODIC_period: 12
goldcost: 238
function periodic takes Item itm returns nothing
local Unit tower = itm.getCarrier()
call tower.addExp(1)
endfunction
|
Libram of Grace v1 250
lvl: 7
|
ID: 180
Author: drol
Rarity: rare
Status: Approved
|
Description: Carrying this around makes you at ease, gaining more experience from combat.
Grace - Aura
Increases the amount of experience towers in 150 range of the carrier gain by 10%. Level Bonus: +0.4% experience |
Download
Toggle Triggers Header
goldcost: 0
globals
BuffType drol_libram
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_EXP_RECEIVED, 0.1, 0.004)
set drol_libram = BuffType.createAuraEffectType(true)
call drol_libram.setBuffModifier(m)
call drol_libram.setBuffIcon('@@0@@')
endfunction
Tower Aura
AURA_levelAdd: 1
AURA_targetType: TARGET_TYPE_TOWERS
AURA_auraRange: 150.
AURA_powerAdd: 1
AURA_targetSelf: true
goldcost: 250
AURA_auraEffect: drol_libram
AURA_power: 0
AURA_level: 0
|
Description: