Frost Root v1 
                30
                     
             
                 | 
    
    
              ID:              150 
             Family ID:       
             Author:          drol 
             Rarity:          common 
             Element:         ice 
            
                 Attack Type:     Energy 
                 Attack Range:    750 
                 Attack CD:       0.75 
                 Damage:  17-21 
            
            
             Status:          Approved 
     | 
    
    
    
             
                            Frozen Thorn
                        Has a 15% chance to deal 25 additional spell damage each time it deals damage. Level Bonus: +1 spell damage  | 
    
    
    
            Download
            
            
            
            
             Toggle Triggers On Damage 
                            
                                ONDAMAGE_chance: 1.0
                            
                                ONDAMAGE_chanceLevelAdd: 0.0
                            
                             
                        
                        
                            function onDamage takes Tower tower returns nothing
    if Event.isMainTarget() and tower.calcChance(0.15) and not Event.getTarget().isImmune() then
        call SFXAtUnit("Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", Event.getTarget().getUnit())
        call tower.doSpellDamage(Event.getTarget(), 25 + tower.getLevel(), tower.calcSpellCritNoBonus())
    endif
endfunction
                        
                     | 
            
             
                Ice Weed v1 
                100
                     
             
                 | 
    
    
              ID:              151 
             Family ID:       
             Author:          drol 
             Rarity:          common 
             Element:         ice 
            
                 Attack Type:     Energy 
                 Attack Range:    750 
                 Attack CD:       0.75 
                 Damage:  48-67 
            
            
             Status:          Approved 
     | 
    
    
    
             Description: Can still grow even in the coldest places.  
                            Frozen Thorn
                        Has a 15% chance to deal 125 additional spell damage each time it deals damage. Level Bonus: +5 spell damage  | 
    
    
    
            Download
            
            
            
            
             Toggle Triggers On Damage 
                            
                                ONDAMAGE_chance: 1.0
                            
                                ONDAMAGE_chanceLevelAdd: 0.0
                            
                             
                        
                        
                            function onDamage takes Tower tower returns nothing
    if Event.isMainTarget() and tower.calcChance(0.15) and not Event.getTarget().isImmune() then
        call SFXAtUnit("Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", Event.getTarget().getUnit())
        call tower.doSpellDamage(Event.getTarget(), 125 + 5 * tower.getLevel(), tower.calcSpellCritNoBonus())
    endif
endfunction
                        
                     | 
            
             
                Frozen Vines v1 
                300
                     
             
                 | 
    
    
              ID:              152 
             Family ID:       
             Author:          drol 
             Rarity:          common 
             Element:         ice 
            
                 Attack Type:     Energy 
                 Attack Range:    750 
                 Attack CD:       0.75 
                 Damage:  146-195 
            
            
             Status:          Approved 
     | 
    
    
    
             Description: Can still grow even in the coldest places.  
                            Frozen Thorn
                        Has a 15% chance to deal 375 additional spell damage each time it deals damage. Level Bonus: +15 spell damage  | 
    
    
    
            Download
            
            
            
            
             Toggle Triggers On Damage 
                            
                                ONDAMAGE_chance: 1.0
                            
                                ONDAMAGE_chanceLevelAdd: 0.0
                            
                             
                        
                        
                            function onDamage takes Tower tower returns nothing
    if Event.isMainTarget() and tower.calcChance(0.15) and not Event.getTarget().isImmune() then
        call SFXAtUnit("Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", Event.getTarget().getUnit())
        call tower.doSpellDamage(Event.getTarget(), 375 + 15 * tower.getLevel(), tower.calcSpellCritNoBonus())
    endif
endfunction
                        
                     | 
            
             
                Crystalized Tendrils v1 
                600
                     
             
                 | 
    
    
              ID:              153 
             Family ID:       
             Author:          drol 
             Rarity:          common 
             Element:         ice 
            
                 Attack Type:     Energy 
                 Attack Range:    750 
                 Attack CD:       0.75 
                 Damage:  291-390 
            
            
             Status:          Approved 
     | 
    
    
    
             Description: Can still grow even in the coldest places.  
                            Frozen Thorn
                        Has a 15% chance to deal 750 additional spell damage each time it deals damage. Level Bonus: +30 spell damage  | 
    
    
    
            Download
            
            
            
            
             Toggle Triggers On Damage 
                            
                                ONDAMAGE_chance: 1.0
                            
                                ONDAMAGE_chanceLevelAdd: 0.0
                            
                             
                        
                        
                            function onDamage takes Tower tower returns nothing
    if Event.isMainTarget() and tower.calcChance(0.15) and not Event.getTarget().isImmune() then
        call SFXAtUnit("Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", Event.getTarget().getUnit())
        call tower.doSpellDamage(Event.getTarget(), 750 + 30 * tower.getLevel(), tower.calcSpellCritNoBonus())
    endif
endfunction
                        
                     | 
            
             
                Glacial Creeper v1 
                1200
                     
             
                 | 
    
    
              ID:              154 
             Family ID:       
             Author:          drol 
             Rarity:          common 
             Element:         ice 
            
                 Attack Type:     Energy 
                 Attack Range:    750 
                 Attack CD:       0.75 
                 Damage:  592-766 
            
            
             Status:          Approved 
     | 
    
    
    
             Description: Can still grow even in the coldest places.  
                            Frozen Thorn
                        Has a 15% chance to deal 1500 additional spell damage each time it deals damage. Level Bonus: +60 spell damage  | 
    
    
    
            Download
            
            
            
            
             Toggle Triggers On Damage 
                            
                                ONDAMAGE_chance: 1.0
                            
                                ONDAMAGE_chanceLevelAdd: 0.0
                            
                             
                        
                        
                            function onDamage takes Tower tower returns nothing
    if Event.isMainTarget() and tower.calcChance(0.15) and not Event.getTarget().isImmune() then
        call SFXAtUnit("Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", Event.getTarget().getUnit())
        call tower.doSpellDamage(Event.getTarget(), 1500 + 60 * tower.getLevel(), tower.calcSpellCritNoBonus())
    endif
endfunction
                        
                     | 
            
             
                Polar Ivy v1 
                2000
                     
             
                 | 
    
    
              ID:              155 
             Family ID:       
             Author:          drol 
             Rarity:          common 
             Element:         ice 
            
                 Attack Type:     Energy 
                 Attack Range:    750 
                 Attack CD:       0.75 
                 Damage:  1020-1244 
            
            
             Status:          Approved 
     | 
    
    
    
             Description: Can still grow even in the coldest places.  
                            Frozen Thorn
                        Has a 15% chance to deal 2500 additional spell damage each time it deals damage. Level Bonus: +100 spell damage  | 
    
    
    
            Download
            
            
            
            
             Toggle Triggers On Damage 
                            
                                ONDAMAGE_chance: 1.0
                            
                                ONDAMAGE_chanceLevelAdd: 0.0
                            
                             
                        
                        
                            function onDamage takes Tower tower returns nothing
    if Event.isMainTarget() and tower.calcChance(0.15) and not Event.getTarget().isImmune() then
        call SFXAtUnit("Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", Event.getTarget().getUnit())
        call tower.doSpellDamage(Event.getTarget(), 2500 + 100 * tower.getLevel(), tower.calcSpellCritNoBonus())
    endif
endfunction
                        
                     | 
Description: