home *** CD-ROM | disk | FTP | other *** search
- class Enemy_92 extends Enemy
- {
- var numLife;
- var numSpeed;
- var arrEvents;
- function Enemy_92()
- {
- super();
- }
- function ConfigureEnemy()
- {
- this.numLife = 5;
- this.numSpeed = 1;
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles_Ultra",values:Array(1,3)});
- this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(2,7)});
- this.arrEvents.push({name:"Enemy Hit",triggerValue:-1,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(1,0)});
- }
- }
-