HumanoidHands.ts 911 B

123456789101112131415161718192021222324
  1. /// <reference path="../../Bodypart.ts" />
  2. /// <reference path="../../Humanoid/Humanoid.ts" />
  3. /// <reference path="../SexStick.ts" />
  4. /// <reference path="../SexHole.ts" />
  5. /// <reference path="../../../Measure.ts" />
  6. /// <reference path="HumanoidExtremity.ts" />
  7. class HumanoidHands extends HumanoidExtremity {
  8. public sorenessWeight = Bodypart.WEIGHT_LOW;
  9. public genderWeight = Bodypart.WEIGHT_MEDIUM;
  10. public slots : Array<number> = [Humanoid.SLOT_HANDS];
  11. public getDescription () {
  12. let say = new Say();
  13. if (this.genderValue > 55) {
  14. say.add("Your hands are delicate and slender.");
  15. } else if (this.genderValue < 45) {
  16. say.add("Your hands are rough and large.")
  17. }
  18. if (this.nailsPainted) {
  19. say.add(" Your toenails are painted " + HumanoidExtremity.getColor(this.nailColor) + ".");
  20. }
  21. return say;
  22. }
  23. }