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

Description:

Fills the air with pure sunlight weakening all enemies in its vicinity.

Latest Upload Comment:

Restored from 1.10
Specials:
Splash attack:
   50 AoE: 100% damage
   350 AoE: 40% damage
Sunshine
Reduces the armor of enemies in 800 range by 10 and increases the vulnerability to damage from Astral, Fire, Iron, and Nature towers by 10%. 

Level Bonus:
+0.3 armor reduction
+0.3% vulnerability
Download

Toggle Triggers

Header

    globals
        //@export
        BuffType gexSunAura
    endglobals
    
    private function init takes nothing returns nothing
        local Modifier m = Modifier.create()
        set gexSunAura = BuffType.createAuraEffectType(false)
        call m.addModification(MOD_DMG_FROM_ASTRAL,0.0,0.001)
        call m.addModification(MOD_DMG_FROM_NATURE,0.0,0.001)
        call m.addModification(MOD_DMG_FROM_FIRE,0.0,0.001)
        call m.addModification(MOD_DMG_FROM_IRON,0.0,0.001)
        call m.addModification(MOD_ARMOR,0.0,-0.1)
        call gexSunAura.setBuffModifier(m)
        call gexSunAura.setBuffIcon('@@0@@')
    endfunction

Tower Aura

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