Skip to content
Snippets Groups Projects
Commit b3db8ad9 authored by Transhumanist01's avatar Transhumanist01
Browse files

Update nurseryWidgets.js

parent fbf604e9
No related branches found
No related tags found
1 merge request!6845advanced genetic quirks
...@@ -14790,6 +14790,9 @@ App.Facilities.Nursery.infantToChild = function infantToChild(child) { ...@@ -14790,6 +14790,9 @@ App.Facilities.Nursery.infantToChild = function infantToChild(child) {
wLoss: 0, wLoss: 0,
wellHung: 0 wellHung: 0
}, },
child.advancedGeneticModifications = {
uterineHypersensitivity: 0
},
child.genetics = {}, child.genetics = {},
child.hLength = jsRandom(30, 70), child.hLength = jsRandom(30, 70),
child.hStyle = "long", child.hStyle = "long",
...@@ -15731,6 +15734,10 @@ App.Facilities.Nursery.InfantState = class InfantState { ...@@ -15731,6 +15734,10 @@ App.Facilities.Nursery.InfantState = class InfantState {
/** child can only ever birth girls */ /** child can only ever birth girls */
girlsOnly: 0 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 */ /** how many weeks until the child is ready for release */
this.growTime = 156; this.growTime = 156;
} }
...@@ -17304,6 +17311,10 @@ App.Facilities.Nursery.ChildState = class ChildState { ...@@ -17304,6 +17311,10 @@ App.Facilities.Nursery.ChildState = class ChildState {
/** Slave can only ever birth girls */ /** Slave can only ever birth girls */
girlsOnly: 0 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 */ /** Counts various acts slave participated in */
this.counter = new App.Entity.ChildActionsCountersState(); this.counter = new App.Entity.ChildActionsCountersState();
/** Values provided by players */ /** Values provided by players */
......
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