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