diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index df28c9afdc8a7d2e7698301930d9eaa57193157b..b1e31d0224f19506de0487c7819f7a2e48aee7a5 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -30989,6 +30989,10 @@ window.GenerateNewSlave = (function(){ if (passage() == "Slave Markets" && V.slaveMarket == "corporate" && V.captureUpgradeRace != "unselected" && V.captureUpgradeRace != "none") { slave.race = V.captureUpgradeRace; } + slave.origRace = slave.race; + slave.origEye = slave.eyeColor; + slave.origHColor = slave.hColor; + slave.origSkin = slave.skin; }; function GenerateXXSlave() { @@ -31068,19 +31072,19 @@ window.GenerateNewSlave = (function(){ slave.height = Math.round(Height.random(slave)); if (slave.physicalAge <= 13) { if (slave.height > Height.mean(slave) * 170/172.5) { - slave.hips = jsEither(-2, -1, -1, 0, 1); - slave.shoulders = jsEither(-1, -1, 0, 0, 0, 1); + slave.hips = jsEither([-2, -1, -1, 0, 1]); + slave.shoulders = jsEither([-1, -1, 0, 0, 0, 1]); } else { - slave.hips = jsEither(-2, -2, -1, -1, 0); - slave.shoulders = jsEither(-2, -1, -1, 0, 0, 1); + slave.hips = jsEither([-2, -2, -1, -1, 0]); + slave.shoulders = jsEither([-2, -1, -1, 0, 0, 1]); } } else { if (slave.height > Height.mean(slave) * 170/172.5) { - slave.hips = jsEither(-2, -1, -1, 0, 1); - slave.shoulders = jsEither(-1, 0, 1, 1, 2, 2); + slave.hips = jsEither([-2, -1, -1, 0, 1]); + slave.shoulders = jsEither([-1, 0, 1, 1, 2, 2]); } else { - slave.hips = jsEither(-2, -2, -1, -1, 0); - slave.shoulders = jsEither(-1, 0, 0, 1, 1, 2); + slave.hips = jsEither([-2, -2, -1, -1, 0]); + slave.shoulders = jsEither([-1, 0, 0, 1, 1, 2]); } } if (slave.physicalAge < 13) { diff --git a/src/js/generateNewSlaveJS.tw b/src/js/generateNewSlaveJS.tw index 056ca833fe772f0b7752984e005d090cfc8f99cf..b26003b486320467dfc3c988a5482553112b8c50 100644 --- a/src/js/generateNewSlaveJS.tw +++ b/src/js/generateNewSlaveJS.tw @@ -64,6 +64,10 @@ window.GenerateNewSlave = (function(){ if (passage() == "Slave Markets" && V.slaveMarket == "corporate" && V.captureUpgradeRace != "unselected" && V.captureUpgradeRace != "none") { slave.race = V.captureUpgradeRace; } + slave.origRace = slave.race; + slave.origEye = slave.eyeColor; + slave.origHColor = slave.hColor; + slave.origSkin = slave.skin; }; function GenerateXXSlave() { @@ -143,19 +147,19 @@ window.GenerateNewSlave = (function(){ slave.height = Math.round(Height.random(slave)); if (slave.physicalAge <= 13) { if (slave.height > Height.mean(slave) * 170/172.5) { - slave.hips = jsEither(-2, -1, -1, 0, 1); - slave.shoulders = jsEither(-1, -1, 0, 0, 0, 1); + slave.hips = jsEither([-2, -1, -1, 0, 1]); + slave.shoulders = jsEither([-1, -1, 0, 0, 0, 1]); } else { - slave.hips = jsEither(-2, -2, -1, -1, 0); - slave.shoulders = jsEither(-2, -1, -1, 0, 0, 1); + slave.hips = jsEither([-2, -2, -1, -1, 0]); + slave.shoulders = jsEither([-2, -1, -1, 0, 0, 1]); } } else { if (slave.height > Height.mean(slave) * 170/172.5) { - slave.hips = jsEither(-2, -1, -1, 0, 1); - slave.shoulders = jsEither(-1, 0, 1, 1, 2, 2); + slave.hips = jsEither([-2, -1, -1, 0, 1]); + slave.shoulders = jsEither([-1, 0, 1, 1, 2, 2]); } else { - slave.hips = jsEither(-2, -2, -1, -1, 0); - slave.shoulders = jsEither(-1, 0, 0, 1, 1, 2); + slave.hips = jsEither([-2, -2, -1, -1, 0]); + slave.shoulders = jsEither([-1, 0, 0, 1, 1, 2]); } } if (slave.physicalAge < 13) { diff --git a/src/pregmod/incubatorReport.tw b/src/pregmod/incubatorReport.tw index 1bc64ade9cf4c0f95ce3ce9706b9532218bf255c..186822b6a4d4d12e04c6998ae73237ace7cbbe7a 100644 --- a/src/pregmod/incubatorReport.tw +++ b/src/pregmod/incubatorReport.tw @@ -140,7 +140,7 @@ <<if $incubatorUpgradeGrowthStims == 1 && $incubatorGrowthStimsSetting != 0>> <br> - <<set _heightLimit = Math.trunc(Math.clamp((Height.mean($tanks[_inc].height) * 1.25),0,274))>> + <<set _heightLimit = Math.trunc(Math.clamp((Height.mean($tanks[_inc]) * 1.25),0,274))>> <<set _heightLimitAge = Height.forAge($tanks[_inc].height, $tanks[_inc])>> <<if $tanks[_inc].inducedNCS == 1>> /*