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