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