home *** CD-ROM | disk | FTP | other *** search
- class Enemy_81 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_81()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 15;
- this.numSpeed = 2;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(15,5)});
- this.arrEvents.push({name:"Explode Seekers",triggerValue:0,hit:false,custom:false,action:"EVENT_SeekersDie",values:0});
- this.guns.push({name:"gun_1",type:16,fireTimerMax:80,fireTimerMin:60,counter:60,speed:0,size:100,damage:0});
- this.guns.push({name:"gun_2",type:16,fireTimerMax:80,fireTimerMin:60,counter:40,speed:0,size:100,damage:0});
- }
- }
-