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

  1. class com.KidFighting.characters.Landlord 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 Landlord()
  12.    {
  13.       super();
  14.       this.uniqueId = 9;
  15.       this.name = "Landlord";
  16.       this.maxHP = this.crtHP = 100;
  17.       this.jump = 80;
  18.       this.speed = 8;
  19.       this.strength = 10;
  20.       this.winLable = 15;
  21.       var _loc3_ = new com.KidFighting.skills.SklWave();
  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.