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