home *** CD-ROM | disk | FTP | other *** search
- class Enemy_13 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_13()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 40;
- this.numSpeed = 3;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(4,8)});
- this.guns.push({name:"gun_1",type:1,fireTimerMax:80,fireTimerMin:40,counter:60,speed:6,size:100,damage:4});
- this.guns.push({name:"gun_2",type:4,fireTimerMax:20,fireTimerMin:20,counter:0,speed:3,size:45,damage:1});
- }
- }
-