home *** CD-ROM | disk | FTP | other *** search
- class com.KidFighting.characters.Landlord extends com.KidFighting.objects.CCharacter
- {
- var uniqueId;
- var name;
- var maxHP;
- var crtHP;
- var jump;
- var speed;
- var strength;
- var winLable;
- function Landlord()
- {
- super();
- this.uniqueId = 9;
- this.name = "Landlord";
- this.maxHP = this.crtHP = 100;
- this.jump = 80;
- this.speed = 8;
- this.strength = 10;
- this.winLable = 15;
- var _loc3_ = new com.KidFighting.skills.SklWave();
- _loc3_.lable = this.lbS1;
- this.addSkill(_loc3_);
- _loc3_ = new com.KidFighting.skills.SklThrow();
- _loc3_.lable = this.lbCatch;
- this.addSkill(_loc3_);
- }
- }
-