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