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