home *** CD-ROM | disk | FTP | other *** search
- class Enemy_65 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_65()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 75;
- this.numSpeed = 1;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(5,8)});
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles_Large",values:Array(2,8)});
- this.arrEvents.push({name:"Drop Gun 2",triggerValue:34,hit:false,custom:false,action:"EVENT_DropGun",values:"gun_2"});
- this.guns.push({name:"gun_1",type:12,fireTimerMax:120,fireTimerMin:80,counter:100,speed:7,size:100,damage:0});
- this.guns.push({name:"gun_2",type:13,fireTimerMax:5,fireTimerMin:5,counter:1,speed:7.5,size:100,damage:2});
- }
- }
-