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