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.

Latest Upload Comment:

Restored from 1.10
Putrescent Presence
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