From b3db8ad9aae0a6f1e685fb1d0a52308d26dcc50c Mon Sep 17 00:00:00 2001 From: Transhumanist01 <13112-Transhumanist01@users.noreply.gitgud.io> Date: Wed, 27 May 2020 08:09:16 -0700 Subject: [PATCH] Update nurseryWidgets.js --- src/facilities/nursery/nurseryWidgets.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/facilities/nursery/nurseryWidgets.js b/src/facilities/nursery/nurseryWidgets.js index 5b9b90fb6f4..54e3006274e 100644 --- a/src/facilities/nursery/nurseryWidgets.js +++ b/src/facilities/nursery/nurseryWidgets.js @@ -14790,6 +14790,9 @@ App.Facilities.Nursery.infantToChild = function infantToChild(child) { wLoss: 0, wellHung: 0 }, + child.advancedGeneticModifications = { + uterineHypersensitivity: 0 + }, child.genetics = {}, child.hLength = jsRandom(30, 70), child.hStyle = "long", @@ -15731,6 +15734,10 @@ App.Facilities.Nursery.InfantState = class InfantState { /** child can only ever birth girls */ girlsOnly: 0 }; + this.advancedGeneticModifications = { + /** Pleasurable pregnancy and orgasmic birth. Wider hips, looser and wetter vagina. High pregadaptation and low birth damage. */ + uterineHypersensitivity: 0 + }; /** how many weeks until the child is ready for release */ this.growTime = 156; } @@ -17304,6 +17311,10 @@ App.Facilities.Nursery.ChildState = class ChildState { /** Slave can only ever birth girls */ girlsOnly: 0 }; + this.advancedGeneticModifications = { + /** Pleasurable pregnancy and orgasmic birth. Wider hips, looser and wetter vagina. High pregadaptation and low birth damage. */ + uterineHypersensitivity: 0 + }; /** Counts various acts slave participated in */ this.counter = new App.Entity.ChildActionsCountersState(); /** Values provided by players */ -- GitLab