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