home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / kung_fu.swf / scripts / __Packages / com / KidFighting / characters / Coolie.as < prev    next >
Encoding:
Text File  |  2006-06-13  |  707 b   |  29 lines

  1. class com.KidFighting.characters.Coolie extends com.KidFighting.objects.CCharacter
  2. {
  3.    var uniqueId;
  4.    var name;
  5.    var maxHP;
  6.    var crtHP;
  7.    var jump;
  8.    var speed;
  9.    var strength;
  10.    var winLable;
  11.    function Coolie()
  12.    {
  13.       super();
  14.       this.uniqueId = 6;
  15.       this.name = "Coolie";
  16.       this.maxHP = this.crtHP = 100;
  17.       this.jump = 75;
  18.       this.speed = 8;
  19.       this.strength = 6;
  20.       this.winLable = 12;
  21.       var _loc3_ = new com.KidFighting.skills.SklCoolieKick();
  22.       _loc3_.lable = this.lbS1;
  23.       this.addSkill(_loc3_);
  24.       _loc3_ = new com.KidFighting.skills.SklThrow();
  25.       _loc3_.lable = this.lbCatch;
  26.       this.addSkill(_loc3_);
  27.    }
  28. }
  29.