/// /// /// /// /// /// class HumanoidFeet extends HumanoidExtremity { public sorenessWeight = Bodypart.WEIGHT_LOW; public genderWeight = Bodypart.WEIGHT_LOW; public slots : Array = [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; } }