Mossy Acid Sprayer v1
40
ID:
161
Family ID:
Author:
cedi
Rarity:
common
Element:
iron
Attack Type:
Decay
Attack Range:
800
Attack CD:
1
Damage:
11-31
Status:
Approved

Description:

Careful, corrosive.
Specials:
Bounce attack:
   3 targets
   -15% damage per bounce
Acid Coating
Decreases the armor of damaged units by 0.6 for 3 seconds.

Level Bonus:
+0.024 armor reduction
+0.12 seconds
Download

Toggle Triggers

Header

    globals
        //@export
        BuffType cedi_acidarmor
    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_ARMOR, 0.0, -0.001 )
        set cedi_acidarmor = BuffType.create( 3.0, 0.12, false )
        call cedi_acidarmor.setBuffIcon( '@@0@@' )
        call cedi_acidarmor.setBuffModifier( m )
    endfunction

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    call cedi_acidarmor.applyCustomTimed( tower, Event.getTarget(), 600 + tower.getLevel() * 24, 3.0 + 0.12 * tower.getLevel() )
endfunction
Toxic Mossy Acid Sprayer v1
160
ID:
162
Family ID:
Author:
cedi
Rarity:
common
Element:
iron
Attack Type:
Decay
Attack Range:
800
Attack CD:
1
Damage:
70-90
Status:
Approved

Description:

Careful, corrosive.
Specials:
Bounce attack:
   3 targets
   -15% damage per bounce
Acid Coating
Decreases the armor of damaged units by 1.2 for 3 seconds.

Level Bonus:
+0.048 armor reduction
+0.12 seconds
Download

Toggle Triggers

Header

    globals
        //@import
        BuffType cedi_acidarmor
    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
    endfunction

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    call cedi_acidarmor.applyCustomTimed( tower, Event.getTarget(), 1200 + tower.getLevel() * 48, 3.0 + 0.12 * tower.getLevel() )
endfunction
Toxic Acid Factory v1
480
ID:
163
Family ID:
Author:
cedi
Rarity:
common
Element:
iron
Attack Type:
Decay
Attack Range:
800
Attack CD:
1
Damage:
223-243
Status:
Approved

Description:

Careful, corrosive.
Specials:
Bounce attack:
   3 targets
   -15% damage per bounce
Acid Coating
Decreases the armor of damaged units by 2.4 for 3 seconds.

Level Bonus:
+0.096 armor reduction
+0.12 seconds
Download

Toggle Triggers

Header

    globals
        //@import
        BuffType cedi_acidarmor
    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
    endfunction

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    call cedi_acidarmor.applyCustomTimed( tower, Event.getTarget(), 2400 + tower.getLevel() * 96, 3.0 + 0.12 * tower.getLevel() )
endfunction
Mutating Acid Factory v1
1000
ID:
164
Family ID:
Author:
cedi
Rarity:
common
Element:
iron
Attack Type:
Decay
Attack Range:
800
Attack CD:
1
Damage:
452-472
Status:
Approved

Description:

Careful, corrosive.
Specials:
Bounce attack:
   3 targets
   -15% damage per bounce
Acid Coating
Decreases the armor of damaged units by 4.8 for 3 seconds.

Level Bonus:
+0.192 armor reduction
+0.12 seconds
Download

Toggle Triggers

Header

    globals
        //@import
        BuffType cedi_acidarmor
    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
    endfunction

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    call cedi_acidarmor.applyCustomTimed( tower, Event.getTarget(), 4800 + tower.getLevel() * 192, 3.0 + 0.12 * tower.getLevel() )
endfunction
Infested Mutating Acid Factory v1
2000
ID:
337
Family ID:
Author:
cedi
Rarity:
common
Element:
iron
Attack Type:
Decay
Attack Range:
800
Attack CD:
1
Damage:
879-899
Status:
Approved

Description:

Careful, corrosive.
Specials:
Bounce attack:
   3 targets
   -15% damage per bounce
Acid Coating
Decreases the armor of damaged units by 9.6 for 3 seconds.

Level Bonus:
+0.384 armor reduction
+0.12 seconds
Download

Toggle Triggers

Header

    globals
        //@import
        BuffType cedi_acidarmor
    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
    endfunction

On Damage

ONDAMAGE_chance: 1.0 ONDAMAGE_chanceLevelAdd: 0.0
function onDamage takes Tower tower returns nothing
    call cedi_acidarmor.applyCustomTimed( tower, Event.getTarget(), 9600 + tower.getLevel() * 384, 3.0 + 0.12 * tower.getLevel() )
endfunction