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