home *** CD-ROM | disk | FTP | other *** search
- class Enemy_79 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_79()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 60;
- this.numSpeed = 1.5;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(5,20)});
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles_Large",values:Array(7,5)});
- this.arrEvents.push({name:"Explode Seekers",triggerValue:0,hit:false,custom:false,action:"EVENT_SeekersDie",values:0});
- this.guns.push({name:"gun_1",type:14,fireTimerMax:60,fireTimerMin:60,counter:60,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_2",type:14,fireTimerMax:60,fireTimerMin:60,counter:80,speed:0,size:100,damage:5});
- this.guns.push({name:"gun_3",type:13,fireTimerMax:5,fireTimerMin:5,counter:1,speed:7.5,size:100,damage:2});
- }
- }
-