home *** CD-ROM | disk | FTP | other *** search
- class Enemy_88 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_88()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 100;
- this.numSpeed = 1;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(15,18)});
- this.guns.push({name:"gun_1",type:1,fireTimerMax:50,fireTimerMin:30,counter:60,speed:7,size:100,damage:1});
- this.guns.push({name:"gun_2",type:5,fireTimerMax:70,fireTimerMin:50,counter:60,speed:4.5,size:100,damage:2});
- }
- }
-