Skip to content
Snippets Groups Projects
Commit 2d1007b1 authored by Anu's avatar Anu
Browse files

Scale height by sex when generating related slaves

parent d4cb1e34
No related branches found
No related tags found
1 merge request!12341Scale height by sex when generating related slaves
...@@ -591,6 +591,9 @@ globalThis.generateRelatedSlave = (function() { ...@@ -591,6 +591,9 @@ globalThis.generateRelatedSlave = (function() {
slave.face = Math.clamp(slave.face + random(15, 25), -100, 100); slave.face = Math.clamp(slave.face + random(15, 25), -100, 100);
slave.boobs = either(200, 300, 400, 450, 500, 550, 600, 700); 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 // alter genitals
slave.dick = 0; slave.dick = 0;
slave.balls = 0; slave.balls = 0;
...@@ -651,6 +654,9 @@ globalThis.generateRelatedSlave = (function() { ...@@ -651,6 +654,9 @@ globalThis.generateRelatedSlave = (function() {
slave.face = Math.clamp(slave.face - random(15, 25), -100, 100); slave.face = Math.clamp(slave.face - random(15, 25), -100, 100);
slave.boobs = either(100, 200); 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 // alter genitals
slave.vagina = -1; slave.vagina = -1;
slave.clit = 0; slave.clit = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment