diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index beb03d91403c14293ee5f694463b1bac9ebba28f..e087e17aca766a155fc6aac5053c8f15fe44b8c8 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -586,7 +586,6 @@ App.Data.resetOnNGPlus = { // Incubator Subsection incubator: 0, - incubatorSlaves: 0, incubatorBulkRelease: 0, incubatorOrgans: [], incubatorOldID: 0, diff --git a/src/facilities/incubator/incubator.css b/src/facilities/incubator/incubator.css new file mode 100644 index 0000000000000000000000000000000000000000..6099fd74697e4f6ab1b0dd4d617088f7f572a939 --- /dev/null +++ b/src/facilities/incubator/incubator.css @@ -0,0 +1,10 @@ +.incubator-underscore { + border-bottom: 1px solid; +} + +.incubator-tank { + border-bottom: 2px solid cyan; + border-top: 2px solid cyan; + border-radius: 15px; + padding: 0.5em; +} diff --git a/src/facilities/incubator/incubator.tw b/src/facilities/incubator/incubator.tw new file mode 100644 index 0000000000000000000000000000000000000000..5c699aa7bde10c6d2cb9d29dbb745fea5f56c909 --- /dev/null +++ b/src/facilities/incubator/incubator.tw @@ -0,0 +1,3 @@ +:: Incubator [nobr jump-to-safe jump-from-safe] + +<<includeDOM App.UI.incubator()>> \ No newline at end of file diff --git a/src/facilities/incubator/incubatorInteract.js b/src/facilities/incubator/incubatorInteract.js new file mode 100644 index 0000000000000000000000000000000000000000..2d9d7604eebd70e15061b2385aad8990c234784f --- /dev/null +++ b/src/facilities/incubator/incubatorInteract.js @@ -0,0 +1,1764 @@ +App.UI.incubator = function() { + V.nextButton = "Back to Main"; + V.nextLink = "Main"; + V.returnTo = "Incubator"; + V.encyclopedia = "The Incubation Facility"; + V.readySlaves = 0; + V.readySlave = 0; + V.reservedChildren = FetusGlobalReserveCount("incubator"); + V.reservedChildrenNursery = FetusGlobalReserveCount("nursery"); + + let tankOrgans = {}; + const el = new DocumentFragment(); + const _SL = V.slaves.length; + let childrenReserved; + const _incubatorNameCaps = capFirstChar(V.incubatorName); + App.UI.tabBar.handlePreSelectedTab(V.tabChoice.Incubator); + + const tabCaptions = { + mothers: 'Mothers', + tanks: 'Tanks', + settings: 'Settings', + pc: 'You' + }; + + const introSpan = document.createElement("span"); + introSpan.append(makeSpanIded("content-intro", intro())); + el.append(introSpan); + + const tabBar = App.UI.DOM.appendNewElement("div", el, '', "tab-bar"); + tabBar.append(App.UI.tabBar.tabButton('mothers', tabCaptions.mothers)); + if (V.PC.pregKnown === 1 && (V.arcologies[0].FSRestart === "unset" || V.eugenicsFullControl === 1 || (V.PC.pregSource !== -1 && V.PC.pregSource !== -6))) { + tabBar.append(App.UI.tabBar.tabButton('pc', tabCaptions.pc)); + } + tabBar.append( + App.UI.tabBar.tabButtonDOM('tanks', tabCaptions.tanks), + App.UI.tabBar.tabButtonDOM('settings', tabCaptions.settings), + ); + + el.append(App.UI.tabBar.makeTab('mothers', makeSpanIded("content-mothers", mothers()))); + el.append(App.UI.tabBar.makeTab('pc', makeSpanIded("content-pc", PC()))); + el.append(App.UI.tabBar.makeTab('tanks', makeSpanIded("content-tankBabies", tankBabies()))); + el.append(App.UI.tabBar.makeTab('settings', makeSpanIded("content-tank-settings", tankSettings()))); + introSpan.after(release()); // run me late. + + return el; + + + function intro() { + const el = document.createElement("p"); + let r = []; + const incubatorSlaves = V.tanks.length; + const freeTanks = V.incubator - incubatorSlaves; + r.push(`${_incubatorNameCaps} is a clean, cold hall designed to be lined with tanks and their connected monitoring systems.`); + + if (incubatorSlaves > 2) { + r.push(`It's well used. The hum of active tanks fills the air.`); + } else if (incubatorSlaves > 0) { + r.push(`It's barely used; most of the tanks lie dormant.`); + } else { + r.push(`It's empty and quiet. `); + r.push( + choice( + "Decommission the incubator", + () => { + V.incubator = 0; + V.incubatorUpgradeSpeed = 5; + V.incubatorUpgradeWeight = 0; + V.incubatorUpgradeMuscles = 0; + V.incubatorUpgradeReproduction = 0; + V.incubatorUpgradeGrowthStims = 0; + V.incubatorWeightSetting = 0; + V.incubatorMusclesSetting = 0; + V.incubatorReproductionSetting = 0; + V.incubatorGrowthStimsSetting = 0; + V.tanks = []; + } + ) + ); + } + App.Events.addNode(el, r, "p"); + + r = []; + r.push(`It can support ${V.incubator}`); + if (incubatorSlaves === 1) { + r.push(`child. There is currently ${incubatorSlaves} tank`); + } else { + r.push(`children. There are currently ${incubatorSlaves} tanks`); + } + r.push(`in use in ${V.incubatorName}.`); + App.Events.addNode(el, r, "div"); + + el.append( + choice( + `Add another incubation tank`, + () => { + cashX(forceNeg(Math.trunc(60000 * V.upgradeMultiplierArcology)), "capEx"); + V.incubator += 1; + }, + "Incubator", + `Costs ${cashFormat(Math.trunc(60000 * V.upgradeMultiplierArcology))} and will increase upkeep costs` + ) + ); + if (freeTanks === 0) { + el.append(`All of the tanks are currently occupied by growing children.`); + } + + return el; + } + + function mothers() { + const el = new DocumentFragment(); + let r = []; + let eligibility = 0; + let linkArray; + const incubatorSlaves = V.tanks.length; + const freeTanks = V.incubator - incubatorSlaves; + r.push(`Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of ${V.incubator} tanks, ${freeTanks}`); + if (freeTanks === 1) { + r.push(`is`); + } else { + r.push(`are`); + } + r.push(`unoccupied. Of those, ${V.reservedChildren}`); + if (V.reservedChildren === 1) { + r.push(`tank is`); + } else { + r.push(`tanks are`); + } + r.push(` reserved.`); + App.Events.addNode(el, r, "div"); + /* + ** With hundreds of slaves, navigating the Incubator room was giving me as much of a headache as other lists. + ** So, I borrowed the sorting list and dropped a few options here. + */ + if (0 < _SL) { + const sortingBar = document.createElement("div"); + sortingBar.classList.add("incubator-underscore"); + + V.sortIncubatorList = V.sortIncubatorList || 'Unsorted'; + App.UI.DOM.appendNewElement("span", sortingBar, "Sorting: ", "note"); + + let qlIncubatorSort = document.createElement("span"); + qlIncubatorSort.classList.add("bold"); + qlIncubatorSort.id = "qlIncubatorSort"; + qlIncubatorSort.append(V.sortIncubatorList); + sortingBar.append(qlIncubatorSort); + sortingBar.append(`. `); + + linkArray = []; + linkArray.push( + App.UI.DOM.link( + "Sort by Name", + () => { + V.sortIncubatorList = 'Name'; + sortByName(); + jQuery(`#qlIncubatorSort`).empty().append(V.sortIncubatorList); + } + ) + ); + linkArray.push( + App.UI.DOM.link( + "Sort by Reserved Incubator Spots", + () => { + V.sortIncubatorList = 'Reserved Incubator Spots'; + sortByReservedSpots(); + jQuery(`#qlIncubatorSort`).empty().append(V.sortIncubatorList); + } + ) + ); + linkArray.push( + App.UI.DOM.link( + "Sort by Pregnancy Week", + () => { + V.sortIncubatorList = 'Reserved Incubator Spots'; + sortByPregnancyWeek(); + jQuery(`#qlIncubatorSort`).empty().append(V.sortIncubatorList); + } + ) + ); + linkArray.push( + App.UI.DOM.link( + "Sort by Number of Children", + () => { + V.sortIncubatorList = 'Reserved Incubator Spots'; + sortByPregnancyCount(); + jQuery(`#qlIncubatorSort`).empty().append(V.sortIncubatorList); + } + ) + ); + sortingBar.append(App.UI.DOM.generateLinksStrip(linkArray)); + el.append(sortingBar); + } + + const qlIncubator = document.createElement("div"); + qlIncubator.id = "qlIncubator"; + for (const slave of V.slaves) { + if (slave.preg > 0 && slave.broodmother === 0 && slave.pregKnown === 1 && slave.eggType === "human") { + const { + His, his + } = getPronouns(slave); + const r = []; + if ((slave.assignment === "work in the dairy" && V.dairyPregSetting > 0) || slave.assignment === "be your agent" || slave.assignment === "live with your agent") { + } else { + const freeTanks = V.incubator - incubatorSlaves; + const _slaveId = "slave-" + slave.ID; + const _WL = slave.womb.length; + const _reservedIncubator = WombReserveCount(slave, "incubator"); + const _reservedNursery = WombReserveCount(slave, "nursery"); + const _pregWeek = slave.pregWeek; + const _slaveName = SlaveFullName(slave); + const momEl = document.createElement("p"); + momEl.id = _slaveId; + momEl.classList.add("possible"); + + momEl.setAttribute("data-preg-count", slave.womb.length); + momEl.setAttribute("data-reserved-spots", _reservedIncubator); + momEl.setAttribute("data-preg-week", _pregWeek); + momEl.setAttribute("data-name", _slaveName); + + linkArray = []; + const choices = document.createElement("div"); + choices.classList.add("choices"); + r.push(App.UI.DOM.slaveDescriptionDialog(slave)); + r.push(` is ${slave.pregWeek} ${(slave.pregWeek === 1) ? `week` : `weeks`} pregnant with`); + if (slave.pregSource === 0 || slave.preg <= 5) { + r.push(`someone's${(slave.preg <= 5) ? `, though it is too early to tell whose,` : ``}`); + } else if (slave.pregSource === -1) { + r.push(`your`); + } else if (slave.pregSource === -2) { + r.push(`a citizen's`); + } else if (slave.pregSource === -3) { + r.push(`your Master's`); + } else if (slave.pregSource === -4) { + r.push(`another arcology owner's`); + } else if (slave.pregSource === -5) { + r.push(`your client's`); + } else if (slave.pregSource === -6) { + r.push(`the Societal Elite's`); + } else if (slave.pregSource === -7) { + r.push(`the lab's`); + } else if (slave.pregSource === -9) { + r.push(`the Futanari Sisters'`); + } else { + const father = getSlave(slave.pregSource); + if (father) { + r.push(`${father.slaveName}'s`); + } + } + if (_WL > 1) { + r.push(`${_WL} babies.`); + } else { + r.push(`baby.`); + } + if (_reservedIncubator > 0) { + childrenReserved = 1; + if (_WL === 1) { + r.push(`${His} child will be placed in ${V.incubatorName}.`); + } else if (_reservedIncubator < _WL) { + r.push(`${_reservedIncubator} of ${his} children will be placed in ${V.incubatorName}.`); + } else if (_WL === 2) { + r.push(`Both of ${his} children will be placed in ${V.incubatorName}.`); + } else { + r.push(`All ${_reservedIncubator} of ${his} children will be placed in ${V.incubatorName}.`); + } + if ((_reservedIncubator + _reservedNursery < _WL) && (V.reservedChildren < freeTanks)) { + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { + V.AS = slave.ID; + }, + [], + `Analyze Pregnancy` + ) + ); + } + linkArray.push( + App.UI.DOM.link( + `Keep another child`, + () => { + WombAddToGenericReserve(slave, 'incubator', 1); + refresh(); + } + ) + ); + if (_reservedIncubator > 0) { + linkArray.push( + App.UI.DOM.link( + `Keep one less child`, + () => { + WombCleanGenericReserve(slave, 'incubator', 1); + refresh(); + } + ) + ); + } + if (_reservedIncubator > 1) { + linkArray.push( + App.UI.DOM.link( + `Keep none of ${his} children`, + () => { + WombCleanGenericReserve(slave, 'incubator', 9999); + refresh(); + } + ) + ); + } + if ((V.reservedChildren + _WL - _reservedIncubator) <= freeTanks) { + linkArray.push( + App.UI.DOM.link( + `Keep the rest of ${his} children`, + () => { + WombAddToGenericReserve(slave, 'incubator', 9999); + refresh(); + } + ) + ); + } + } else if ((_reservedIncubator === _WL) || (V.reservedChildren === freeTanks) || (_reservedIncubator + _reservedNursery === _WL)) { + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { + V.AS = slave.ID; + }, + [], + `Analyze Pregnancy` + ) + ); + } + linkArray.push( + App.UI.DOM.link( + `Keep one less child`, + () => { + WombCleanGenericReserve(slave, 'incubator', 1); + refresh(); + } + ) + ); + if (_reservedIncubator > 1) { + linkArray.push( + App.UI.DOM.link( + `Keep none of ${his} children`, + () => { + WombCleanGenericReserve(slave, 'incubator', 9999); + refresh(); + } + ) + ); + } + } + } else if ((V.reservedChildren < freeTanks)) { + if (_WL - _reservedNursery === 0) { + r.push(App.UI.DOM.makeElement("span", `${His} children are already reserved for V.nurseryName`, "note")); + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { + V.AS = slave.ID; + }, + [], + `Analyze Pregnancy` + ) + ); + } + linkArray.push( + App.UI.DOM.link( + `Keep ${his} ${((_WL > 1) ? "children" : "child")} here instead`, + () => { + WombChangeReserveType(slave, 'nursery', 'incubator'); + refresh(); + } + ) + ); + } else { + r.push(`You have`); + if (freeTanks === 1) { + r.push(`an <span class="lime"> available aging tank.</span>`); + } else { + r.push(`<span class="lime"> available aging tanks.</span>`); + } + if (V.pregnancyMonitoringUpgrade === 1) { + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { + V.AS = slave.ID; + }, + [], + `Analyze Pregnancy` + ) + ); + } + } + linkArray.push( + App.UI.DOM.link( + `Keep ${(_WL > 1) ? "a" : "the"} child`, + () => { + WombAddToGenericReserve(slave, 'incubator', 1); + refresh(); + } + ) + ); + if ((_WL > 1) && (V.reservedChildren + _WL - _reservedIncubator) <= freeTanks) { + linkArray.push( + App.UI.DOM.link( + `Keep all of ${his} children`, + () => { + WombAddToGenericReserve(slave, 'incubator', 9999); + refresh(); + } + ) + ); + } + } + } else if (V.reservedChildren === freeTanks) { + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { + V.AS = slave.ID; + }, + [], + `Analyze Pregnancy` + ) + ); + } + const noRoom = new DocumentFragment(); + noRoom.append(`You have `); + App.UI.DOM.appendNewElement("span", noRoom, `no room for ${his} offspring.`, "red"); + linkArray.push(noRoom); + } + eligibility = 1; + + App.Events.addNode(momEl, r, "div"); + choices.append(App.UI.DOM.generateLinksStrip(linkArray)); + momEl.append(choices); + qlIncubator.append(momEl); + } + } + } + el.append(qlIncubator); + $('div#qlIncubator').ready(sortByPreviousSort); + if (eligibility === 0) { + App.UI.DOM.appendNewElement("div", el, `You have no pregnant slaves bearing eligible children.`, "note"); + } + + if (V.reservedChildren !== 0 || childrenReserved === 1) { + /* the oops I made it go negative somehow button */ + App.UI.DOM.appendNewElement( + "div", + el, + App.UI.DOM.link( + "Clear all reserved children", + () => { + for (const slave of V.slaves) { + if (WombReserveCount(slave, "incubator") !== 0) { + WombCleanGenericReserve(slave, 'incubator', 9999); + } + WombCleanGenericReserve(V.PC, 'incubator', 9999); + } + refresh(); + } + ) + ); + } + return el; + + function refresh() { + jQuery("#content-mothers").empty().append(mothers()); + jQuery("#content-intro").empty().append(intro()); + } + + function sortByName() { + let $sortedIncubatorPossibles = $('#qlIncubator p.possible').detach(); + $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-name'); + $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); + } + + function sortByPregnancyWeek() { + let $sortedIncubatorPossibles = $('#qlIncubator p.possible').detach(); + $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-preg-week'); + $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); + } + + function sortByPregnancyCount() { + let $sortedIncubatorPossibles = $('#qlIncubator p.possible').detach(); + $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-preg-count'); + $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); + } + + function sortByReservedSpots() { + let $sortedIncubatorPossibles = $('#qlIncubator p.possible').detach(); + $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-reserved-spots'); + $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); + } + + function sortByPreviousSort() { + let sort = V.sortIncubatorList; + if (sort !== 'unsorted') { + if (sort === 'Name') { + sortByName(); + } else if (sort === 'Reserved Incubator Spots') { + sortByReservedSpots(); + } else if (sort === 'Pregnancy Week') { + sortByPregnancyWeek(); + } else if (sort === 'Number of Children') { + sortByPregnancyCount(); + } + } + } + } + + function PC() { + const el = new DocumentFragment(); + let r = []; + let linkArray = []; + const incubatorSlaves = V.tanks.length; + const freeTanks = V.incubator - incubatorSlaves; + const _WL = V.PC.womb.length; + const _reservedIncubator = WombReserveCount(V.PC, "incubator"); + const _reservedNursery = WombReserveCount(V.PC, "nursery"); + r.push(App.UI.DOM.makeElement("span", `You're ${V.PC.pregWeek} ${(V.PC.pregWeek === 1) ? `week`:`weeks`}pregnant`, ["pink", "bold"])); + if (_WL === 1) { + r.push(`a baby.`); + } else { + r.push(`${pregNumberName(_WL, 2)}.`); + } + const choices = document.createElement("div"); + choices.classList.add("choices"); + if (_reservedIncubator > 0) { + childrenReserved = 1; + if (_WL === 1) { + r.push(`Your child will be placed in ${V.incubatorName}.`); + } else if (_reservedIncubator < _WL) { + r.push(`${_reservedIncubator} of your children will be placed in ${V.incubatorName}.`); + } else if (_WL === 2) { + r.push(`Both of your children will be placed in ${V.incubatorName}.`); + } else { + r.push(`All ${_reservedIncubator} of your children will be placed in ${V.incubatorName}.`); + } + + if ((_reservedIncubator < _WL) && (V.reservedChildren < freeTanks) && (_reservedIncubator - _reservedNursery > 0)) { + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { }, + [], + `Analyze PC Pregnancy` + ) + ); + } + linkArray.push( + App.UI.DOM.link( + `Keep another child`, + () => { + WombAddToGenericReserve(V.PC, 'incubator', 1); + refresh(); + } + ) + ); + if (_reservedIncubator > 0) { + linkArray.push( + App.UI.DOM.link( + `Keep one less child`, + () => { + WombCleanGenericReserve(V.PC, 'incubator', 1); + refresh(); + } + ) + ); + } + if (_reservedIncubator > 1) { + linkArray.push( + App.UI.DOM.link( + `Keep none of your children`, + () => { + WombCleanGenericReserve(V.PC, 'incubator', 9999); + refresh(); + } + ) + ); + } + if ((V.reservedChildren + _WL - _reservedIncubator) <= freeTanks) { + linkArray.push( + App.UI.DOM.link( + `Keep the rest of your children`, + () => { + WombAddToGenericReserve(V.PC, 'incubator', 9999); + refresh(); + } + ) + ); + } + } else if ((_reservedIncubator === _WL) || (V.reservedChildren === freeTanks) || (_reservedIncubator - _reservedNursery >= 0)) { + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { }, + [], + `Analyze PC Pregnancy` + ) + ); + } + linkArray.push( + App.UI.DOM.link( + `Keep one less child`, + () => { + V.reservedChildren -= 1; + refresh(); + } + ) + ); + if (_reservedIncubator > 1) { + App.UI.DOM.link( + `Keep none of your children`, + () => { + WombCleanGenericReserve(V.PC, 'incubator', 9999); + refresh(); + } + ); + } + } + } else if (V.reservedChildren < freeTanks) { + if (_WL - _reservedNursery === 0) { + r.push( + App.UI.DOM.makeElement( + "span", + `Your ${(_WL === 1) ? `child is` : `children are`} already reserved for ${V.nurseryName}`, + "note" + ) + ); + App.UI.DOM.link( + `Keep your ${(_WL === 1) ? `child` : `children`} here instead`, + () => { + WombChangeReserveType(V.PC, 'nursery', 'incubator'); + refresh(); + } + ); + } else { + r.push(``); + if (freeTanks === 1) { + r.push(`You have an <span class="lime"> available aging tank.</span>`); + } else { + r.push(`You have <span class="lime"> available aging tanks.</span>`); + } + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { }, + [], + `Analyze PC Pregnancy` + ) + ); + } + App.UI.DOM.link( + `Keep ${(_WL > 1) ? `a` : `your`} child`, + () => { + WombAddToGenericReserve(V.PC, 'incubator', 1); + refresh(); + } + ); + if ((_WL > 1) && (V.reservedChildren + _WL - _reservedIncubator) <= freeTanks) { + App.UI.DOM.link( + `Keep all of your children|Incubator`, + () => { + WombAddToGenericReserve(V.PC, 'incubator', 9999); + refresh(); + } + ); + } + } + } else if (V.reservedChildren === freeTanks) { + if (V.pregnancyMonitoringUpgrade === 1) { + linkArray.push( + App.UI.DOM.link( + `Inspect pregnancy`, + () => { }, + [], + `Analyze PC Pregnancy` + ) + ); + } + const noRoom = new DocumentFragment(); + noRoom.append(`You have `); + App.UI.DOM.appendNewElement("span", noRoom, `no room for your offspring.`, "red"); + linkArray.push(noRoom); + } + App.Events.addNode(el, r, "div"); + choices.append(App.UI.DOM.generateLinksStrip(linkArray)); + el.append(choices); + + return el; + + function refresh() { + jQuery("#content-pc").empty().append(PC()); + jQuery("#content-intro").empty().append(intro()); + } + } + + function tankBabies() { + const el = new DocumentFragment(); + let row; + let linkArray; + const incubatorSlaves = V.tanks.length; + if (incubatorSlaves > 0) { + App.UI.DOM.appendNewElement("h2", el, `Children in ${V.incubatorName}`); + + for (let i = 0; i < incubatorSlaves; i++) { + const p = document.createElement("p"); + p.classList.add("incubator-tank"); + let r = []; + const { + He, His, + he, him, his + } = getPronouns(V.tanks[i]); + r.push(App.UI.DOM.makeElement("span", V.tanks[i].slaveName, "pink")); + r.push(`occupies this tank.`); + if (V.geneticMappingUpgrade >= 1) { + r.push(`${He} is a `); + if (V.tanks[i].genes === "XX") { + r.push(`female`); + } else { + r.push(`male`); + } + r.push(`of ${V.tanks[i].race} descent with ${App.Desc.eyesColor(V.tanks[i])}, ${V.tanks[i].hColor} hair and ${V.tanks[i].skin} skin. Given ${his} parentage, ${he} is considered ${V.tanks[i].nationality}.`); + } else { + r.push(`${He} appears to be `); + if (V.tanks[i].genes === "XX") { + r.push(`a natural girl`); + } else { + r.push(`a natural boy`); + } + r.push(`, with ${V.tanks[i].hColor} hair`); + if (getBestVision(V.tanks[i]) === 0) { + r.push(` and ${App.Desc.eyesColor(V.tanks[i])}.`); + } else { + r.push(`. ${He} most likely will be blind.`); + } + } + if (V.tanks[i].preg > 0) { + r.push(`<span class="red">Warning! Subject may be pregnant! Unanticipated growth may occur!</span>`); + } + r.push(`Statistical projections indicates that once released ${he} will be around ${heightToEitherUnit(V.tanks[i].height + random(-5, 5))} tall. Most likely ${he} will be`); + if (V.tanks[i].weight <= 30 && V.tanks[i].weight >= -30) { + r.push(`at a healthy weight and`); + } else if (V.tanks[i].weight >= 31 && V.tanks[i].weight <= 95) { + r.push(`quite overweight and`); + } else if (V.tanks[i].weight >= 96) { + r.push(`very overweight and`); + } else if (V.tanks[i].weight <= -31 && V.tanks[i].weight >= -95) { + r.push(`quite thin and`); + } else if (V.tanks[i].weight <= -96) { + r.push(`very thin and`); + } + if (V.tanks[i].muscles <= 5 && V.tanks[i].muscles >= -5) { + r.push(`with a normal musculature.`); + } else if (V.tanks[i].muscles >= 6 && V.tanks[i].muscles <= 30) { + r.push(`quite toned.`); + } else if (V.tanks[i].muscles >= 31 && V.tanks[i].muscles <= 95) { + r.push(`quite muscular.`); + } else if (V.tanks[i].muscles >= 96) { + r.push(`with a powerful musculature.`); + } else if (V.tanks[i].muscles <= -6 && V.tanks[i].muscles >= -30) { + r.push(`quite weak.`); + } else if (V.tanks[i].muscles <= -31 && V.tanks[i].muscles >= -95) { + r.push(`very weak.`); + } else if (V.tanks[i].muscles <= -96) { + r.push(`extremely weak.`); + } + r.push(`${His} breasts are projected to be`); + if (V.tanks[i].boobs <= 299) { + r.push(`of small size,`); + } else if (V.tanks[i].boobs <= 799) { + r.push(`of normal size,`); + } else if (V.tanks[i].boobs <= 1799) { + r.push(`of generous size,`); + } else if (V.tanks[i].boobs <= 3249) { + r.push(`of incredible size,`); + } else { + r.push(`of humongous size,`); + } + r.push(`while ${his} rear will be`); + if (V.tanks[i].butt <= 3) { + r.push(`a healthy size.`); + } else if (V.tanks[i].butt <= 6) { + r.push(`quite impressive.`); + } else if (V.tanks[i].butt <= 9) { + r.push(`very impressive.`); + } else { + r.push(`immense.`); + } + if (V.tanks[i].dick > 0) { + if (V.tanks[i].dick <= 3) { + r.push(`The latest analysis reported ${his} dick will end up being around the average`); + } else if (V.tanks[i].dick >= 4 && V.tanks[i].dick <= 6) { + r.push(`The latest analysis reported ${his} dick will end up being above average`); + } else if (V.tanks[i].dick >= 7 && V.tanks[i].dick <= 9) { + r.push(`The latest analysis reported ${his} dick will end up being far above the average`); + } else { + r.push(`The latest analysis reported ${his} dick will end up being of monstrous size`); + } + } + if (V.tanks[i].balls > 0) { + if (V.tanks[i].balls <= 3) { + r.push(`and ${his} testicles will reach a normal size.`); + } else if (V.tanks[i].balls >= 4 && V.tanks[i].balls <= 6) { + r.push(`and ${his} testicles will be of remarkable size.`); + } else if (V.tanks[i].balls >= 7 && V.tanks[i].balls <= 9) { + r.push(`and ${his} testicles will reach an impressive size.`); + } else { + r.push(`and ${his} testicles will reach a monstrous size.`); + } + } + if (V.tanks[i].pubertyXX === 1 && V.tanks[i].ovaries === 1) { + r.push(`Scanners report ${his} womb is fertile.`); + } else { + r.push(`Scanners report ${he} is not fertile,`); + if (V.tanks[i].pubertyXX === 0) { + r.push(`as ${he} has not yet entered puberty.`); + } else { + r.push(`as it appears ${his} womb is sterile.`); + } + } + if ((V.incubatorPregAdaptationSetting === 1 && V.tanks[i].genes === "XX") || (V.incubatorPregAdaptationSetting === 2 && V.tanks[i].genes === "XY") || V.incubatorPregAdaptationSetting === 3) { + r.push(`There are probes and tubes inserted inside ${his} reproductive organs so ${V.incubatorName} may work on them.`); + const _safeCC = (V.tanks[i].pregAdaptation - 5) * 2000; + if (_safeCC > 300000) { + /* Some bigger size descriptions may be unreachable by normal game mechanics, so they are here just in case.*/ + r.push(`${His} bloated form looks more like an overinflated beachball made of the overstretched skin of ${his} belly with ${his} relative tiny body attached to its side. ${He} is completely dominated by it now. The process has gone too far, so ${his} body can't maintain its form with the belly as part of abdominal cavity. Now ${his} skin, tissues and muscles have stretched enough for ${his} belly to expand outside of any physical boundaries and appear more an attachment to ${his} body, rather than part of it.`); + } else if (_safeCC > 150000) { + r.push(`${His} body looks almost spherical, having been grotesquely inflated with the stimulator sacks inserted into ${his} internals. The incubator constantly maintains high pressure inside ${him}, forcing the displacement of ${his} organs and stretching skin, tissues, and muscles. Even ${his} chest forced to become a part of the top of ${his} belly, having been pushed forward from the overwhelming volume inside.`); + } else if (_safeCC > 75000) { + r.push(`${His} belly has become so huge that can be easily compared with belly of a woman ready to birth quintuplets. It pulses from the pressure applied within by the incubator probes.`); + } else if (_safeCC > 45000) { + r.push(`${His} belly, in the current state, would look normal on a woman who was ready to birth triplets. On ${his} still growing form, it's something completely out of the ordinary.`); + } else if (_safeCC > 30000) { + r.push(`${His} belly looks like it contains full sized twins, ready to be birthed.`); + } else if (_safeCC > 15000) { + r.push(`${His} belly has reached the size of full term pregnancy.`); + } else if (_safeCC > 10000) { + r.push(`${His} belly has inflated to the size of late term pregnancy; its skin shines from the tension.`); + } else if (_safeCC > 5000) { + r.push(`${His} belly resembles a mid term pregnancy; it pulses slightly from the expansion and contraction of expandable sacks tipping the incubator probes.`); + } else if (_safeCC > 1500) { + r.push(`${His} belly slightly bulges and rhythmically expands and contracts to the cycles of ${his} stimulation as the incubator inflates and deflates expandable sacks on its probes within ${his} body cavity. With the correct serums applied, this should allow it to stretch the skin, tissues, and muscles of ${his} belly to better to tolerate the displacement of internal organs caused by fetal growth.`); + } + } + App.Events.addNode(p, r, "div"); + if (V.tanks[i].growTime <= 0) { + V.readySlaves = 1; + appendRow(p, `${He} is ready to be released from ${his} tank.`); + } else { + const _weekDisplay = Math.round(V.tanks[i].growTime / V.incubatorUpgradeSpeed); + appendRow(p, `${His} growth is currently being accelerated. ${He} will be ready for release in about ${_weekDisplay} ${(_weekDisplay > 1) ? `weeks` : `week`}.`); + } + + if (V.tanks[i].tankBaby !== 3) { + r = []; + r.push(`The tank is imprinting ${him} with basic life and sexual skills, though ${he} will still be very naïve and inexperienced on release.`); + if (V.tanks[i].tankBaby === 2) { + r.push(`The majority of ${his} indoctrination involves painting the world as a terrible place where only horror awaits ${him} should ${he} not obey ${his} owner.`); + } else { + r.push(`The majority of ${his} indoctrination involves painting the world as a wonderful place only if ${he} is unconditionally devoted to, and absolutely trusting of, ${his} owner.`); + } + App.Events.addNode(p, r, "div"); + } else { + appendRow(p, `The tank keeps ${him} a braindead husk on a complete life-support.`); + } + + + if (V.incubatorUpgradeWeight === 1) { + if (V.incubatorWeightSetting === 1) { + appendRow(p, `${His} weight is not being properly managed, saving costs but likely causing excessive weight gain.`); + } else if (V.incubatorWeightSetting === 2) { + appendRow(p, `${His} weight is being carefully managed; ${he} will be released at a healthy weight.`); + } else if (V.incubatorWeightSetting === 0) { + appendRow(p, `Weight management systems are offline; ${he} will likely be malnourished.`); + } + } + if (V.incubatorUpgradeMuscles === 1) { + if (V.incubatorMusclesSetting === 2) { + appendRow(p, `${His} strength levels are purposefully set higher than recommended; ${he} is likely to have excessive musculature.`); + } else if (V.incubatorMusclesSetting === 1) { + appendRow(p, `${His} musculature is being carefully managed; ${he} will be released with near normal strength.`); + } else if (V.incubatorMusclesSetting === 0) { + appendRow(p, `Strength management systems are offline; ${he} will likely be released extremely weak.`); + } + } + if (V.incubatorUpgradeGrowthStims === 1) { + if (V.incubatorGrowthStimsSetting === 2) { + appendRow(p, `${He} is being injected with higher than recommended doses of stimulants; ${he} is likely to be much taller than expected.`); + } else if (V.incubatorGrowthStimsSetting === 1) { + appendRow(p, `${He} is injected with the recommended dosage of stimulants; ${he} will grow to ${his} full expected height.`); + } else if (V.incubatorGrowthStimsSetting === 0) { + appendRow(p, `Growth stimulant injection systems are offline; ${he} will develop normally.`); + } + } + if (V.incubatorUpgradeReproduction === 1) { + if (V.incubatorReproductionSetting === 2) { + appendRow(p, `${His} hormone levels are purposefully set higher than recommended; ${his} reproductive systems are likely to be over-active.`); + } else if (V.incubatorReproductionSetting === 1) { + appendRow(p, `${His} hormone levels are being carefully managed; ${he} will be released with fully functional reproductive organs.`); + } else if (V.incubatorReproductionSetting === 0) { + appendRow(p, `Reproduction management systems are offline; ${he} will undergo normal puberty.`); + } + if ((V.incubatorPregAdaptationSetting === 1 && V.tanks[i].genes === "XX") || (V.incubatorPregAdaptationSetting === 2 && V.tanks[i].genes === "XY") || V.incubatorPregAdaptationSetting === 3) { + /* Should be visible only after incubatorUpgradeReproduction is installed and activated*/ + r = []; + r.push(`${His} reproductive organs are getting `); + if (V.tanks[i].incubatorPregAdaptationPower === 1) { + r.push(`an advanced`); + } else if (V.tanks[i].incubatorPregAdaptationPower === 2) { + r.push(`an intensive`); + } else if (V.tanks[i].incubatorPregAdaptationPower === 3) { + r.push(`an extreme`); + } else { + r.push(`a standard`); + } + r.push(` course of mechanical and hormonal therapy to become adapted for future use.`); + App.Events.addNode(p, r, "div"); + } + } + r = []; + r.push(`Rename ${him}: `); + r.push( + App.UI.DOM.makeTextBox( + V.tanks[i].slaveName, + (v) => { + V.tanks[i].slaveName = v; + refresh(); + } + ) + ); + r.push(App.UI.DOM.makeElement("span", `Given name only`, `note`)); + App.Events.addNode(p, r, "div"); + + if (V.cheatMode === 1) { + row = document.createElement("div"); + App.UI.DOM.appendNewElement("span", row, `Cheatmode: `, "bold"); + row.append( + App.UI.DOM.link( + "Retrieve immediately", + () => { + V.incubatorOldID = V.tanks[i].ID; + V.readySlave = V.tanks[i]; + V.tanks.splice(i, 1); + }, + [], + "Incubator Retrieval Workaround" + ) + ); + p.append(row); + } + if ((V.incubatorUpgradeOrgans === 1) && (V.tanks[i].tankBaby !== 3)) { + r = []; + r.push(`You can extract a sample and prepare a new organ for ${him} to be implanted once ${he} exits ${his} tank.`); + tankOrgans = { + ovaries: 0, + penis: 0, + testicles: 0, + rightEye: 0, + leftEye: 0, + voiceBox: 0 + }; + for (let _i = 0; _i < V.incubatorOrgans.length; _i++) { + if (V.tanks[i].ID === V.incubatorOrgans[_i].ID) { + if (V.incubatorOrgans[_i].type === "ovaries") { + tankOrgans.ovaries = 1; + } + if (V.incubatorOrgans[_i].type === "testicles") { + tankOrgans.testicles = 1; + } + if (V.incubatorOrgans[_i].type === "penis") { + tankOrgans.penis = 1; + } + if (V.incubatorOrgans[_i].type === "rightEye") { + tankOrgans.rightEye = 1; + } + if (V.incubatorOrgans[_i].type === "leftEye") { + tankOrgans.leftEye = 1; + } + if (V.incubatorOrgans[_i].type === "voicebox") { + tankOrgans.voicebox = 1; + } + } + } + + if (V.tanks[i].genes === "XX") { + r.push(`Being a natural girl, ${he} possesses a functional vagina and ovaries. You can:`); + } else { + r.push(`Being a natural boy, ${he} possesses a functional penis and balls. You can:`); + } + App.Events.addNode(p, r, "div"); + + linkArray = []; + if (V.tanks[i].ovaries === 0) { + if (tankOrgans.ovaries !== 1) { + linkArray.push( + makeLink( + "Prepare ovaries", + () => { + App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "ovaries"); + }, + refresh + ) + ); + } else { + linkArray.push(App.UI.DOM.makeElement("span", `Ovaries are already prepared.`, "detail")); + } + } + if (V.tanks[i].dick === 0) { + if (tankOrgans.penis !== 1) { + linkArray.push( + makeLink("Prepare penis", () => { App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "penis"); }, refresh) + ); + } else { + linkArray.push(App.UI.DOM.makeElement("span", `A penis is already prepared`, "detail")); + } + } + if (V.tanks[i].balls === 0) { + if (tankOrgans.testicles !== 1) { + linkArray.push(makeLink("Prepare testicles", () => { App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "testicles"); }, refresh)); + } else { + linkArray.push(App.UI.DOM.makeElement("span", `Testicles are already prepared.`, "detail")); + } + } + const vision = { + left: getLeftEyeVision(V.tanks[i]), + right: getRightEyeVision(V.tanks[i]) + }; + if (vision.left === 0 || vision.right === 0) { + if (vision.left === 0 && vision.right === 0) { + linkArray.push(App.UI.DOM.makeElement("span", `${He} appears to be blind in both eyes:`)); + } else if (vision.left === 0) { + linkArray.push(App.UI.DOM.makeElement("span", `${He} appears to be blind in ${his} left eye:`)); + } else { + linkArray.push(App.UI.DOM.makeElement("span", `${He} appears to be blind in ${his} right eye:`)); + } + if (vision.left === 0 && tankOrgans.leftEye !== 1) { + linkArray.push(makeLink("Prepare left eye", () => { App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "leftEye"); }, refresh)); + } + if (vision.right === 0 && tankOrgans.rightEye !== 1) { + linkArray.push(makeLink("Prepare right eye", () => { App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "rightEye"); }, refresh)); + } + if (vision.left === 0 && vision.right === 0 && linkArray.length === 2) { + linkArray.push( + makeLink( + "Prepare right eye", + () => { + App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "rightEye"); + App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "leftEye"); + }, + refresh + ) + ); + } + if (vision.left === 0 && vision.right === 0 && linkArray.length === 0) { + linkArray.push(App.UI.DOM.makeElement("span", `Both eyes are already prepared.`, `detail`)); + } else if (tankOrgans.leftEye === 1) { + linkArray.push(App.UI.DOM.makeElement("span", `A left eye is already prepared.`, `detail`)); + } else if (tankOrgans.rightEye === 1) { + linkArray.push(App.UI.DOM.makeElement("span", `A right eye is already prepared.`, `detail`)); + } + } + App.UI.DOM.appendNewElement("div", p, App.UI.DOM.generateLinksStrip(linkArray)); + if (V.tanks[i].voice === 0) { + r = []; + r.push(`${He} appears to be mute: `); + if (tankOrgans.voicebox !== 1) { + r.push(makeLink("Prepare vocal cords", () => { App.Medicine.OrganFarm.growIncubatorOrgan(V.tanks[i], "voicebox"); }, refresh)); + } else { + r.push(App.UI.DOM.makeElement("span", `Vocal cords are already prepared.`, `detail`)); + } + App.Events.addNode(p, r, "div"); + } + } + el.append(p); + } + } + + for (let i = 0; i < V.reservedChildren; i++) { + const empty = document.createElement("div"); + empty.classList.add("incubator-tank"); + empty.append("This tank is currently reserved"); + el.append(empty); + } + const freeTanks = V.incubator - incubatorSlaves; + const empty = freeTanks - V.reservedChildren; + if (empty) { + for (let i = 0; i < empty; i++) { + const empty = document.createElement("div"); + empty.classList.add("incubator-tank"); + empty.append("This tank is currently empty"); + empty.append( + choice( + `Remove incubation tank`, + () => { + cashX(forceNeg(Math.trunc(10000 * V.upgradeMultiplierArcology)), "capEx"); + V.incubator -= 1; + refresh(); + }, + "", + `Costs ${cashFormat(Math.trunc(10000 * V.upgradeMultiplierArcology))} and will reduce upkeep costs` + ) + ); + el.append(empty); + } + } + // if (V.incubator > 1 && V.reservedChildren < freeTanks) + + return el; + + function refresh() { + jQuery("#content-tankBabies").empty().append(tankBabies()); + jQuery("#content-intro").empty().append(intro()); + } + } + + function tankSettings() { + const el = new DocumentFragment(); + let cost; + let p; + let r = []; + let row = document.createElement("div"); + let linkArray; + r.push("Target age for release:"); + r.push( + App.UI.DOM.makeTextBox( + V.targetAge, + (v) => { + V.targetAge = v || V.minimumSlaveAge; + V.targetAge = Math.clamp(V.targetAge, V.minimumSlaveAge, V.retirementAge); + refresh(); + }, + true + ) + ); + linkArray = []; + linkArray.push( + App.UI.DOM.link( + `Minimum Legal Age`, + () => { + V.targetAge = V.minimumSlaveAge; + refresh(); + } + ) + ); + linkArray.push( + App.UI.DOM.link( + `Average Age of Fertility`, + () => { + V.targetAge = V.fertilityAge; + refresh(); + } + ) + ); + linkArray.push( + App.UI.DOM.link( + `Average Age of Potency`, + () => { + V.targetAge = V.potencyAge; + refresh(); + } + ) + ); + linkArray.push( + App.UI.DOM.link( + `Legal Adulthood`, + () => { + V.targetAge = 18; + refresh(); + } + ) + ); + r.push(App.UI.DOM.generateLinksStrip(linkArray)); + r.push(App.UI.DOM.makeElement("span", `Setting will not be applied to tanks in use.`, "note")); + App.Events.addNode(el, r, "p"); + + row = document.createElement("p"); + if (V.incubatorBulkRelease === 1) { + row.append(`Released children will be handled in bulk and not receive personal attention. `); + row.append( + App.UI.DOM.link( + `Individual release`, + () => { + V.incubatorBulkRelease = 0; + refresh(); + } + ) + ); + } else { + row.append(`Released children will be seen to personally. `); + row.append( + App.UI.DOM.link( + `Bulk release`, + () => { + V.incubatorBulkRelease = 1; + refresh(); + } + ) + ); + } + el.append(row); + + row = document.createElement("p"); + + if (V.incubatorUpgradeSpeed === 52) { + row.append(`It has been upgraded with perfected growth accelerants; children grow at the rate of 1 week to 1 year.`); + } else if (V.incubatorUpgradeSpeed === 18) { + cost = Math.trunc(500000 * V.upgradeMultiplierArcology); + row.append(`It has been upgraded with advanced experimental growth accelerants; children grow at the rate of 3 weeks to 1 year. `); + row.append( + App.UI.DOM.link( + `Fund speculative research into maximizing growth rate`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeSpeed = 52; + refresh(); + }, + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } else if (V.incubatorUpgradeSpeed === 9) { + cost = Math.trunc(75000 * V.upgradeMultiplierArcology); + row.append(`It has been upgraded with advanced growth accelerants; children grow at the rate of 6 weeks to 1 year. `); + row.append( + App.UI.DOM.link( + `Fund research into increasing growth rate even further`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeSpeed = 18; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } else if (V.incubatorUpgradeSpeed === 6) { + cost = Math.trunc(30000 * V.upgradeMultiplierArcology); + row.append(`It has been upgraded with growth accelerants; children grow at the rate of 9 weeks to 1 year. `); + row.append( + App.UI.DOM.link( + `Further upgrade the incubators with specialized stem cells to speed growth`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeSpeed = 9; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } else if (V.incubatorUpgradeSpeed === 5) { + cost = Math.trunc(30000 * V.upgradeMultiplierArcology); + row.append(`The incubation tanks are basic; children grow at the rate of 12 weeks to 1 year. `); + row.append( + App.UI.DOM.link( + `Upgrade the incubators with growth accelerating drugs`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeSpeed = 6; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } + + el.append(row); + + p = document.createElement("p"); + row = document.createElement("div"); + if (V.incubatorUpgradeWeight === 1) { + row.append(`Advanced caloric monitoring systems have been installed in the tanks to monitor and maintain a developing child's weight.`); + p.append(row); + row = document.createElement("div"); + linkArray = []; + if (V.incubatorWeightSetting === 1) { + row.append(`Weight is not being properly managed; excessive weight gain is likely. `); + } else { + linkArray.push(makeLink(`Estimate only`, () => { V.incubatorWeightSetting = 1; }, refresh)); + } + + if (V.incubatorWeightSetting === 2) { + row.append(`Weight is being carefully managed; children will be released at a healthy weight. `); + } else { + linkArray.push(makeLink(`Activate`, () => { V.incubatorWeightSetting = 2; }, refresh)); + } + + if (V.incubatorWeightSetting === 0) { + row.append(`Weight management systems are offline; children will likely be malnourished. `); + } else { + linkArray.push(makeLink(`Disable`, () => { V.incubatorWeightSetting = 0; }, refresh)); + } + row.append(App.UI.DOM.generateLinksStrip(linkArray)); + } else { + cost = Math.trunc(20000 * V.upgradeMultiplierArcology); + row.append(`There are no systems in place to control a growing child's weight; they will likely come out emaciated from the rapid growth. `); + row.append( + App.UI.DOM.link( + `Upgrade the growth tanks with weight monitoring systems`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeWeight = 1; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } + + p.append(row); + el.append(p); + + p = document.createElement("p"); + row = document.createElement("div"); + + if (V.incubatorUpgradeMuscles === 1) { + row.append(`Advanced monitoring and steroid injection systems have been installed in the tanks to monitor and maintain a developing child's musculature.`); + p.append(row); + row = document.createElement("div"); + linkArray = []; + if (V.incubatorMusclesSetting === 2) { + row.append(`Strength levels are purposefully set higher than recommended; excessive muscle gain is likely. `); + } else { + linkArray.push(makeLink(`Overload`, () => { V.incubatorMusclesSetting = 2; }, refresh)); + } + + if (V.incubatorMusclesSetting === 1) { + row.append(`Musculature is being carefully managed; children will be released with near normal strength. `); + } else { + linkArray.push(makeLink(`Activate`, () => { V.incubatorMusclesSetting = 1; }, refresh)); + } + + if (V.incubatorMusclesSetting === 0) { + row.append(`Strength management systems are offline; children will likely be released extremely weak. `); + } else { + linkArray.push(makeLink(`Disable`, () => { V.incubatorMusclesSetting = 0; }, refresh)); + } + + row.append(App.UI.DOM.generateLinksStrip(linkArray)); + } else { + cost = Math.trunc(20000 * V.upgradeMultiplierArcology); + row.append(`There are no systems in place to control a growing child's musculature; they will likely come out frail and weak from the rapid growth. `); + row.append( + App.UI.DOM.link( + `Upgrade the growth tanks with muscle monitoring systems`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeMuscles = 1; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } + + p.append(row); + el.append(p); + + p = document.createElement("p"); + row = document.createElement("div"); + + if (V.incubatorUpgradeReproduction === 1) { + row.append(`Advanced monitoring and hormone injection systems have been installed in the tanks to influence a developing child's reproductive organs.`); + p.append(row); + row = document.createElement("div"); + linkArray = []; + if (V.incubatorReproductionSetting === 2) { + row.append(`Hormone levels are purposefully set higher than recommended; over-active reproductive systems are likely. `); + } else { + linkArray.push(makeLink(`Overload`, () => { V.incubatorReproductionSetting = 2; }, refresh)); + } + + if (V.incubatorReproductionSetting === 1) { + row.append(`Hormone levels are being carefully managed; children will be released with fully functional reproductive organs. `); + } else { + linkArray.push(makeLink(`Limit`, () => { V.incubatorReproductionSetting = 1; }, refresh)); + } + + if (V.incubatorReproductionSetting === 0) { + row.append(`Reproduction management systems are offline; children will undergo normal puberty. `); + } else { + linkArray.push(makeLink(`Disable`, () => { V.incubatorReproductionSetting = 0; }, refresh)); + } + row.append(App.UI.DOM.generateLinksStrip(linkArray)); + + if (V.incubatorUpgradePregAdaptation === 1) { + // Should be visible only after incubatorUpgradeReproduction is installed + p.append(row); + row = document.createElement("div"); + linkArray = []; + if (V.incubatorPregAdaptationSetting === 3) { + row.append(`Pregnancy adaptation system online: All. `); + } else { + linkArray.push(makeLink(`All`, () => { V.incubatorPregAdaptationSetting = 3; }, refresh)); + } + + if (V.incubatorPregAdaptationSetting === 2) { + row.append(`Pregnancy adaptation system online: Males only. `); + } else { + linkArray.push(makeLink(`Males`, () => { V.incubatorPregAdaptationSetting = 2; }, refresh)); + } + + if (V.incubatorPregAdaptationSetting === 1) { + row.append(`Pregnancy adaptation system online: Females only. `); + } else { + linkArray.push(makeLink(`Females`, () => { V.incubatorPregAdaptationSetting = 1; }, refresh)); + } + + if (V.incubatorPregAdaptationSetting === 0) { + row.append(`Pregnancy adaptation system offline. `); + } else { + linkArray.push(makeLink(`Disable`, () => { V.incubatorPregAdaptationSetting = 0; }, refresh)); + } + row.append(App.UI.DOM.generateLinksStrip(linkArray)); + } + if (V.incubatorUpgradePregAdaptation === 1 && V.incubatorPregAdaptationSetting > 0) { + // Should be visible only after incubatorUpgradeReproduction is installed and turned on + p.append(row); + row = document.createElement("div"); + linkArray = []; + if (V.incubatorPregAdaptationPower === 1) { + row.append(`Pregnancy adaptation programmed to advanced procedures. Up to triplet pregnancy should be safe for the subjects.`); + } else { + linkArray.push(makeLink(`Advanced`, () => { V.incubatorPregAdaptationSetting = 1; }, refresh)); + } + + if (V.incubatorPregAdaptationPower === 2) { + row.append(`Pregnancy adaptation programmed to intensive procedures. Up to octuplet pregnancy should be possible for the subjects. Warning! Side effects may occur to health and mental condition.`); + } else { + linkArray.push(makeLink(`Intensive`, () => { V.incubatorPregAdaptationSetting = 2; }, refresh)); + } + + if (V.incubatorPregAdaptationPower === 3) { + row.append(`Pregnancy adaptation programmed to extreme procedures. Normally unsustainable pregnancies may be possible for some subjects. Actual capacity will vary with genetic and other individual conditions. WARNING! Extreme side effects may occur to health and mental condition!`); + } else { + linkArray.push(makeLink(`Extreme`, () => { V.incubatorPregAdaptationSetting = 3; }, refresh)); + } + + if (V.incubatorPregAdaptationPower === 0) { + row.append(`Pregnancy adaptation programmed to standard procedures. Normal pregnancy should be safe for subjects.`); + } else { + linkArray.push(makeLink(`Standard`, () => { V.incubatorPregAdaptationSetting = 0; }, refresh)); + } + row.append(App.UI.DOM.generateLinksStrip(linkArray)); + App.UI.DOM.appendNewElement("span", row, `Due to the high complexity and steep risks of the procedure, settings will not be changed on tanks in use.`, "note"); + } + } else { + cost = Math.trunc(50000 * V.upgradeMultiplierArcology); + row.append(`There are no systems in place to control a growing child's reproductive capability. `); + row.append( + App.UI.DOM.link( + `Upgrade the growth tanks with hormone monitoring systems`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeReproduction = 1; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } + + p.append(row); + el.append(p); + + p = document.createElement("p"); + row = document.createElement("div"); + + if (V.incubatorUpgradeOrgans === 1) { + row.append(`Surgical tools have been added to the tank to be able to extract tissue samples from the occupant.`); + } else if (V.organFarmUpgrade >= 1) { + cost = Math.trunc(10000 * V.upgradeMultiplierArcology); + row.append(`The tanks lack the ability to extract tissue samples to be used by the organ fabricator. `); + row.append( + App.UI.DOM.link( + `Upgrade the growth tanks with surgical extraction tools`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeOrgans = 1; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } else { + row.append(`The tanks lack the ability to extract tissue samples and the dispensary lacks the ability to make use of them to fabricate organs.`); + } + + el.append(row); + + p = document.createElement("p"); + row = document.createElement("div"); + + if (V.incubatorUpgradeGrowthStims === 1) { + row.append(`Advanced monitoring and stimulant injection systems have been installed in the tanks to monitor and maintain a developing child's height.`); + row = document.createElement("div"); + linkArray = []; + if (V.incubatorGrowthStimsSetting === 2) { + row.append(`Children are injected with higher than recommended doses of stimulants; exceeding expected final height is likely. `); + } else { + linkArray.push(makeLink(`Overload`, () => { V.incubatorGrowthStimsSetting = 2; }, refresh)); + } + + if (V.incubatorGrowthStimsSetting === 1) { + row.append(`Children are injected with the recommended dosage of stimulants; they will grow to their full expected height. `); + } else { + linkArray.push(makeLink(`Limit`, () => { V.incubatorGrowthStimsSetting = 1; }, refresh)); + } + + if (V.incubatorGrowthStimsSetting === 0) { + row.append(`Growth stimulant injection systems are offline; children will develop normally. `); + } else { + linkArray.push(makeLink(`Disable`, () => { V.incubatorGrowthStimsSetting = 0; }, refresh)); + } + row.append(App.UI.DOM.generateLinksStrip(linkArray)); + } else if (V.growthStim === 1) { + cost = Math.trunc(20000 * V.upgradeMultiplierArcology); + row.append(`There are no systems in place to control a growing child's height. `); + row.append( + App.UI.DOM.link( + `Upgrade the growth tanks with stimulants injection systems`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradeOrgans = 1; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, `Costs ${cashFormat(cost)} and will increase upkeep costs`, "note"); + } else { + row.append(`There are no systems in place to control a growing child's height and you lack the capability to fabricate growth stimulants.`); + } + p.append(row); + el.append(p); + + if (V.minimumSlaveAge <= 6 && (V.arcologies[0].FSRepopulationFocus >= 60 || V.BlackmarketPregAdaptation === 1)) { + /* Main prerequisite - stable repopulation FS OR documentation purchased from black market. And age gate. */ + p = document.createElement("p"); + row = document.createElement("div"); + if (V.incubatorUpgradePregAdaptation === 1) { + row.append(`The incubators have been upgraded with special set of manipulators, probes, nozzles and syringes coupled together with specific programs to take advantage of the accelerated growth to heighten viable reproductive capacity. These include injections of specialized serums and mechanical manipulation of the reproductive system and associated tissues, organs, muscles and bones.`); + } else { + row.append(`The highly controlled environment inside incubation tube coupled with the greatly accelerated growth process is the perfect opportunity to push the boundaries of a body's ability to sustain pregnancy. This will include injections of specialized serums and mechanical manipulation of their reproductive system through a special set of manipulators, probes, nozzles and syringes supervised by a powerful monitoring program. Costly to maintain.`); + p.append(row); + + row = document.createElement("div"); + if (V.incubatorUpgradeReproduction < 1) { + /* Now with reports - what is lacking for construction */ + row.append(`${_incubatorNameCaps} lacks advanced monitoring and hormone injection systems. Construction not possible.`); + } else if (V.incubatorUpgradeOrgans < 1) { + row.append(`${_incubatorNameCaps} lacks the ability to extract tissue samples. Construction not possible.`); + } else if (V.dispensaryUpgrade < 1) { + row.append(`${_incubatorNameCaps} lacks a connection to an advanced pharmaceutical fabricator.Cutting - edge targeted serums production needed as integral part. Construction not possible.`); + } else if (V.bellyImplants < 1) { + row.append(`${_incubatorNameCaps} lacks a connection with an implant manufacturing to construct fillable abdominal implants to simulate expansion. Construction not possible.`); + } else if (V.incubatorUpgradeGrowthStims < 1) { + row.append(`${_incubatorNameCaps} lacks advanced monitoring and stimulant injection systems. Construction not possible.`); + } else { + cost = Math.trunc(2000000 * V.upgradeMultiplierArcology); + row.append( + choice( + `Manufacture and install this subsystem`, + () => { + cashX(forceNeg(cost), "capEx"); + V.incubatorUpgradePregAdaptation = 1; + refresh(); + }, + "", + `Costs ${cashFormat(cost)} and will increase upkeep costs` + ) + ); + } + } + p.append(row); + el.append(p); + } + + p = document.createElement("p"); + row = document.createElement("div"); + if (V.incubatorImprintSetting === "terror") { + row.append(`The imprinting system is currently focused on making them devoted but fearful of you. The imprinting cycle is locked upon incubation start. `); + App.UI.DOM.appendNewElement("span", row, `Only affects new infants`, "note"); + if (V.bodyswapAnnounced === 1) { + row.append( + choice( + `Switch the system to focus on preparation for body-swapping`, + () => { + V.incubatorImprintSetting = "husk"; + } + ) + ); + } + row.append( + choice( + `Switch the system to focus on attachment`, + () => { + V.incubatorImprintSetting = "trust"; + } + ) + ); + } else if (V.incubatorImprintSetting === "trust") { + row.append(`The imprinting system is currently focused on making them devoted and trusting of you. The imprinting cycle is locked upon incubation start.`); + if (V.bodyswapAnnounced === 1) { + row.append( + choice( + `Switch the system to focus preparation for body-swapping`, + () => { + V.incubatorImprintSetting = "husk"; + } + ) + ); + } + row.append( + choice( + `Switch the system to focus on dependence`, + () => { + V.incubatorImprintSetting = "terror"; + } + ) + ); + } else { + row.append(`The imprinting system is currently focused on producing complete vegetables ready to be used as hosts for body swapping. The imprinting cycle is locked upon incubation start.`); + row.append( + choice( + `Switch the system to focus on dependence`, + () => { + V.incubatorImprintSetting = "terror"; + } + ) + ); + row.append( + choice( + `Switch the system to focus on attachment`, + () => { + V.incubatorImprintSetting = "trust"; + } + ) + ); + } + p.append(row); + el.append(p); + + row = document.createElement("div"); + row.append(`Rename ${V.incubatorName}: `); + row.append( + App.UI.DOM.makeTextBox( + V.incubatorName, + (v) => { + V.incubatorName = v; + refresh(); + } + ) + ); + App.UI.DOM.appendNewElement("span", row, ` Use a noun or similar short phrase`, "note"); + el.append(row); + + return el; + + function refresh() { + jQuery("#content-tank-settings").empty().append(tankSettings()); + jQuery("#content-intro").empty().append(intro()); + } + } + + function release() { + if (V.readySlaves === 1) { + if (V.incubatorBulkRelease === 1) { + V.newSlavePool = []; + for (let _inc = 0; _inc < V.tanks.length; _inc++) { + if (V.tanks[_inc].growTime <= 0) { + V.incubatorOldID = V.tanks[_inc].ID; + /* single slave case */ + const _tempObject = {object: V.tanks[_inc], ID: V.tanks[_inc].ID}; + V.newSlavePool.push(clone(_tempObject)); + V.tanks.splice(_inc, 1); + _inc--; + } + } + if (V.newSlavePool.length === 1) { + V.readySlave = V.newSlavePool[0].object; + V.newSlavePool = 0; + return App.UI.DOM.passageLink(`Release ready tank`, "Incubator Retrieval Workaround"); + } + } else { + for (let _inc = 0; _inc < incubatorSlaves; _inc++) { + if (V.tanks[_inc].growTime <= 0) { + V.incubatorOldID = V.tanks[_inc].ID; + V.readySlave = V.tanks[_inc]; + V.tanks.splice(_inc, 1); + break; + } + } + } + return App.UI.DOM.passageLink(`Release ready tanks`, "Incubator Retrieval Workaround"); + } + return new DocumentFragment(); + } + + /** + * + * @param {string} title + * @param {function():void} func + * @param {function():void} refresh + */ + function makeLink(title, func, refresh) { + return App.UI.DOM.link( + title, + () => { + func(); + refresh(); + } + ); + } + /** + * + * @param {string} title + * @param {function():void} func + * @param {string} [passage=""] + * @param {string} [note] + * @returns {HTMLElement} + */ + function choice(title, func, passage = "", note = "") { + const div = document.createElement("div"); + div.classList.add("choices"); + div.append( + App.UI.DOM.link( + title, + func, + [], + passage + ) + ); + if (note) { + App.UI.DOM.appendNewElement("span", div, ` ${note}`, "note"); + } + return div; + } + + function appendRow(node, text) { + return App.UI.DOM.appendNewElement("div", node, text); + } + + /** + * + * @param {string} id + * @param {HTMLElement} element + * @returns {HTMLElement} + */ + function makeSpanIded(id, element) { + const span = document.createElement("span"); + span.id = id; + span.append(element); + return span; + } +}; diff --git a/src/pregmod/incubatorRetrievalWorkaround.tw b/src/facilities/incubator/incubatorRetrievalWorkaround.tw similarity index 97% rename from src/pregmod/incubatorRetrievalWorkaround.tw rename to src/facilities/incubator/incubatorRetrievalWorkaround.tw index 22cbde23a388604272f789bb45af0ecae61e302d..cb888d4f58ab71df898d6f576e4ad3c6c794465a 100644 --- a/src/pregmod/incubatorRetrievalWorkaround.tw +++ b/src/facilities/incubator/incubatorRetrievalWorkaround.tw @@ -1,15 +1,16 @@ :: Incubator Retrieval Workaround [nobr] -<<set $nextLink = "AS Dump", $returnTo = "Main">> +<<set $returnTo = "Main">> <<if $readySlave != 0>> + <<set $nextLink = "AS Dump">> + <<run App.Utils.updateUserButton()>> <<setLocalPronouns $readySlave>> $readySlave.slaveName has been discharged from $incubatorName and is ready for $his first ever inspection. <br><br> <<set $activeSlave = $readySlave>> - <<set $incubatorSlaves-->> <<includeDOM App.Desc.longSlave(V.activeSlave)>> <<if $readySlave.tankBaby != 3>> <<if $incubatorOrgans.length > 0>> @@ -46,7 +47,6 @@ <<for _irw = 0; _irw < $newSlavePool.length; _irw++>> <br><br> - <<set $incubatorSlaves-->> <<set _newSlave = $newSlavePool[_irw].object>> Name: <<= SlaveFullName(_newSlave)>> diff --git a/src/facilities/incubator/incubatorUtils.js b/src/facilities/incubator/incubatorUtils.js index 2765e9e43e2f09f77072fb68dd89c0ed88ff8c82..850b0d40a9c7a91e532aabc1462bf0d1d5f6f567 100644 --- a/src/facilities/incubator/incubatorUtils.js +++ b/src/facilities/incubator/incubatorUtils.js @@ -17,5 +17,4 @@ App.Facilities.Incubator.newChild = function(child) { } child.incubatorPregAdaptationInWeek = (fullAdapt - child.pregAdaptation) / child.growTime; V.tanks.push(child); - V.incubatorSlaves++; }; diff --git a/src/js/quickListJS.js b/src/js/quickListJS.js index ebc5d09ca57774aeebae92fcf0055b7e08769427..ba8b35020f5167f628c663b1e0b94a2a3fe5d8be 100644 --- a/src/js/quickListJS.js +++ b/src/js/quickListJS.js @@ -46,45 +46,6 @@ App.UI.quickBtnScrollToHandler = function() { }, $speed); }; -globalThis.sortIncubatorPossiblesByName = function() { - let $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach(); - $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-name'); - $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); -}; - -globalThis.sortIncubatorPossiblesByPregnancyWeek = function() { - let $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach(); - $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-preg-week'); - $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); -}; - -globalThis.sortIncubatorPossiblesByPregnancyCount = function() { - let $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach(); - $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-preg-count'); - $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); -}; - -globalThis.sortIncubatorPossiblesByReservedSpots = function() { - let $sortedIncubatorPossibles = $('#qlIncubator div.possible').detach(); - $sortedIncubatorPossibles = sortDomObjects($sortedIncubatorPossibles, 'data-reserved-spots'); - $($sortedIncubatorPossibles).appendTo($('#qlIncubator')); -}; - -globalThis.sortIncubatorPossiblesByPreviousSort = function() { - let sort = V.sortIncubatorList; - if (sort !== 'unsorted') { - if (sort === 'Name') { - sortIncubatorPossiblesByName(); - } else if (sort === 'Reserved Incubator Spots') { - sortIncubatorPossiblesByReservedSpots(); - } else if (sort === 'Pregnancy Week') { - sortIncubatorPossiblesByPregnancyWeek(); - } else if (sort === 'Number of Children') { - sortIncubatorPossiblesByPregnancyCount(); - } - } -}; - globalThis.sortNurseryPossiblesByName = function() { let $sortedNurseryPossibles = $('#ql-nursery div.possible').detach(); $sortedNurseryPossibles = sortDomObjects($sortedNurseryPossibles, 'data-name'); diff --git a/src/pregmod/analyzePlayerPregnancy.tw b/src/pregmod/analyzePlayerPregnancy.tw index e0bde45dbb69d4e565bb85133414a1fd381a0c03..fc97a1ffaecb155367b853a2ac8617a399a47252 100644 --- a/src/pregmod/analyzePlayerPregnancy.tw +++ b/src/pregmod/analyzePlayerPregnancy.tw @@ -7,7 +7,7 @@ <</if>> <<set $nextButton = "Continue", $nextLink = $storedLink>> -<<set _WL = $PC.womb.length, _incubatorReservations = WombReserveCount($PC, "incubator"), _nurseryReservations = WombReserveCount($PC, "nursery"), _freeTanks = $incubator - $incubatorSlaves, _freeCribs = $nursery - $cribs.length>> +<<set _WL = $PC.womb.length, _incubatorReservations = WombReserveCount($PC, "incubator"), _nurseryReservations = WombReserveCount($PC, "nursery"), _freeTanks = $incubator - $tanks.length, _freeCribs = $nursery - $cribs.length>> <<if _WL == 0>> <<goto "Manage Personal Affairs">> diff --git a/src/pregmod/analyzePregnancy.tw b/src/pregmod/analyzePregnancy.tw index d0c704364e161cb4bdc4e2a76e0feb063b63ed30..10162e134dc49ff9d4508ccb3f72ff9d6d157b47 100644 --- a/src/pregmod/analyzePregnancy.tw +++ b/src/pregmod/analyzePregnancy.tw @@ -8,7 +8,7 @@ <<set $nextButton = "Continue", $nextLink = $storedLink>> <<run App.Utils.setLocalPronouns(getSlave($AS))>> -<<set _WL = getSlave($AS).womb.length, _incubatorReservations = WombReserveCount(getSlave($AS), "incubator"), _nurseryReservations = WombReserveCount(getSlave($AS), "nursery"), _freeTanks = $incubator - $incubatorSlaves, _freeCribs = $nursery - $cribs.length>> +<<set _WL = getSlave($AS).womb.length, _incubatorReservations = WombReserveCount(getSlave($AS), "incubator"), _nurseryReservations = WombReserveCount(getSlave($AS), "nursery"), _freeTanks = $incubator - $tanks.length, _freeCribs = $nursery - $cribs.length>> <p class="scene-intro"> <<= getSlave($AS).slaveName>> is <<if getSlave($AS).devotion < 20>>restrained<<else>>comfortably reclined<</if>> with $his stomach prepped for examination. $He shudders slightly at the cold touch of the sensor against $his skin. diff --git a/src/pregmod/artificialInsemination.tw b/src/pregmod/artificialInsemination.tw index 60a5deba4c6ebaf830cffa0a5445ebd37b806816..4efe97259c34afb55af62eac7c728508e2b897c8 100644 --- a/src/pregmod/artificialInsemination.tw +++ b/src/pregmod/artificialInsemination.tw @@ -23,7 +23,7 @@ __Select an eligible slave to serve as the semen donatrix:__ <br>//You have no slaves with potent sperm.// <</if>> -<<if $incubatorSlaves > 0 && $incubatorReproductionSetting == 2>> +<<if $tanks.length > 0 && $incubatorReproductionSetting == 2>> <br><br> __Incubator settings are resulting in large-scale fluid secretion. Select an eligible incubatee to milk for semen:__ diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw deleted file mode 100644 index f3e6af055fac05ba01757754af5bd1d6ef4c5ff6..0000000000000000000000000000000000000000 --- a/src/pregmod/incubator.tw +++ /dev/null @@ -1,797 +0,0 @@ -:: Incubator [nobr jump-to-safe jump-from-safe] - -<<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Incubator", $encyclopedia = "The Incubation Facility">> -<<set $targetAge = Number($targetAge) || $minimumSlaveAge>> -<<set $targetAge = Math.clamp($targetAge, $minimumSlaveAge, 42)>> - -<<if $incubatorImprintSetting == 0>><<set $incubatorImprintSetting = "trust">><</if>> - -<<set $readySlaves = 0, $readySlave = 0, $incubatorSlaves = $tanks.length, _freeTanks = $incubator - $incubatorSlaves, _SL = $slaves.length, _eligibility = 0, $reservedChildren = FetusGlobalReserveCount("incubator"), $reservedChildrenNursery = FetusGlobalReserveCount("nursery")>> - -<br><br> -<<set _incubatorNameCaps = capFirstChar($incubatorName)>> -_incubatorNameCaps is a clean, cold hall designed to be lined with tanks and their connected monitoring systems. - -<<if $incubatorSlaves > 2>> - It's well used. The hum of active tanks fill the air. -<<elseif $incubatorSlaves > 0>> - It's barely used; most of the tanks lie dormant. -<<else>> - It's empty and quiet. - <div class="choices" style="font-style:normal"> - [[Decommission the incubator|Main][$incubator = 0, $incubatorUpgradeSpeed = 5, $incubatorUpgradeWeight = 0, $incubatorUpgradeMuscles = 0, $incubatorUpgradeReproduction = 0, $incubatorUpgradeGrowthStims = 0, $incubatorWeightSetting = 0, $incubatorMusclesSetting = 0, $incubatorReproductionSetting = 0, $incubatorGrowthStimsSetting = 0, $tanks = []]] - </div> -<</if>> - -<br>It can support $incubator child<<if $incubator != 1>>ren<</if>>. There <<if $incubatorSlaves == 1>>is<<else>>are<</if>> currently $incubatorSlaves tank<<if $incubatorSlaves != 1>>s<</if>> in use in $incubatorName. -[[Add another incubation tank|Incubator][cashX(forceNeg(Math.trunc(60000*$upgradeMultiplierArcology)), "capEx"), $incubator += 1]] //Costs <<print cashFormat(Math.trunc(60000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<<if _freeTanks == 0>> - All of the tanks are currently occupied by growing children. -<<elseif $incubator > 1 && $reservedChildren < _freeTanks>> - [[Remove an incubation tank|Incubator][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $incubator -= 1]] //Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>> and will reduce upkeep costs// -<</if>> - -<br><br> -Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $incubator tanks, <<print _freeTanks>> <<if _freeTanks == 1>>is<<else>>are<</if>> unoccupied. Of those, $reservedChildren <<if $reservedChildren == 1>>tank is<<else>>tanks are<</if>> reserved. -/* -** With hundreds of slaves, navigating the Incubator room was giving me as much of a headache as other lists. -** So, I borrowed the sorting list and dropped a few options here. -*/ -<<if (0 < _SL)>> - <<set $sortIncubatorList = $sortIncubatorList || 'Unsorted'>> - <br>//Sorting:// ''<span id="qlIncubatorSort">$sortIncubatorList</span>.'' - <<link "Sort by Name">> - <<set $sortIncubatorList = 'Name'>> - <<replace "#qlIncubatorSort">>$sortIncubatorList<</replace>> - <<script>> - sortIncubatorPossiblesByName(); - <</script>> - <</link>> | - <<link "Sort by Reserved Incubator Spots">> - <<set $sortIncubatorList = 'Reserved Incubator Spots'>> - <<replace "#qlIncubatorSort">>$sortIncubatorList<</replace>> - <<script>> - sortIncubatorPossiblesByReservedSpots(); - <</script>> - <</link>> | - <<link "Sort by Pregnancy Week">> - <<set $sortIncubatorList = 'Pregnancy Week'>> - <<replace "#qlIncubatorSort">>$sortIncubatorList<</replace>> - <<script>> - sortIncubatorPossiblesByPregnancyWeek(); - <</script>> - <</link>> | - <<link "Sort by Number of Children">> - <<set $sortIncubatorList = 'Number of Children'>> - <<replace "#qlIncubatorSort">>$sortIncubatorList<</replace>> - <<script>> - sortIncubatorPossiblesByPregnancyCount(); - <</script>> - <</link>> - <br> -<</if>> -<div id="qlIncubator"> -<<for _u = 0; _u < _SL; _u++>> - <<setLocalPronouns $slaves[_u]>> - <<if $slaves[_u].preg > 0 && $slaves[_u].broodmother == 0 && $slaves[_u].pregKnown == 1 && $slaves[_u].eggType == "human">> - <<if ($slaves[_u].assignment == "work in the dairy" && $dairyPregSetting > 0) || $activeSlave.assignment == "be your agent" || $activeSlave.assignment == "live with your agent">> - <<else>> - <<set _slaveId = "slave-" + $slaves[_u].ID>> - <<set _WL = $slaves[_u].womb.length>> - <<set _reservedIncubator = WombReserveCount($slaves[_u], "incubator")>> - <<set _reservedNursery = WombReserveCount($slaves[_u], "nursery")>> - <<set _pregWeek = $slaves[_u].pregWeek>> - <<set _slaveName = SlaveFullName($slaves[_u])>> - <div class="possible" @id="_slaveId" @data-preg-count="_WL" @data-reserved-spots="_reservedIncubator" @data-preg-week="_pregWeek" @data-name="_slaveName"> - <<= App.UI.slaveDescriptionDialog($slaves[_u])>> is $slaves[_u].pregWeek week<<if $slaves[_u].pregWeek > 1>>s<</if>> pregnant with - <<if $slaves[_u].pregSource == 0 || $slaves[_u].preg <= 5>>someone's<<if $slaves[_u].preg <= 5>>, though it is too early to tell whose,<</if>> - <<elseif $slaves[_u].pregSource == -1>>your - <<elseif $slaves[_u].pregSource == -2>>a citizen's - <<elseif $slaves[_u].pregSource == -3>>your Master's - <<elseif $slaves[_u].pregSource == -4>>another arcology owner's - <<elseif $slaves[_u].pregSource == -5>>your client's - <<elseif $slaves[_u].pregSource == -6>>the Societal Elite's - <<elseif $slaves[_u].pregSource == -7>>the lab's - <<elseif $slaves[_u].pregSource == -9>>the Futanari Sisters' - <<else>> - <<set _t = $slaveIndices[$slaves[_u].pregSource]>> - <<if def _t>> - <<print $slaves[_t].slaveName>>'s - <</if>> - <</if>> - <<if _WL > 1>>_WL babies<<else>>baby<</if>>. - <<if _reservedIncubator > 0>> - <<set _childrenReserved = 1>> - <<if _WL == 1>> - $His child will be placed in $incubatorName. - <<elseif _reservedIncubator < _WL>> - _reservedIncubator of $his children will be placed in $incubatorName. - <<elseif _WL == 2>> - Both of $his children will be placed in $incubatorName. - <<else>> - All _reservedIncubator of $his children will be placed in $incubatorName. - <</if>> - <<if (_reservedIncubator + _reservedNursery < _WL) && ($reservedChildren < _freeTanks)>> - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze Pregnancy][$i = " + _u + "; $AS = $slaves[$i].ID]] | ">> - <</if>> - <<print "[[Keep another child|Incubator][WombAddToGenericReserve($slaves[" + _u + "], 'incubator', 1)]]">> - <<if _reservedIncubator > 0>> - | <<print "[[Keep one less child|Incubator][WombCleanGenericReserve($slaves[" + _u + "], 'incubator', 1)]]">> - <</if>> - <<if _reservedIncubator > 1>> - | <<print "[[Keep none of " + $his + " children|Incubator][WombCleanGenericReserve($slaves[" + _u + "], 'incubator', 9999)]]">> - <</if>> - <<if ($reservedChildren + _WL - _reservedIncubator) <= _freeTanks>> - | <<print "[[Keep the rest of " + $his + " children|Incubator][WombAddToGenericReserve($slaves[" + _u + "], 'incubator', 9999)]]">> - <</if>> - <<elseif (_reservedIncubator == _WL) || ($reservedChildren == _freeTanks) || (_reservedIncubator + _reservedNursery == _WL)>> - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze Pregnancy][$i = " + _u + "; $AS = $slaves[$i].ID]] | ">> - <</if>> - <<print "[[Keep one less child|Incubator][WombCleanGenericReserve($slaves[" + _u + "], 'incubator', 1)]]">> - <<if _reservedIncubator > 1>> - | <<print "[[Keep none of " + $his + " children|Incubator][WombCleanGenericReserve($slaves[" + _u + "], 'incubator', 9999)]]">> - <</if>> - <</if>> - <<elseif ($reservedChildren < _freeTanks)>> - <<if _WL - _reservedNursery == 0>> - //$His children are already reserved for $nurseryName// - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze Pregnancy][$i = " + _u + "; $AS = $slaves[$i].ID]] | ">> - <</if>> - <<print "[[Keep " + $his + " " + ((_WL > 1) ? "children" : "child") + " here instead|Incubator][WombChangeReserveType($slaves[" + _u + "], 'nursery', 'incubator')]]">> - <<else>> - You have <<if _freeTanks == 1>>an<</if>> @@.lime;available aging tank<<if _freeTanks > 1>>s<</if>>.@@ - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze Pregnancy][$i = " + _u + "; $AS = $slaves[$i].ID]] | ">> - <</if>> - <<print "[[Keep "+ ((_WL > 1) ? "a" : "the") +" child|Incubator][WombAddToGenericReserve($slaves[" + _u + "], 'incubator', 1)]]">> - <<if (_WL > 1) && ($reservedChildren + _WL - _reservedIncubator) <= _freeTanks>> - | <<print "[[Keep all of " + $his + " children|Incubator][WombAddToGenericReserve($slaves[" + _u + "], 'incubator', 9999)]]">> - <</if>> - <</if>> - <<elseif $reservedChildren == _freeTanks>> - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze Pregnancy][$i = " + _u + "; $AS = $slaves[$i].ID]] | ">> - <</if>> - You have @@.red;no room for $his offspring.@@ - <</if>> - <<set _eligibility = 1>> - </div> - <</if>> - <</if>> -<</for>> -</div> -<<script>> - $('div#qlIncubator').ready(sortIncubatorPossiblesByPreviousSort); -<</script>> -<<if _eligibility == 0>> - <br> - //You have no pregnant slaves bearing eligible children.// -<</if>> -<<if $PC.pregKnown == 1 && ($arcologies[0].FSRestart == "unset" || $eugenicsFullControl == 1 || ($PC.pregSource != -1 && $PC.pregSource != -6))>> - <<set _WL = $PC.womb.length>> - <<set _reservedIncubator = WombReserveCount($PC, "incubator")>> - <<set _reservedNursery = WombReserveCount($PC, "nursery")>> - <br>''@@.pink;You're $PC.pregWeek week<<if $PC.pregWeek > 1>>s<</if>> pregnant@@'' and going to have - <<if _WL == 1>> - a baby. - <<else>> - <<print pregNumberName(_WL, 2)>>. - <</if>> - <<if (_reservedIncubator > 0)>> - <<set _childrenReserved = 1>> - <<if _WL == 1>> - Your child will be placed in $incubatorName. - <<elseif _reservedIncubator < _WL>> - _reservedIncubator of your children will be placed in $incubatorName. - <<elseif _WL == 2>> - Both of your children will be placed in $incubatorName. - <<else>> - All _reservedIncubator of your children will be placed in $incubatorName. - <</if>> - <<if (_reservedIncubator < _WL) && ($reservedChildren < _freeTanks) && (_reservedIncubator - _reservedNursery > 0)>> - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze PC Pregnancy]] | ">> - <</if>> - <<print "[[Keep another child|Incubator][WombAddToGenericReserve($PC, 'incubator', 1)]]">> - <<if _reservedIncubator > 0>> - | <<print "[[Keep one less child|Incubator][WombCleanGenericReserve($PC, 'incubator', 1)]]">> - <</if>> - <<if _reservedIncubator > 1>> - | <<print "[[Keep none of your children|Incubator][WombCleanGenericReserve($PC, 'incubator', 9999)]]">> - <</if>> - <<if ($reservedChildren + _WL - _reservedIncubator) <= _freeTanks>> - | <<print "[[Keep the rest of your children|Incubator][WombAddToGenericReserve($PC, 'incubator', 9999)]]">> - <</if>> - <<elseif (_reservedIncubator == _WL) || ($reservedChildren == _freeTanks) || (_reservedIncubator - _reservedNursery >= 0)>> - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze PC Pregnancy]] | ">> - <</if>> - <<print "[[Keep one less child|Incubator][_reservedIncubator -= 1, $reservedChildren -= 1]]">> - <<if _reservedIncubator > 1>> - | <<print "[[Keep none of your children|Incubator][WombCleanGenericReserve($PC, 'incubator', 9999)]]">> - <</if>> - <</if>> - <<elseif $reservedChildren < _freeTanks>> - <<if _WL - _reservedNursery == 0>> - //Your child<<if _WL > 0>>ren are<<else>>is<</if>> already reserved for $nurseryName// - <<print "[[Keep your" + ((_WL > 1) ? "children" : "child") + " here instead|Incubator][WombChangeReserveType($PC, 'nursery', 'incubator')]]">> - <<else>> - You have <<if _freeTanks == 1>>an<</if>> @@.lime;available aging tank<<if _freeTanks > 1>>s<</if>>.@@ - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze PC Pregnancy]] | ">> - <</if>> - <<print "[[Keep " + ((_WL > 1) ? "a" : "your") +" child|Incubator][WombAddToGenericReserve($PC, 'incubator', 1)]]">> - <<if (_WL > 1) && ($reservedChildren + _WL - _reservedIncubator) <= _freeTanks>> - | [[Keep all of your children|Incubator][WombAddToGenericReserve($PC, 'incubator', 9999)]] - <</if>> - <</if>> - <<elseif $reservedChildren == _freeTanks>> - <br> - <<if $pregnancyMonitoringUpgrade == 1>> - <<print "[[Inspect pregnancy|Analyze PC Pregnancy]] | ">> - <</if>> - You have @@.red;no room for your offspring.@@ - <</if>> -<</if>> -<<if $reservedChildren != 0 || _childrenReserved == 1>> /* the oops I made it go negative somehow button */ - <br> - <<link "Clear all reserved children">> - <<for _u = 0; _u < _SL; _u++>> - <<if WombReserveCount($slaves[_u], "incubator") != 0>> - <<set WombCleanGenericReserve($slaves[_u], 'incubator', 9999)>> - <</if>> - <</for>> - <<set WombCleanGenericReserve($PC, 'incubator', 9999)>> - <<goto "Incubator">> - <</link>> -<</if>> - -<br><br> -Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimum Legal Age|Incubator][$targetAge = $minimumSlaveAge]] | [[Average Age of Fertility|Incubator][$targetAge = $fertilityAge]] | [[Average Age of Potency|Incubator][$targetAge = $potencyAge]] | [[Legal Adulthood|Incubator][$targetAge = 18]] -//Setting will not be applied to tanks in use.// - -<br> -<<if $incubatorBulkRelease == 1>> - Released children will be handled in bulk and not receive personal attention. - [[Individual release|Incubator][$incubatorBulkRelease = 0]] -<<else>> - Released children will be seen to personally. - [[Bulk release|Incubator][$incubatorBulkRelease = 1]] -<</if>> - -<br> -<<if $incubatorUpgradeSpeed == 52>> - It has been upgraded with perfected growth accelerants; children grow at the rate of 1 week to 1 year. -<<elseif $incubatorUpgradeSpeed == 18>> - It has been upgraded with advanced experimental growth accelerants; children grow at the rate of 3 weeks to 1 year. [[Fund speculative research into maximizing growth rate|Incubator][cashX(forceNeg(Math.trunc(500000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeSpeed = 52]] //Costs <<print cashFormat(Math.trunc(500000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<<elseif $incubatorUpgradeSpeed == 9>> - It has been upgraded with advanced growth accelerants; children grow at the rate of 6 weeks to 1 year. [[Fund research into increasing growth rate even further|Incubator][cashX(forceNeg(Math.trunc(75000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeSpeed = 18]] //Costs <<print cashFormat(Math.trunc(75000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<<elseif $incubatorUpgradeSpeed == 6>> - It has been upgraded with growth accelerants; children grow at the rate of 9 weeks to 1 year. [[Further upgrade the incubators with specialized stem cells to speed growth|Incubator][cashX(forceNeg(Math.trunc(30000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeSpeed = 9]] //Costs <<print cashFormat(Math.trunc(30000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<<elseif $incubatorUpgradeSpeed == 5>> - The incubation tanks are basic; children grow at the rate of 12 weeks to 1 year. [[Upgrade the incubators with growth accelerating drugs|Incubator][cashX(forceNeg(Math.trunc(30000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeSpeed = 6]] //Costs <<print cashFormat(Math.trunc(30000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<</if>> - -<p> -<<if $incubatorUpgradeWeight == 1>> - Advanced caloric monitoring systems have been installed in the tanks to monitor and maintain a developing child's weight. -<<else>> - There are no systems in place to control a growing child's weight; they will likely come out emaciated from the rapid growth. [[Upgrade the growth tanks with weight monitoring systems|Incubator][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeWeight = 1]] //Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<</if>> -</p> - -<p> -<<if $incubatorUpgradeMuscles == 1>> - Advanced monitoring and steroid injection systems have been installed in the tanks to monitor and maintain a developing child's musculature. -<<else>> - There are no systems in place to control a growing child's musculature; they will likely come out frail and weak from the rapid growth. [[Upgrade the growth tanks with muscle monitoring systems|Incubator][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeMuscles = 1]] //Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<</if>> -</p> - -<p> -<<if $incubatorUpgradeReproduction == 1>> - Advanced monitoring and hormone injection systems have been installed in the tanks to influence a developing child's reproductive organs. -<<else>> - There are no systems in place to control a growing child's reproductive capability. [[Upgrade the growth tanks with hormone monitoring systems|Incubator][cashX(forceNeg(Math.trunc(50000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeReproduction = 1]] //Costs <<print cashFormat(Math.trunc(50000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<</if>> -</p> - -<p> -<<if $incubatorUpgradeOrgans == 1>> - Surgical tools have been added to the tank to be able to extract tissue samples from the occupant. -<<elseif $organFarmUpgrade >= 1>> - The tanks lack the ability to extract tissue samples to be used by the organ fabricator. [[Upgrade the growth tanks with surgical extraction tools|Incubator][cashX(forceNeg(Math.trunc(10000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeOrgans = 1]] //Costs <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<<else>> - The tanks lack the ability to extract tissue samples and the dispensary lacks the ability to make use of them to fabricate organs. -<</if>> -</p> - -<p> -<<if $incubatorUpgradeGrowthStims == 1>> - Advanced monitoring and stimulant injection systems have been installed in the tanks to monitor and maintain a developing child's height. -<<elseif $growthStim == 1>> - There are no systems in place to control a growing child's height. [[Upgrade the growth tanks with stimulants injection systems|Incubator][cashX(forceNeg(Math.trunc(20000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradeGrowthStims = 1]] //Costs <<print cashFormat(Math.trunc(20000*$upgradeMultiplierArcology))>> and will increase upkeep costs// -<<else>> - There are no systems in place to control a growing child's height and you lack the capability to fabricate growth stimulants. -<</if>> -</p> - -<<if $minimumSlaveAge <= 6 && ($arcologies[0].FSRepopulationFocus >=60 || $BlackmarketPregAdaptation == 1) >> /*Main prerequisite - stable repopulation FS OR documentation purchased from black market. And age gate. */ - <p> - <<if $incubatorUpgradePregAdaptation == 1>> - The incubators have been upgraded with special set of manipulators, probes, nozzles and syringes coupled together with specific programs to take advantage of the accelerated growth to heighten viable reproductive capacity. These include injections of specialized serums and mechanical manipulation of the reproductive system and associated tissues, organs, muscles and bones. - <<else>> - The highly controlled environment inside incubation tube coupled with the greatly accelerated growth process is the perfect opportunity to push the boundaries of a body's ability to sustain pregnancy. This will include injections of specialized serums and mechanical manipulation of their reproductive system through a special set of manipulators, probes, nozzles and syringes supervised by a powerful monitoring program. Costly to maintain.<br> - <<if $incubatorUpgradeReproduction < 1>> /* Now with reports - what is lacking for construction */ - _incubatorNameCaps lacks advanced monitoring and hormone injection systems. Construction not possible. - <<elseif $incubatorUpgradeOrgans < 1>> - _incubatorNameCaps lacks the ability to extract tissue samples. Construction not possible. - <<elseif $dispensaryUpgrade < 1>> - _incubatorNameCaps lacks a connection to an advanced pharmaceutical fabricator. Cutting-edge targeted serums production needed as integral part. Construction not possible. - <<elseif $bellyImplants < 1>> - _incubatorNameCaps lacks a connection with an implant manufacturing to construct fillable abdominal implants to simulate expansion. Construction not possible. - <<elseif $incubatorUpgradeGrowthStims < 1>> - _incubatorNameCaps lacks advanced monitoring and stimulant injection systems. Construction not possible. - <<else>> - [[Manufacture and install this subsystem|Incubator][cashX(forceNeg(Math.trunc(2000000*$upgradeMultiplierArcology)), "capEx"), $incubatorUpgradePregAdaptation = 1]] //Costs <<print cashFormat(Math.trunc(2000000*$upgradeMultiplierArcology))>> and will increase upkeep costs// - <</if>> - <</if>> - </p> -<</if>> - -<p> -<<if $incubatorImprintSetting == "terror">> - The imprinting system is currently focused on making them devoted but fearful of you. The imprinting cycle is locked upon incubation start. - <<if $bodyswapAnnounced == 1>> - <br>[[Switch the system to focus on preparation for body-swapping|Incubator][$incubatorImprintSetting = "husk"]] - <</if>> - <br>[[Switch the system to focus on attachment|Incubator][$incubatorImprintSetting = "trust"]] -<<elseif $incubatorImprintSetting == "trust">> - The imprinting system is currently focused on making them devoted and trusting of you. The imprinting cycle is locked upon incubation start. - <<if $bodyswapAnnounced == 1>> - <br>[[Switch the system to focus on preparation for body-swapping|Incubator][$incubatorImprintSetting = "husk"]] - <</if>> - <br>[[Switch the system to focus on dependence|Incubator][$incubatorImprintSetting = "terror"]] -<<else>> - The imprinting system is currently focused on producing complete vegetables ready to be used as hosts for body swapping. The imprinting cycle is locked upon incubation start. - <br>[[Switch the system to focus on dependence|Incubator][$incubatorImprintSetting = "terror"]] - <br>[[Switch the system to focus on attachment|Incubator][$incubatorImprintSetting = "trust"]] -<</if>> -//Only affects new infants// -</p> - - - -<<if $incubatorSlaves > 0>> -<br><br>''Children in $incubatorName'' - -<<for $i = 0; $i < $incubatorSlaves; $i++>> - <<capture $i>> - <<setLocalPronouns $tanks[$i]>> - <br><br>@@.pink;$tanks[$i].slaveName@@ occupies this tank. - <<if $geneticMappingUpgrade >= 1>> - $He is a <<if $tanks[$i].genes == "XX">>female<<else>>male<</if>> of $tanks[$i].race descent with <<print App.Desc.eyesColor($tanks[$i])>>, $tanks[$i].hColor hair and $tanks[$i].skin skin. Given $his parentage, $he is considered $tanks[$i].nationality. - <<else>> - $He appears to be <<if $tanks[$i].genes == "XX">>a natural girl<<else>>a natural boy<</if>>, with $tanks[$i].hColor hair<<if getBestVision($tanks[$i]) === 0>> and <<print App.Desc.eyesColor($tanks[$i])>>.<<else>>. $He most likely will be blind.<</if>> - <</if>> - <<if $tanks[$i].preg > 0>> - @@.red;Warning! Subject may be pregnant! Unanticipated growth may occur!@@ - <</if>> - Statistical projections indicates that once released $he will be around <<= heightToEitherUnit($tanks[$i].height + random(-5,5))>> tall. Most likely $he will be - <<if $tanks[$i].weight <= 30 && $tanks[$i].weight >= -30>> - at a healthy weight and - <<elseif $tanks[$i].weight >= 31 && $tanks[$i].weight <= 95>> - quite overweight and - <<elseif $tanks[$i].weight >= 96>> - very overweight and - <<elseif $tanks[$i].weight <= -31 && $tanks[$i].weight >= -95>> - quite thin and - <<elseif $tanks[$i].weight <= -96>> - very thin and - <</if>> - <<if $tanks[$i].muscles <= 5 && $tanks[$i].muscles >= -5>> - with a normal musculature. - <<elseif $tanks[$i].muscles >= 6 && $tanks[$i].muscles <= 30>> - quite toned. - <<elseif $tanks[$i].muscles >= 31 && $tanks[$i].muscles <= 95>> - quite muscular. - <<elseif $tanks[$i].muscles >= 96>> - with a powerful musculature. - <<elseif $tanks[$i].muscles <= -6 && $tanks[$i].muscles >= -30>> - quite weak. - <<elseif $tanks[$i].muscles <= -31 && $tanks[$i].muscles >= -95>> - very weak. - <<elseif $tanks[$i].muscles <= -96>> - extremely weak. - <</if>> - $His breasts are projected to be - <<if $tanks[$i].boobs <= 299>> - of small size, - <<elseif $tanks[$i].boobs <= 799>> - of normal size, - <<elseif $tanks[$i].boobs <= 1799>> - of generous size, - <<elseif $tanks[$i].boobs <= 3249>> - of incredible size, - <<else>> - of humongous size, - <</if>> - while $his rear will be - <<if $tanks[$i].butt <= 3>> - a healthy size. - <<elseif $tanks[$i].butt <= 6>> - quite impressive. - <<elseif $tanks[$i].butt <= 9>> - very impressive. - <<else>> - immense. - <</if>> - <<if $tanks[$i].dick > 0>> - <<if $tanks[$i].dick <= 3>> - The latest analysis reported $his dick will end up being around the average - <<elseif $tanks[$i].dick >= 4 && $tanks[$i].dick <= 6>> - The latest analysis reported $his dick will end up being above average - <<elseif $tanks[$i].dick >= 7 && $tanks[$i].dick <= 9>> - The latest analysis reported $his dick will end up being far above the average - <<else>> - The latest analysis reported $his dick will end up being of monstrous size - <</if>> - <</if>> - <<if $tanks[$i].balls > 0>> - <<if $tanks[$i].balls <= 3>> - and $his testicles will reach a normal size. - <<elseif $tanks[$i].balls >= 4 && $tanks[$i].balls <= 6>> - and $his testicles will be of remarkable size. - <<elseif $tanks[$i].balls >= 7 && $tanks[$i].balls <= 9>> - and $his testicles will reach an impressive size. - <<else>> - and $his testicles will reach a monstrous size. - <</if>> - <</if>> - <<if $tanks[$i].pubertyXX == 1 && $tanks[$i].ovaries == 1>> - Scanners report $his womb is fertile. - <<else>> - Scanners report $he is not fertile, - <<if $tanks[$i].pubertyXX == 0>> - as $he has not yet entered puberty. - <<else>> - as it appears $his womb is sterile. - <</if>> - <</if>> - <<if ($incubatorPregAdaptationSetting == 1 && $tanks[$i].genes == "XX") || ($incubatorPregAdaptationSetting == 2 && $tanks[$i].genes == "XY") || $incubatorPregAdaptationSetting == 3 >> - There are probes and tubes inserted inside $his reproductive organs so $incubatorName may work on them. - <<set _safeCC = ($tanks[$i].pregAdaptation - 5) * 2000>> - <<if _safeCC > 300000>> /* Some bigger size descriptions may be unreachable by normal game mechanics, so they are here just in case.*/ - $His bloated form looks more like an overinflated beachball made of the overstretched skin of $his belly with $his relative tiny body attached to its side. $He is completely dominated by it now. The process has gone too far, so $his body can't maintain its form with the belly as part of abdominal cavity. Now $his skin, tissues and muscles have stretched enough for $his belly to expand outside of any physical boundaries and appear more an attachment to $his body, rather than part of it. - <<elseif _safeCC > 150000>> - $His body looks almost spherical, having been grotesquely inflated with the stimulator sacks inserted into $his internals. The incubator constantly maintains high pressure inside $him, forcing the displacement of $his organs and stretching skin, tissues, and muscles. Even $his chest forced to become a part of the top of $his belly, having been pushed forward from the overwhelming volume inside. - <<elseif _safeCC > 75000>> - $His belly has become so huge that can be easily compared with belly of a woman ready to birth quintuplets. It pulses from the pressure applied within by the incubator probes. - <<elseif _safeCC > 45000>> - $His belly, in the current state, would look normal on a woman who was ready to birth triplets. On $his still growing form, it's something completely out of the ordinary. - <<elseif _safeCC > 30000>> - $His belly looks like it contains full sized twins, ready to be birthed. - <<elseif _safeCC > 15000>> - $His belly has reached the size of full term pregnancy. - <<elseif _safeCC > 10000>> - $His belly has inflated to the size of late term pregnancy; its skin shines from the tension. - <<elseif _safeCC > 5000>> - $His belly resembles a mid term pregnancy; it pulses slightly from the expansion and contraction of expandable sacks tipping the incubator probes. - <<elseif _safeCC > 1500>> - $His belly slightly bulges and rhythmically expands and contracts to the cycles of $his stimulation as the incubator inflates and deflates expandable sacks on its probes within $his body cavity. With the correct serums applied, this should allow it to stretch the skin, tissues, and muscles of $his belly to better to tolerate the displacement of internal organs caused by fetal growth. - <</if>> - <</if>> - <<if $tanks[$i].growTime <= 0>> - <<set $readySlaves = 1>> - <br>$He is ready to be released from $his tank. - <<else>> - <<set _weekDisplay = Math.round($tanks[$i].growTime/$incubatorUpgradeSpeed)>> - <br>$His growth is currently being accelerated. $He will be ready for release in about _weekDisplay week<<if _weekDisplay > 1>>s<</if>>. - <</if>> - <br> - <<if $tanks[$i].tankBaby != 3>> - The tank is imprinting $him with basic life and sexual skills, though $he will still be very naïve and inexperienced on release. - <<if $tanks[$i].tankBaby == 2>> - The majority of $his indoctrination involves painting the world as a terrible place where only horror awaits $him should $he not obey $his owner. - <<else>> - The majority of $his indoctrination involves painting the world as a wonderful place only if $he is unconditionally devoted to, and absolutely trusting of, $his owner. - <</if>> - <<else>> - The tank keeps $him a braindead husk on a complete life-support. - <</if>> - <<if $incubatorUpgradeWeight == 1>> - <br> - <<if $incubatorWeightSetting == 1>> - $His weight is not being properly managed, saving costs but likely causing excessive weight gain. - <<elseif $incubatorWeightSetting == 2>> - $His weight is being carefully managed; $he will be released at a healthy weight. - <<elseif $incubatorWeightSetting == 0>> - Weight management systems are offline; $he will likely be malnourished. - <</if>> - <</if>> - <<if $incubatorUpgradeMuscles == 1>> - <br> - <<if $incubatorMusclesSetting == 2>> - $His strength levels are purposefully set higher than recommended; $he is likely to have excessive musculature. - <<elseif $incubatorMusclesSetting == 1>> - $His musculature is being carefully managed; $he will be released with near normal strength. - <<elseif $incubatorMusclesSetting == 0>> - Strength management systems are offline; $he will likely be released extremely weak. - <</if>> - <</if>> - <<if $incubatorUpgradeGrowthStims == 1>> - <br> - <<if $incubatorGrowthStimsSetting == 2>> - $He is being injected with higher than recommended doses of stimulants; $he is likely to be much taller than expected. - <<elseif $incubatorGrowthStimsSetting == 1>> - $He is injected with the recommended dosage of stimulants; $he will grow to $his full expected height. - <<elseif $incubatorGrowthStimsSetting == 0>> - Growth stimulant injection systems are offline; $he will develop normally. - <</if>> - <</if>> - <<if $incubatorUpgradeReproduction == 1>> - <br> - <<if $incubatorReproductionSetting == 2>> - $His hormone levels are purposefully set higher than recommended; $his reproductive systems are likely to be over-active. - <<elseif $incubatorReproductionSetting == 1>> - $His hormone levels are being carefully managed; $he will be released with fully functional reproductive organs. - <<elseif $incubatorReproductionSetting == 0>> - Reproduction management systems are offline; $he will undergo normal puberty. - <</if>> - <<if ($incubatorPregAdaptationSetting == 1 && $tanks[$i].genes == "XX") || ($incubatorPregAdaptationSetting == 2 && $tanks[$i].genes == "XY") ||$incubatorPregAdaptationSetting == 3 >> /* Should be visible only after incubatorUpgradeReproduction is installed and activated*/ - <br> - $His reproductive organs are getting <<if $tanks[$i].incubatorPregAdaptationPower == 1>>an advanced<<elseif $tanks[$i].incubatorPregAdaptationPower == 2>>an intensive<<elseif $tanks[$i].incubatorPregAdaptationPower == 3>>an extreme<<else>>a standard<</if>> course of mechanical and hormonal therapy to become adapted for future use. - <</if>> - <</if>> - <br>Rename $him: <<textbox "_tempName" _tempName >> [[Apply |Incubator][$tanks[$i].slaveName = _tempName]] // Given name only // - <<if $cheatMode == 1>> - <br>''Cheatmode:'' - <<link "Retrieve immediately">> - <<set $incubatorOldID = $tanks[$i].ID>> - <<set $readySlave = $tanks[$i]>> - <<run $tanks.splice($i, 1)>> - <<goto "Incubator Retrieval Workaround">> - <</link>> - <</if>> - <<if ($incubatorUpgradeOrgans == 1) && ($tanks[$i].tankBaby!= 3)>> - <br> - You can extract a sample and prepare a new organ for $him to be implanted once $he exits $his tank. - <<set _newOrgan = 0>> - <<set $tankOrgans = { - ovaries: 0, - penis: 0, - testicles:0, - rightEye: 0, - leftEye: 0, - voiceBox: 0}>> - <<for _i = 0; _i < $incubatorOrgans.length; _i++>> - <<if $tanks[$i].ID == $incubatorOrgans[_i].ID>> - <<if $incubatorOrgans[_i].type == "ovaries">> - <<set $tankOrgans.ovaries = 1>> - <</if>> - <<if $incubatorOrgans[_i].type == "testicles">> - <<set $tankOrgans.testicles = 1>> - <</if>> - <<if $incubatorOrgans[_i].type == "penis">> - <<set $tankOrgans.penis = 1>> - <</if>> - <<if $incubatorOrgans[_i].type == "rightEye">> - <<set $tankOrgans.rightEye = 1>> - <</if>> - <<if $incubatorOrgans[_i].type == "leftEye">> - <<set $tankOrgans.leftEye = 1>> - <</if>> - <<if $incubatorOrgans[_i].type == "voicebox">> - <<set $tankOrgans.voicebox = 1>> - <</if>> - <</if>> - <</for>> - <<if $tanks[$i].genes == "XX">> - Being a natural girl, $he possesses a functional vagina and ovaries. You can: - <<else>> - Being a natural boy, $he possesses a functional penis and balls. You can: - <</if>> - <br> - <<if $tanks[$i].ovaries == 0>> - <<if $tankOrgans.ovaries != 1>> - <<link "Prepare ovaries">> - <<run App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "ovaries")>> - <<goto "Incubator">> - <</link>> - <<else>> - @@.detail;Ovaries are already prepared.@@ - <</if>> - <</if>> - <<if $tanks[$i].dick == 0>> - <<if $tankOrgans.penis != 1>> - <<link "Prepare penis">> - <<run App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "penis")>> - <<goto "Incubator">> - <</link>> - <<else>> - @@.detail;A penis is already prepared.@@ - <</if>> - <</if>> - <<if $tanks[$i].balls == 0>> - | - <<if $tankOrgans.testicles != 1>> - <<link "Prepare testicles">> - <<run App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "testicles")>> - <<goto "Incubator">> - <</link>> - <<else>> - @@.detail;Testicles are already prepared.@@ - <</if>> - <</if>> - <<if getLeftEyeVision($tanks[$i]) === 0 || getRightEyeVision($tanks[$i]) === 0>> - <br> - <<set _both = getLeftEyeVision($tanks[$i]) === 0 && getRightEyeVision($tanks[$i]) === 0>> - <<if _both>> - $He appears to be blind in both eyes: - <<elseif getLeftEyeVision($tanks[$i]) === 0>> - $He appears to be blind in $his left eye: - <<else>> - $He appears to be blind in $his right eye: - <</if>> - <<set _unprepared = 0>> - <<if getLeftEyeVision($tanks[$i]) === 0 && $tankOrgans.leftEye != 1>> - <<link "Prepare left eye">> - <<run App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "leftEye")>> - <<goto "Incubator">> - <</link>> - <<set _unprepared++>> - <</if>> - <<if getRightEyeVision($tanks[$i]) === 0 && $tankOrgans.rightEye != 1>> - <<if _unprepared > 0>> | <</if>> - <<link "Prepare right eye">> - <<run App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "rightEye")>> - <<goto "Incubator">> - <</link>> - <<set _unprepared++>> - <</if>> - <<if _both && _unprepared === 2>> - | - <<link "Prepare both eyes">> - <<run App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "leftEye"), App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "rightEye")>> - <<goto "Incubator">> - <</link>> - <</if>> - <<if _both && _unprepared === 0>> @@.detail;Both eyes are already prepared.@@ - <<elseif $tankOrgans.leftEye == 1>> @@.detail;A left eye is already prepared.@@ - <<elseif $tankOrgans.rightEye == 1>> @@.detail;A right eye is already prepared.@@ - <</if>> - <</if>> - <<if $tanks[$i].voice == 0>> - <br>$He appears to be mute: - <<if $tankOrgans.voicebox != 1>> - <<link "Prepare vocal cords">> - <<run App.Medicine.OrganFarm.growIncubatorOrgan($tanks[$i], "voicebox")>> - <<goto "Incubator">> - <</link>> - <<else>> - @@.detail;Vocal cords are already prepared.@@ - <</if>> - <</if>> - <</if>> - <</capture>> -<</for>> -<</if>> - -<br> -<br> - -<<if $incubatorUpgradeWeight == 1>> - <<if $incubatorWeightSetting == 1>> - Weight is not being properly managed; excessive weight gain is likely. [[Monitor|Incubator][$incubatorWeightSetting = 2]] | [[Disable|Incubator][$incubatorWeightSetting = 0]] - <<elseif $incubatorWeightSetting == 2>> - Weight is being carefully managed; children will be released at a healthy weight. [[Estimate only|Incubator][$incubatorWeightSetting = 1]] | [[Disable|Incubator][$incubatorWeightSetting = 0]] - <<elseif $incubatorWeightSetting == 0>> - Weight management systems are offline; children will likely be malnourished. [[Activate|Incubator][$incubatorWeightSetting = 2]] - <</if>> -<</if>> -<br> -<<if $incubatorUpgradeMuscles == 1>> - <<if $incubatorMusclesSetting == 2>> - Strength levels are purposefully set higher than recommended; excessive muscle gain is likely. [[Limit|Incubator][$incubatorMusclesSetting = 1]] | [[Disable|Incubator][$incubatorMusclesSetting = 0]] - <<elseif $incubatorMusclesSetting == 1>> - Musculature is being carefully managed; children will be released with near normal strength. [[Overload|Incubator][$incubatorMusclesSetting = 2]] | [[Disable|Incubator][$incubatorMusclesSetting = 0]] - <<elseif $incubatorMusclesSetting == 0>> - Strength management systems are offline; children will likely be released extremely weak. [[Activate|Incubator][$incubatorMusclesSetting = 1]] - <</if>> -<</if>> -<br> -<<if $incubatorUpgradeReproduction == 1>> - <<if $incubatorReproductionSetting == 2>> - Hormone levels are purposefully set higher than recommended; over-active reproductive systems are likely. [[Limit|Incubator][$incubatorReproductionSetting = 1]] | [[Disable|Incubator][$incubatorReproductionSetting = 0]] - <<elseif $incubatorReproductionSetting == 1>> - Hormone levels are being carefully managed; children will be released with fully functional reproductive organs. [[Overload|Incubator][$incubatorReproductionSetting = 2]] | [[Disable|Incubator][$incubatorReproductionSetting = 0]] - <<elseif $incubatorReproductionSetting == 0>> - Reproduction management systems are offline; children will undergo normal puberty. [[Activate|Incubator][$incubatorReproductionSetting = 1]] - <</if>> - <<if $incubatorUpgradePregAdaptation == 1>> /* Should be visible only after incubatorUpgradeReproduction is installed */ - <br> - <<if $incubatorPregAdaptationSetting == 3>> - Pregnancy adaptation system online: All. - [[Females|Incubator][$incubatorPregAdaptationSetting = 1]] | [[Males|Incubator][$incubatorPregAdaptationSetting = 2]] | [[Disable|Incubator][$incubatorPregAdaptationSetting = 0]] - <<elseif $incubatorPregAdaptationSetting == 2>> - Pregnancy adaptation system online: Males only. - [[All|Incubator][$incubatorPregAdaptationSetting = 3]] | [[Females|Incubator][$incubatorPregAdaptationSetting = 1]] | [[Disable|Incubator][$incubatorPregAdaptationSetting = 0]] - <<elseif $incubatorPregAdaptationSetting == 1>> - Pregnancy adaptation system online: Females only. - [[All|Incubator][$incubatorPregAdaptationSetting = 3]] | [[Males|Incubator][$incubatorPregAdaptationSetting = 2]] | [[Disable|Incubator][$incubatorPregAdaptationSetting = 0]] - <<else>> - Pregnancy adaptation system offline. - [[All|Incubator][$incubatorPregAdaptationSetting = 3]] | [[Females|Incubator][$incubatorPregAdaptationSetting = 1]] | [[Males|Incubator][$incubatorPregAdaptationSetting = 2]] - <</if>> - <</if>> - <<if $incubatorUpgradePregAdaptation == 1 && $incubatorPregAdaptationSetting > 0>> /* Should be visible only after incubatorUpgradeReproduction is installed and turned on*/ - <br> - <<if $incubatorPregAdaptationPower == 1>> - Pregnancy adaptation programmed to advanced procedures. Up to triplet pregnancy should be safe for the subjects. - [[Standard|Incubator][$incubatorPregAdaptationPower = 0]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] - <<elseif $incubatorPregAdaptationPower == 2>> - Pregnancy adaptation programmed to intensive procedures. Up to octuplet pregnancy should be possible for the subjects. Warning! Side effects may occur to health and mental condition. - [[Standard|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] - <<elseif $incubatorPregAdaptationPower == 3>> - Pregnancy adaptation programmed to extreme procedures. Normally unsustainable pregnancies may be possible for some subjects. Actual capacity will vary with genetic and other individual conditions. WARNING! Extreme side effects may occur to health and mental condition! - [[Standard|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] - <<else>> - Pregnancy adaptation programmed to standard procedures. Normal pregnancy should be safe for subjects. - [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] - <</if>> - <br> - //Due to the high complexity and steep risks of the procedure, settings will not be changed on tanks in use.// - <</if>> -<</if>> -<br> -<<if $incubatorUpgradeGrowthStims == 1>> - <<if $incubatorGrowthStimsSetting == 2>> - Children are injected with higher than recommended doses of stimulants; exceeding expected final height is likely. [[Limit|Incubator][$incubatorGrowthStimsSetting = 1]] | [[Disable|Incubator][$incubatorGrowthStimsSetting = 0]] - <<elseif $incubatorGrowthStimsSetting == 1>> - Children are injected with the recommended dosage of stimulants; they will grow to their full expected height. [[Overload|Incubator][$incubatorGrowthStimsSetting = 2]] | [[Disable|Incubator][$incubatorGrowthStimsSetting = 0]] - <<elseif $incubatorGrowthStimsSetting == 0>> - Growth stimulant injection systems are offline; children will develop normally. [[Activate|Incubator][$incubatorGrowthStimsSetting = 1]] - <</if>> -<</if>> - -<<if $readySlaves == 1>> - <<if $incubatorBulkRelease == 1>> - <<set $newSlavePool = []>> - <<for _inc = 0; _inc < $tanks.length; _inc++>> - <<if $tanks[_inc].growTime <= 0>> - <<set $incubatorOldID = $tanks[_inc].ID>> /* single slave case */ - <<set _tempObject = {object: $tanks[_inc], ID: $tanks[_inc].ID}>> - <<set $newSlavePool.push(clone(_tempObject))>> - <<run $tanks.splice(_inc, 1)>> - <<set _inc-->> - <</if>> - <</for>> - <<if $newSlavePool.length == 1>> - <<set $readySlave = $newSlavePool[0].object>> - <<set $newSlavePool = 0>> - <</if>> - <<else>> - <<for _inc = 0; _inc < $incubatorSlaves; _inc++>> - <<if $tanks[_inc].growTime <= 0>> - <<set $incubatorOldID = $tanks[_inc].ID>> - <<set $readySlave = $tanks[_inc]>> - <<run $tanks.splice(_inc, 1)>> - <<break>> - <</if>> - <</for>> - <</if>> - <<goto "Incubator Retrieval Workaround">> -<</if>> - -<br><br>Rename $incubatorName: <<textbox "$incubatorName" $incubatorName "Incubator">> //Use a noun or similar short phrase// diff --git a/src/pregmod/incubatorReport.tw b/src/pregmod/incubatorReport.tw index 089f6254597c6d90a144e6a2738f8936b1ed8c07..f112712572ade7416c8f2478173e26cd7583dcfb 100644 --- a/src/pregmod/incubatorReport.tw +++ b/src/pregmod/incubatorReport.tw @@ -1,6 +1,6 @@ :: Incubator Report [nobr] -<<set $incubatorSlaves = 0, $readySlaves = 0>> +<<set $readySlaves = 0>> <<if $incubatorImprintSetting == 0>><<set $incubatorImprintSetting = "trust">><</if>> <<for _inc = 0; _inc < $tanks.length; _inc++>> @@ -12,7 +12,6 @@ <<set $tanks[_inc].actualAge++, $tanks[_inc].ovaryAge++>> <</if>> <</if>> - <<set $incubatorSlaves += 1>> <<if $tanks[_inc].growTime > 0>> <<set $tanks[_inc].growTime -= $incubatorUpgradeSpeed>> <br>@@.pink;<<print $tanks[_inc].slaveName>>'s@@ growth is currently being accelerated. $He <<if Math.round($tanks[_inc].growTime/$incubatorUpgradeSpeed) <= 0>>is @@.lime;ready for release.@@ $He will be ejected from $his tank upon your approach<<else>>will be ready for release in about <<print Math.round($tanks[_inc].growTime/$incubatorUpgradeSpeed)>> weeks<</if>>. @@ -822,7 +821,7 @@ <br><br> <</for>> /* -<<if $incubatorSlaves == 0>> +<<if $tanks.length == 0>> <<= capFirstChar($incubatorName)>> is currently unused. <</if>> */ diff --git a/src/pregmod/surrogacyWorkaround.tw b/src/pregmod/surrogacyWorkaround.tw index 03e61e00b4e800f91a70004b27af42226f549d0f..3220c7446895bab9cccc7510d26f13c9ae1cd00f 100644 --- a/src/pregmod/surrogacyWorkaround.tw +++ b/src/pregmod/surrogacyWorkaround.tw @@ -42,7 +42,7 @@ __Semen donatrix: _impreg __ <br>//You have no slaves with potent sperm.// <</if>> -<<if $incubatorSlaves > 0 && $incubatorReproductionSetting == 2>> +<<if $tanks.length > 0 && $incubatorReproductionSetting == 2>> <br><br> __Incubator settings are resulting in large-scale fluid secretion. Select an eligible incubatee to milk for semen:__