Lunar Emitter v1
1300
ID:
296
Family ID:
Author:
geX
Rarity:
rare
Element:
darkness
Attack Type:
Elemental
Attack Range:
800
Attack CD:
1.4
Damage:
990-990
Abil. Factor:
0.66
Status:
Approved

Description:

Shines moonlight on the enemies in its vicinity weakening their resistances.

Latest Upload Comment:

Restored from 1.10
Specials:
Splash attack:
   50 AoE: 100% damage
   350 AoE: 40% damage
Moonlight
Reduces the spell resistance of enemies in 800 range by 15% and increases the vulnerability to damage from Astral, Darkness, Ice, and Storm towers by 10%. 

Level Bonus:
+0.45% spell resistance reduction
+0.3% vulnerability
Download

Toggle Triggers

Header

    globals
        //@export
        BuffType gexMoonAura
    endglobals
    
    private function init takes nothing returns nothing
        local Modifier m = Modifier.create()
        set gexMoonAura = BuffType.createAuraEffectType(false)
        call m.addModification(MOD_DMG_FROM_ASTRAL,0.0,0.001)
        call m.addModification(MOD_DMG_FROM_DARKNESS,0.0,0.001)
        call m.addModification(MOD_DMG_FROM_ICE,0.0,0.001)
        call m.addModification(MOD_DMG_FROM_STORM,0.0,0.001)
        call m.addModification(MOD_SPELL_DAMAGE_RECEIVED,0.0,0.0015)
        call gexMoonAura.setBuffModifier(m)
        call gexMoonAura.setBuffIcon('@@0@@')
    endfunction

Tower Aura

AURA_auraEffect: gexMoonAura AURA_power: 100 AURA_level: 100 AURA_auraRange: 800 AURA_targetType: TARGET_TYPE_CREEPS AURA_levelAdd: 3 AURA_powerAdd: 3 AURA_targetSelf: false