HumanoidHead.ts 623 B

1234567891011
  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. class HumanoidHead extends Bodypart {
  7. public sorenessWeight = Bodypart.WEIGHT_MEDIUM;
  8. public genderWeight = Bodypart.WEIGHT_LOW;
  9. // TODO: make these slots as own bodyparts so that they can be handled better
  10. public slots : Array<number> = [Humanoid.SLOT_HEADGEAR, Humanoid.SLOT_HAIR, Humanoid.SLOT_EARS, Humanoid.SLOT_FACE, Humanoid.SLOT_EYES, , Humanoid.SLOT_NOSE, Humanoid.SLOT_MOUTH];
  11. }