123456789101112131415161718192021222324 |
- /// <reference path="../../Bodypart.ts" />
- /// <reference path="../../Humanoid/Humanoid.ts" />
- /// <reference path="../SexStick.ts" />
- /// <reference path="../SexHole.ts" />
- /// <reference path="../../../Measure.ts" />
- /// <reference path="HumanoidExtremity.ts" />
- class HumanoidFeet extends HumanoidExtremity {
- public sorenessWeight = Bodypart.WEIGHT_LOW;
- public genderWeight = Bodypart.WEIGHT_LOW;
- public slots : Array<number> = [Humanoid.SLOT_FEET];
- public getDescription () {
- let say = new Say();
- if (this.genderValue > 55) {
- say.add("Your feet are small and cute.");
- } else if (this.genderValue < 45) {
- say.add("Your feet are big and mannish.")
- }
- if (this.nailsPainted) {
- say.add(" Your toenails are painted " + HumanoidExtremity.getColor(this.nailColor) + ".");
- }
- return say;
- }
- }
|