From 4a309f10cab51cf30127666b71aea2ce4d52c824 Mon Sep 17 00:00:00 2001 From: Anu <8636-Anu@users.noreply.gitgud.io> Date: Mon, 7 Feb 2022 01:47:48 +0000 Subject: [PATCH] Add foreskin/scrotum growth to Expansion FS SMR --- src/npc/generate/lawCompliance.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/npc/generate/lawCompliance.js b/src/npc/generate/lawCompliance.js index 1177cec825c..b2b58ad028f 100644 --- a/src/npc/generate/lawCompliance.js +++ b/src/npc/generate/lawCompliance.js @@ -190,9 +190,15 @@ App.Desc.lawCompliance = function(slave, market = 0) { slave.lips = jsRandom(15, 55); if (slave.dick > 0) { slave.dick = jsRandom(4, 7); + if (slave.foreskin > 0) { + slave.foreskin = (slave.dick + either(-1, 0, 0)); + } } if (slave.balls > 0) { slave.balls = jsRandom(4, 7); + if (slave.scrotum > 0) { + slave.scrotum = (slave.balls + either(-1, 0, 0)); + } } return `${He} has been on powerful growth hormones for a long time, and has experienced growth in several areas as a result.`; } -- GitLab