home *** CD-ROM | disk | FTP | other *** search
- class Enemy_44 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_44()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 50;
- this.numSpeed = 0.5;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(20,12)});
- this.guns.push({name:"gun_1",type:8,fireTimerMax:150,fireTimerMin:100,counter:60,speed:4,size:100,damage:4});
- this.arrEvents.push({name:"Drop Gun 1",triggerValue:1,hit:false,custom:false,action:"EVENT_DropGun",values:"gun_1"});
- }
- }
-