home *** CD-ROM | disk | FTP | other *** search
- class Enemy_63 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_63()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 25;
- this.numSpeed = 0.5;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(22,12)});
- this.guns.push({name:"gun_1",type:9,fireTimerMax:90,fireTimerMin:80,counter:60,speed:3,size:100,damage:4});
- }
- }
-