home *** CD-ROM | disk | FTP | other *** search
- class Enemy_90 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_90()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 125;
- this.numSpeed = 0.25;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(15,20)});
- this.arrEvents.push({name:"Explode Seekers",triggerValue:0,hit:false,custom:false,action:"EVENT_SeekersDie",values:0});
- this.guns.push({name:"gun_1",type:15,fireTimerMax:0,fireTimerMin:0,counter:0,speed:0,size:100,damage:0});
- this.guns.push({name:"gun_2",type:11,fireTimerMax:60,fireTimerMin:60,counter:30,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_3",type:11,fireTimerMax:80,fireTimerMin:80,counter:40,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_4",type:11,fireTimerMax:90,fireTimerMin:90,counter:50,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_5",type:11,fireTimerMax:100,fireTimerMin:100,counter:60,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_6",type:11,fireTimerMax:110,fireTimerMin:110,counter:70,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_7",type:11,fireTimerMax:120,fireTimerMin:120,counter:80,speed:0,size:100,damage:5});
- }
- }
-