home *** CD-ROM | disk | FTP | other *** search
- class Enemy_87 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_87()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 20;
- this.numSpeed = 3;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(2,15)});
- this.guns.push({name:"gun_2",type:4,fireTimerMax:20,fireTimerMin:20,counter:0,speed:3,size:45,damage:1});
- }
- }
-