123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /// <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" />
- /// <reference path="../../Person/Attribute.ts" />
- class HumanoidHands extends HumanoidExtremity implements Weaponized {
- public sorenessWeight = Bodypart.WEIGHT_LOW;
- public genderWeight = Bodypart.WEIGHT_MEDIUM;
- public slots : Array<number> = [Humanoid.SLOT_HANDS];
- public getDescription () {
- let say = new Say();
- if (this.genderValue > 55) {
- say.add("Your hands are delicate and slender.");
- } else if (this.genderValue < 45) {
- say.add("Your hands are rough and large.")
- }
- if (this.nailsPainted) {
- say.add(" Your toenails are painted " + HumanoidExtremity.getColor(this.nailColor) + ".");
- }
- return say;
- }
- public getAttribute () {
- return Attributes.Strength;
- }
- public getAttributeDamageFactor () {
- return 0.5;
- }
- public getAttributeForceFactor () {
- return 0.75;
- }
- public getAccuracy () {
- return 0;
- }
- public getCost () {
- return 1;
- }
- }
|