home *** CD-ROM | disk | FTP | other *** search
- class Enemy_78 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- var guns;
- function Enemy_78()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 45;
- this.numSpeed = 2;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(35,8)});
- this.guns.push({name:"gun_1",type:13,fireTimerMax:0.5,fireTimerMin:0.5,counter:1,speed:8,size:250,damage:1});
- }
- }
-