| 1 | if (live_call())  | 
    
| 2 | return global.live_result;  | 
    
| 3 | if (attack_delay > 0)  | 
    
| 4 | { | 
    
| 5 | attack_delay--;  | 
    
| 6 | exit;  | 
    
| 7 | }  | 
    
| 8 | image_xscale += 0.25;  | 
    
| 9 | image_yscale += 0.25;  | 
    
| 10 | if (image_xscale > 10)  | 
    
| 11 | { | 
    
| 12 | if (image_alpha > 0)  | 
    
| 13 | image_alpha -= 0.33;  | 
    
| 14 | else  | 
    
| 15 | instance_destroy();  | 
    
| 16 | }  |