home *** CD-ROM | disk | FTP | other *** search
- class Enemy_74 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_74()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 25;
- this.numSpeed = 1;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(15,10)});
- this.guns.push({name:"gun_1",type:10,fireTimerMax:57,fireTimerMin:57,counter:57,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_2",type:10,fireTimerMax:57,fireTimerMin:57,counter:57,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_3",type:10,fireTimerMax:57,fireTimerMin:57,counter:57,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_4",type:10,fireTimerMax:57,fireTimerMin:57,counter:57,speed:0,size:100,damage:5});
- }
- }
-