home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / bubble_tanks_2.swf / scripts / __Packages / Enemy_R1.as < prev    next >
Encoding:
Text File  |  2008-09-02  |  503 b   |  18 lines

  1. class Enemy_R1 extends Enemy
  2. {
  3.    var numLife;
  4.    var numSpeed;
  5.    var arrEvents;
  6.    function Enemy_R1()
  7.    {
  8.       super();
  9.    }
  10.    function ConfigureEnemy()
  11.    {
  12.       this.numLife = 50;
  13.       this.numSpeed = 0.5;
  14.       this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles",values:Array(2,12)});
  15.       this.arrEvents.push({name:"Death Award",triggerValue:0,hit:false,custom:false,action:"EVENT_Bubbles_Large",values:Array(3,5)});
  16.    }
  17. }
  18.