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