home *** CD-ROM | disk | FTP | other *** search
- class Enemy_97 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_97()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 600;
- this.numSpeed = 0.25;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(10,20)});
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles_Large",values:Array(4,10)});
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles_Ultra",values:Array(4,5)});
- this.guns.push({name:"gun_1",type:18,fireTimerMax:2,fireTimerMin:2,counter:40,speed:8,size:200,damage:3});
- this.guns.push({name:"gun_2",type:7,fireTimerMax:120,fireTimerMin:80,counter:100,speed:6,size:100,damage:2});
- this.guns.push({name:"gun_3",type:7,fireTimerMax:120,fireTimerMin:80,counter:100,speed:6,size:100,damage:2});
- this.guns.push({name:"gun_4",type:14,fireTimerMax:60,fireTimerMin:60,counter:60,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_5",type:14,fireTimerMax:60,fireTimerMin:60,counter:80,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_6",type:20,fireTimerMax:400,fireTimerMin:600,counter:80,speed:6,size:100,damage:1});
- }
- }
-