Skip to content
Snippets Groups Projects

Scale height by sex when generating related slaves

Merged Anu requested to merge Anu/fc-pregmod:anu-fix into pregmod-master
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
@@ -591,6 +591,9 @@ globalThis.generateRelatedSlave = (function() {
slave.face = Math.clamp(slave.face + random(15, 25), -100, 100);
slave.boobs = either(200, 300, 400, 450, 500, 550, 600, 700);
// apply male/female average height ratio of 1:1.07 - actual height will be adjusted in ageFixup()
slave.natural.height = Math.round(slave.natural.height / 1.07);
// alter genitals
slave.dick = 0;
slave.balls = 0;
@@ -651,6 +654,9 @@ globalThis.generateRelatedSlave = (function() {
slave.face = Math.clamp(slave.face - random(15, 25), -100, 100);
slave.boobs = either(100, 200);
// apply male/female average height ratio of 1:1.07 - actual height will be adjusted in ageFixup()
slave.natural.height = Math.round(slave.natural.height * 1.07);
// alter genitals
slave.vagina = -1;
slave.clit = 0;
Loading