diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index e6afbc72a7f11733261498825ac34f5f50d9581e..ae3c8f9efb2a65dd092c3192a8db45b2399a3512 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -346,7 +346,6 @@ App.Data.resetOnNGPlus = { Sweatshops: 0, milkTap: 0, - militiaRecruitmen: 0, rivalID: 0, eliteAuctioned: 0, slavesSacrificedThisWeek: 0, @@ -1054,8 +1053,7 @@ App.Data.resetOnNGPlus = { AttendantID: 0, /** @type {FC.SlaveStateOrZero} */ Matron: 0, - /** @type {FC.SlaveStateOrZero} */ - Nurse: 0, + NurseID: 0, WardenessID: 0, /** @type {FC.SlaveStateOrZero} */ Concubine: 0, diff --git a/src/004-base/specialSlavesProxy.js b/src/004-base/specialSlavesProxy.js index 279c6dab1eba8e9b8ee0639951d88cfb818d0ef2..64b2870e0ac6680fbdcc7be2c58a61a8919d78b1 100644 --- a/src/004-base/specialSlavesProxy.js +++ b/src/004-base/specialSlavesProxy.js @@ -33,7 +33,7 @@ App.SpecialSlavesProxy = class SpecialSlavesProxy { return V.Milkmaid; } get Nurse() { - return V.Nurse; + return slaveStateById(V.NurseID); } get Recruiter() { return V.Recruiter; diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js index 5104a0a1979c0c98b8f5062d4c1160366bd330de..79d17e6b4fef8df67fbceb4607de100ae1c73b8f 100644 --- a/src/data/backwardsCompatibility/datatypeCleanup.js +++ b/src/data/backwardsCompatibility/datatypeCleanup.js @@ -1701,7 +1701,7 @@ globalThis.FacilityDatatypeCleanup = (function() { V.clinicInflateBelly = Math.clamp(+V.clinicInflateBelly, 0, 1) || 0; V.clinicSpeedGestation = Math.clamp(+V.clinicSpeedGestation, 0, 1) || 0; /* nurse */ - V.Nurse = V.slaves.find(s => s.assignment === Job.NURSE) || 0; + V.NurseID = findSlaveId(s => s.assignment === Job.NURSE); } function ArcadeDatatypeCleanup() { diff --git a/src/endWeek/endWeek.js b/src/endWeek/endWeek.js index 827e5a3a2f257502f132589814cd0501d56443e7..c949a7664ca7e789fa2768a3ca17a2e1a296f9e9 100644 --- a/src/endWeek/endWeek.js +++ b/src/endWeek/endWeek.js @@ -299,7 +299,6 @@ globalThis.endWeek = (function() { V.Farmer = 0; V.Concubine = 0; V.Matron = 0; - V.Nurse = 0; V.Bodyguard = 0; V.StudID = 0; V.StudCum = 0; diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js index 12cc66fc876ffa319b4498980e437d1e535abfc2..b8252954db6506ee1b98fb09d045d24e7d8d5556 100644 --- a/src/endWeek/healthFunctions.js +++ b/src/endWeek/healthFunctions.js @@ -124,7 +124,7 @@ globalThis.illness = function(slave) { if (H.illness > 0 && ((health_adjusted + age_modifier) / 3) + bonus_modifiers > 40 / curativesBonus) { if (nurse_effectiveness > 30 && (jsRandom(1, 2) === 2 || slave.assignment === Job.CLINIC) && H.illness > 1) { // A particularly effective nurse can improve illness faster H.illness -= 2; - r += ` ${V.Nurse.slaveName} <span class="green">successfully treats</span> ${his} illness.`; + r += ` ${S.Nurse.slaveName} <span class="green">successfully treats</span> ${his} illness.`; } else { H.illness -= 1; r += ` ${His} body <span class="green">fights back</span> against ${his} illness.`; @@ -213,8 +213,8 @@ globalThis.nurseEffectiveness = function(slave) { const H = slave.health; const clinicUpgrade = 1; // Creating a purchasable upgrade to increase the amount of slaves the nurse can handle -- TODO const clinicScreening = 1; // Assumes the clinic is set to screening all slaves to improve their chances of staying healthy. Turning it off would allow the nurse to focus on just her patients in the clinic -- TODO - if (V.Nurse !== 0) { - const nurseSkill = setup.nurseCareers.includes(V.Nurse.career) ? 200 : V.Nurse.skill.nurse; + if (S.Nurse) { + const nurseSkill = setup.nurseCareers.includes(S.Nurse.career) ? 200 : S.Nurse.skill.nurse; let nurseEffectiveness = Math.trunc((nurseSkill * clinicUpgrade / Math.max((App.Entity.facilities.clinic.employeesIDs().size * 10 + (V.slaves.length * 2) * clinicScreening), 1)) * 20); if (H.illness > 1 && slave.assignment === Job.CLINIC) { if (nurseEffectiveness < 20) { diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js index 83ebf9cc69ce278cf454c23b831b1269822dd003..f29ed0e013f8c77225160d28c55550710d8855c4 100644 --- a/src/endWeek/saDrugs.js +++ b/src/endWeek/saDrugs.js @@ -1568,7 +1568,7 @@ App.SlaveAssignment.drugs = (function() { break; case "speed up": slave.chem += 2; - if ((slave.assignment !== Job.CLINIC || V.Nurse === 0) && slave.geneMods.rapidCellGrowth !== 1) { + if ((slave.assignment !== Job.CLINIC || !S.Nurse) && slave.geneMods.rapidCellGrowth !== 1) { r += ` ${His} `; if (slave.pregType > 1) { r += `children are`; diff --git a/src/endWeek/slaveAssignmentReport.js b/src/endWeek/slaveAssignmentReport.js index f34c71d70a7883a24c2a37cdbbf1f19dfe2ac1e5..9ff7803af55461ccb7253aa3a636654ce99045b8 100644 --- a/src/endWeek/slaveAssignmentReport.js +++ b/src/endWeek/slaveAssignmentReport.js @@ -685,27 +685,26 @@ App.EndWeek.slaveAssignmentReport = function() { } break; case Job.NURSE: - V.Nurse = slave; if (slave.fetish === "mindbroken") { _printSlaveUnassignedNote(slave, "is mindbroken"); - V.Nurse = 0; + V.NurseID = 0; } else if (slave.preg > 37 && slave.broodmother === 2) { _printSlaveUnassignedNote(slave, "spends so much time giving birth and laboring that", `${getPronouns(slave).he} cannot effectively serve as your Nurse any longer`); - V.Nurse = 0; + V.NurseID = 0; } else if (!canWalk(slave)) { _printSlaveUnassignedNote(slave, "is no longer independently mobile"); - V.Nurse = 0; + V.NurseID = 0; } else if (!canHold(slave)) { _printSlaveUnassignedNote(slave, "can no longer hold onto patients"); - V.Nurse = 0; + V.NurseID = 0; } else if (!canSee(slave)) { _printSlaveUnassignedNote(slave, "can no longer see"); - V.Nurse = 0; + V.NurseID = 0; } else if (!canHear(slave)) { _printSlaveUnassignedNote(slave, "can no longer hear"); - V.Nurse = 0; + V.NurseID = 0; } - if (V.Nurse === 0) { + if (V.NurseID === 0) { removeJob(slave, Job.NURSE); } break; diff --git a/src/facilities/clinic/clinicFramework.js b/src/facilities/clinic/clinicFramework.js index b3fcffccf9f9b8db9215c0078964cf9679eacd5d..92bb159aab8c5fec39d4eaebced87d513989e5df 100644 --- a/src/facilities/clinic/clinicFramework.js +++ b/src/facilities/clinic/clinicFramework.js @@ -42,7 +42,7 @@ App.Entity.Facilities.ClinicPatientJob = class extends App.Entity.Facilities.Fac let r = super.checkRequirements(slave); if ((slave.health.illness === 0 && slave.health.shortDamage < 20 && slave.health.condition >= 40) && - (V.Nurse === 0 || ((slave.chem <= 15 || this.facility.upgrade("Filters") !== 1) && + (!S.Nurse || ((slave.chem <= 15 || this.facility.upgrade("Filters") !== 1) && (V.bellyImplants !== 1 || slave.bellyImplant <= -1) && (slave.pregKnown !== 1 || (this.facility.option("SpeedGestation") <= 0 && slave.pregControl !== "speed up")) && (this.facility.option("ObservePregnancy") !== 1 || slave.pregAdaptation * 1000 >= slave.bellyPreg && slave.preg <= slave.pregData.normalBirth / 1.33)))) { diff --git a/src/js/assayJS.js b/src/js/assayJS.js index 7a68c9dafe8aa139f446e0f3131499f889d6249e..36425457267d745b83d1be08f5824d6878ae14bc 100644 --- a/src/js/assayJS.js +++ b/src/js/assayJS.js @@ -78,7 +78,7 @@ globalThis.inferiorRaceP = function(slave) { */ globalThis.isLeaderP = function(slave) { /** @type {FC.SlaveStateOrZero[]} */ - const leaders = [V.HeadGirl, V.Bodyguard, V.Recruiter, V.Concubine, V.Nurse, S.Attendant, V.Matron, V.Madam, V.DJ, V.Milkmaid, V.Farmer, S.Stewardess, S.Schoolteacher, S.Wardeness]; + const leaders = [V.HeadGirl, V.Bodyguard, V.Recruiter, V.Concubine, S.Nurse, S.Attendant, V.Matron, V.Madam, V.DJ, V.Milkmaid, V.Farmer, S.Stewardess, S.Schoolteacher, S.Wardeness]; return leaders.some(leader => leader && leader.ID && leader.ID === slave.ID); }; diff --git a/src/js/assignJS.js b/src/js/assignJS.js index 099d15b1e42b955c1a3e09697b95d3b183ca8212..3924410b8a0dc7acb5bd03625d95034d2d997257 100644 --- a/src/js/assignJS.js +++ b/src/js/assignJS.js @@ -520,8 +520,8 @@ globalThis.removeJob = function(slave, assignment, saveRecord = false) { V.AttendantID = 0; } else if (V.Matron !== 0 && slave.ID === V.Matron.ID) { V.Matron = 0; - } else if (V.Nurse !== 0 && slave.ID === V.Nurse.ID) { - V.Nurse = 0; + } else if (V.NurseID === slave.ID) { + V.NurseID = 0; } else if (V.StewardessID === slave.ID) { V.StewardessID = 0; } else if (V.WardenessID === slave.ID) { diff --git a/src/js/slaveListing.js b/src/js/slaveListing.js index ccd92f5fe26781859a4d46ee98565375022bb360..cb9b60febfdc4c92b53090730d171d45fe3c8fce 100644 --- a/src/js/slaveListing.js +++ b/src/js/slaveListing.js @@ -223,7 +223,7 @@ App.UI.SlaveList.render = function() { if (slave.health.shortDamage >= 10) { list.push(`injuries`); } - if (V.Nurse !== 0) { + if (S.Nurse) { if ((slave.chem > 15) && (V.clinicUpgradeFilters === 1)) { list.push(`unhealthy chemicals`); } diff --git a/src/npc/descriptions/style/clothing.js b/src/npc/descriptions/style/clothing.js index 72007f3310ff909a76d4c3ce5005cce4f09c9d5e..8ef339077f185d7ba19c8cfb57c2c68f57dc1e0e 100644 --- a/src/npc/descriptions/style/clothing.js +++ b/src/npc/descriptions/style/clothing.js @@ -787,7 +787,7 @@ App.Desc.clothing = function(slave, {market, eventDescription} = {}) { r.push(`${His} uniform is pinned with the`); if (slave.ID === V.Bodyguard.ID || slave.ID === V.HeadGirl.ID || slave.ID === V.Recruiter.ID || slave.ID === V.Concubine.ID) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { r.push(`golden manacles insignia of a junior slave officer,`); } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105) > 0) { r.push(`silver spear and manacles insignia of an augmented slave soldier,`); @@ -809,7 +809,7 @@ App.Desc.clothing = function(slave, {market, eventDescription} = {}) { r.push(`${His} uniform is pinned with the`); if (slave.ID === V.Bodyguard.ID || slave.ID === V.HeadGirl.ID || slave.ID === V.Recruiter.ID || slave.ID === V.Concubine.ID) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { r.push(`golden manacles insignia of a junior slave officer,`); } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105)) { r.push(`silver spear and manacles insignia of an augmented slave soldier,`); @@ -831,7 +831,7 @@ App.Desc.clothing = function(slave, {market, eventDescription} = {}) { r.push(`${His} uniform is pinned with the`); if ((slave.ID === V.Bodyguard.ID) || (slave.ID === V.HeadGirl.ID) || (slave.ID === V.Recruiter.ID) || (slave.ID === V.Concubine.ID)) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { r.push(`golden manacles insignia of a junior slave officer,`); } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105)) { r.push(`silver spear and manacles insignia of an augmented slave soldier,`); @@ -853,7 +853,7 @@ App.Desc.clothing = function(slave, {market, eventDescription} = {}) { r.push(`${His} uniform is pinned with the`); if ((slave.ID === V.Bodyguard.ID) || (slave.ID === V.HeadGirl.ID) || (slave.ID === V.Recruiter.ID) || (slave.ID === V.Concubine.ID)) { r.push(`golden whip and manacles insignia of a senior slave officer,`); - } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.Nurse.ID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { + } else if ((slave.ID === V.Madam.ID) || (slave.ID === V.NurseID) || (slave.ID === V.AttendantID) || (slave.ID === V.Matron.ID) || (slave.ID === V.DJ.ID) || (slave.ID === V.Milkmaid.ID) || (slave.ID === V.Farmer.ID) || (slave.ID === V.StewardessID) || (slave.ID === V.SchoolteacherID) || (slave.ID === V.WardenessID)) { r.push(`golden manacles insignia of a junior slave officer,`); } else if ((slave.skill.combat > 0) && getLimbCount(slave, 105)) { r.push(`silver spear and manacles insignia of an augmented slave soldier,`); diff --git a/src/npc/interaction/passage/birthStorm.tw b/src/npc/interaction/passage/birthStorm.tw index 760e9c7794d940b257d737bb37b108fb0946bc1c..e498ac768869c65fca14594d1541a38e46d912f2 100644 --- a/src/npc/interaction/passage/birthStorm.tw +++ b/src/npc/interaction/passage/birthStorm.tw @@ -128,12 +128,12 @@ The remote surgery allows the removal of the pregnancy generator through convent <<elseif getSlave($AS).sexualFlaw == "breeder">> birthing and the realization that you are taking away $his ideal body, $his perfect existence, $his mind @@.red;fundamentally breaks. The ordeal of intensive birthing has had a massive effect on $his health as well as completely destroying $his vagina.@@ <<set getSlave($AS).fetish = "mindbroken">> -<<elseif getSlave($AS).fetish == "pregnancy" && $Nurse != 0>> - birthing and orgasming all the time, getSlave($AS).slaveName's mind would have broken. However, $Nurse.slaveName had the foresight to sedate $him after witnessing $his constant orgasming. $He awakes to find $his belly deflated, no longer crammed full of life. $He is @@.mediumorchid;disappointed@@ that you would forbid $him from such a pleasure, but @@.mediumaquamarine;understands@@ why it was done. @@.red;The ordeal of intensive birthing has had a massive effect on $his health as well as completely destroying $his vagina.@@ +<<elseif getSlave($AS).fetish == "pregnancy" && _S.Nurse>> + birthing and orgasming all the time, <<= getSlave($AS).slaveName>>'s mind would have broken. However, _S.Nurse.slaveName had the foresight to sedate $him after witnessing $his constant orgasming. $He awakes to find $his belly deflated, no longer crammed full of life. $He is @@.mediumorchid;disappointed@@ that you would forbid $him from such a pleasure, but @@.mediumaquamarine;understands@@ why it was done. @@.red;The ordeal of intensive birthing has had a massive effect on $his health as well as completely destroying $his vagina.@@ <<set getSlave($AS).trust += 5, getSlave($AS).devotion -= 5>> <<elseif getSlave($AS).fetish == "pregnancy">> <<if getSlave($AS).broodmother == 2>> - birthing and orgasming each time, getSlave($AS).slaveName's mind is @@.red;fundamentally broken.@@ Being under constant pleasure for so long has destroyed all but the part of $him that feels pleasure. With one final push the breeding device is expelled from $his womb as the last spark of what was $his mind is extinguished. @@.red;The ordeal of constant birthing has had a massive effect on $his health as well as completely destroying $his vagina.@@ + birthing and orgasming each time, <<= getSlave($AS).slaveName>>'s mind is @@.red;fundamentally broken.@@ Being under constant pleasure for so long has destroyed all but the part of $him that feels pleasure. With one final push the breeding device is expelled from $his womb as the last spark of what was $his mind is extinguished. @@.red;The ordeal of constant birthing has had a massive effect on $his health as well as completely destroying $his vagina.@@ <<set getSlave($AS).fetish = "mindbroken">> <<elseif getSlave($AS).broodmother == 1>> birthing and orgasming each time, <<= getSlave($AS).slaveName>> is reduced to a quivering, overstimulated pile. When $he returns to $his senses, @@.hotpink;$he can only express how much $he wants to go again.@@ @@.red;The ordeal of constant birthing has had a massive effect on $his health as well as completely destroying $his vagina.@@ diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw index 6e863effbbaeccb1363efc21775890b7c26b3d3c..73a46245798295dc62fdf107a4c65fc983042a47 100644 --- a/src/pregmod/sePlayerBirth.tw +++ b/src/pregmod/sePlayerBirth.tw @@ -108,9 +108,9 @@ While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoro <<if $PC.belly < 100000>> <<if $Concubine != 0>><<set _concubinePresent = 1>><<setLocalPronouns $Concubine 2>><</if>> After what feels like a <<if $showInches == 2>>mile<<else>>kilometer<</if>> run, you finally waddle into your destination finding - <<if $Nurse != 0>> - <<setLocalPronouns $Nurse>> - @@.pink;$Nurse.slaveName@@ waiting for you with everything $he needs to be a capable midwife to you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if hasAnyArms($Concubine)>>wraps _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>> + <<if _S.Nurse>> + <<setLocalPronouns _S.Nurse>> + @@.pink;_S.Nurse.slaveName@@ waiting for you with everything $he needs to be a capable midwife to you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if hasAnyArms($Concubine)>>wraps _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>> <<elseif $Bodyguard != 0>> <<setLocalPronouns $Bodyguard>> @@.pink;$Bodyguard.slaveName@@ waiting for you. Ever since $he realized $he was protecting for <<if $PC.pregType > 1>>many<<else>>two<</if>>, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if hasAnyArms($Concubine)>>wraps _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>> @@ -125,9 +125,9 @@ While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoro <<else>> <<if $Concubine != 0>><<setLocalPronouns $Concubine 2>><<if !canWalk($Concubine)>><<set _concubinePresent = 2>><<else>><<set _concubinePresent = 1>><</if>><</if>> You barely make it half-way down the hall before you feel the first of your many children drop into position at the entrance to your birth canal. You try to keep going, but as it forces its way through your pelvis, spreading it wider, you're forced to the ground. Fortunately the penthouse is littered with supply rooms and closets, so you drag your laboring body into the nearest one instead. Fortunately, $assistant.name discretely directs - <<if $Nurse != 0>> - <<setLocalPronouns $Nurse>> - @@.pink;$Nurse.slaveName@@ to you with everything $he'll need to deliver your child<<if $PC.pregType > 1>>ren<</if>>.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms($Concubine)>>wrapping _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>> + <<if _S.Nurse>> + <<setLocalPronouns _S.Nurse>> + @@.pink;_S.Nurse.slaveName@@ to you with everything $he'll need to deliver your child<<if $PC.pregType > 1>>ren<</if>>.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms($Concubine)>>wrapping _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>> <<elseif $Bodyguard != 0>> <<setLocalPronouns $Bodyguard>> @@.pink;$Bodyguard.slaveName@@ to your location. Ever since $he realized $he was protecting for not only you, but the lives you bear too, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers. $He apologizes profusely for not being there when you needed $him most; $he wanted to make sure everything was ready for your arrival.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms($Concubine)>>wrapping _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>> @@ -143,17 +143,17 @@ While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoro <br><br> You arrange yourself to give birth, relaxing until your body urges you to begin bearing down and pushing your child into the world.<<if _concubinePresent == 1>>$Concubine.slaveName settles in beside you, one hand soothing your contraction wracked middle and the other <<if $PC.dick != 0>>stroking your hardening dick<<else>>teasing your stiffening clit<</if>>.<</if>> <<if _badBirth > random(1,100)>> /* shits going wrong */ - <<if $Nurse != 0>> - <<setLocalPronouns $Nurse>> - You keep pushing and pushing, but your child is not coming out.<<if _concubinePresent == 1>> $Concubine.slaveName shifts to massaging your gravid middle<<if canTalk($Concubine)>>, while whispering words of encouragement into your ear<</if>>. Until $Nurse.slaveName shoos _him2 away so $he can take over and get this baby out of you.<</if>> $Nurse.slaveName was prepared for this possibility, adjusts your position and timings, and before long is holding your @@.lime;new baby <<if _gender == "XX">>girl<<else>>boy<</if>>@@ in $his arms. + <<if _S.Nurse>> + <<setLocalPronouns _S.Nurse>> + You keep pushing and pushing, but your child is not coming out.<<if _concubinePresent == 1>> $Concubine.slaveName shifts to massaging your gravid middle<<if canTalk($Concubine)>>, while whispering words of encouragement into your ear<</if>>. Until _S.Nurse.slaveName shoos _him2 away so $he can take over and get this baby out of you.<</if>> _S.Nurse.slaveName was prepared for this possibility, adjusts your position and timings, and before long is holding your @@.lime;new baby <<if _gender == "XX">>girl<<else>>boy<</if>>@@ in $his arms. <<if $PC.pregType >= 8>> - But you're far from done; your taut dome of a belly still houses another <<print num($PC.pregType - 1)>> infants. You moan as the next child begins its descent; you'll be at this for awhile. If $Nurse.slaveName weren't here, you and your children would likely have perished. + But you're far from done; your taut dome of a belly still houses another <<print num($PC.pregType - 1)>> infants. You moan as the next child begins its descent; you'll be at this for awhile. If _S.Nurse.slaveName weren't here, you and your children would likely have perished. <<elseif $PC.pregType >= 4>> - But you aren't close to done; your taut dome of a belly still houses another <<print num($PC.pregType - 1)>> infants. You moan as the next child begins its descent; you'll be at this for awhile. If $Nurse.slaveName weren't here, you and your children would likely have perished. + But you aren't close to done; your taut dome of a belly still houses another <<print num($PC.pregType - 1)>> infants. You moan as the next child begins its descent; you'll be at this for awhile. If _S.Nurse.slaveName weren't here, you and your children would likely have perished. <<elseif $PC.pregType == 3>> - But you aren't done; your swollen belly still houses another pair of infants. You moan as the next child begins its descent; if $Nurse.slaveName weren't here, you and your children would likely have perished. + But you aren't done; your swollen belly still houses another pair of infants. You moan as the next child begins its descent; if _S.Nurse.slaveName weren't here, you and your children would likely have perished. <<elseif $PC.pregType == 2>> - But you aren't done; your rounded belly still houses another infant. You moan as they begin their decent; if $Nurse.slaveName weren't here, you and your children would likely have perished. + But you aren't done; your rounded belly still houses another infant. You moan as they begin their decent; if _S.Nurse.slaveName weren't here, you and your children would likely have perished. <</if>> <<elseif $Bodyguard != 0>> <<setLocalPronouns $Bodyguard>> @@ -221,14 +221,14 @@ You arrange yourself to give birth, relaxing until your body urges you to begin <<set $gameover = "birth complications", $nextButton = "Have to keep trying!", $nextLink = "Gameover">> <</if>> <<else>> - <<if $Nurse != 0>> - <<setLocalPronouns $Nurse>> - Under $Nurse.slaveName's guidance, childbirth is a breeze for you. + <<if _S.Nurse>> + <<setLocalPronouns _S.Nurse>> + Under _S.Nurse.slaveName's guidance, childbirth is a breeze for you. <<if $PC.pregType == 1>> - <<if _concubinePresent == 1>> Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $Nurse.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> $Nurse.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@ + <<if _concubinePresent == 1>> Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, _S.Nurse.slaveName, and your newborn getting sprayed with cum.<</if>><</if>> _S.Nurse.slaveName cuts the cord, swaddles your child, and hands you @@.lime;your new baby <<if _gender == "XX">>girl<<else>>boy<</if>>.@@ <<else>> <<if _concubinePresent == 1>> - Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, $Nurse.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses. + Or it would have been, had $Concubine.slaveName not driven you to an intense orgasm right as your first child entered the world.<<if $PC.balls >= 9>> An orgasm that resulted in $Concubine.slaveName, _S.Nurse.slaveName, and your newborn getting sprayed with cum.<</if>> But it isn't over: before you've even had a chance to come down from your climax, the next infant slips into your birth canal<<if $PC.pregType >= 3>>, followed closely by the <<if $PC.pregType == 3>>last<<else>>next<</if>>,<</if>> and immediately pushes you back over the edge. In minutes, after <<print num(_curBabies)>> children and <<print num(_curBabies)>> intense orgasms, you're barely conscious. $Concubine.slaveName slides in behind you to snuggle with you as you return to your senses. <<else>> With one out, you realize <<if $PC.pregType >= 6>> @@ -248,9 +248,9 @@ You arrange yourself to give birth, relaxing until your body urges you to begin <<else>> they begin their <</if>> - descent; you'll be at this for awhile. With $Nurse.slaveName around, you aren't worried at all. + descent; you'll be at this for awhile. With _S.Nurse.slaveName around, you aren't worried at all. <</if>> - $Nurse.slaveName cuts the cords, swaddles your children, and hands you @@.lime;your new <<print pregNumberName(_curBabies, 2)>>.@@ + _S.Nurse.slaveName cuts the cords, swaddles your children, and hands you @@.lime;your new <<print pregNumberName(_curBabies, 2)>>.@@ <</if>> <<elseif $Bodyguard != 0>> <<setLocalPronouns $Bodyguard>> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 62eacc7623c3ef9844d38553dcc76fce8a835e0f..4ccce545607c43f0d34433a396aa71061ee9c387 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -905,20 +905,20 @@ Or $he would have been, if $he weren't locked in an arcade cabinet. A gush of liquid pours from $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on $his exposed rear. While $his mouth is filled with a customer's dick, $his <<if $slaves[$i].geneticQuirks.uterineHypersensitivity == 2>>orgasming <</if>>body instinctively births <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby into a waiting basket. As it is carried away, $his rear is cleaned up and the sign removed. <<case "get treatment in the clinic">> - <<if ($Nurse != 0)>> - <<setLocalPronouns $Nurse 2>> + <<if _S.Nurse>> + <<setLocalPronouns _S.Nurse 2>> <</if>> <<if !canWalk($slaves[$i])>> <<if (random(1,20) > $suddenBirth)>> - $He is helped to the clinic's maternity ward. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long $he is returned to $his recovery room to rest. + $He is helped to the clinic's maternity ward. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long $he is returned to $his recovery room to rest. <<else>> - $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long _he2 returns to attend to _his2 patient's post-birth health. + $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long _he2 returns to attend to _his2 patient's post-birth health. <</if>> <<else>> <<if (random(1,20) > $suddenBirth)>> - $He is guided to the clinic's maternity ward. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long $he is returned to $his recovery room to rest. + $He is guided to the clinic's maternity ward. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long $he is returned to $his recovery room to rest. <<else>> - $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long _he2 returns to attend to _his2 patient's post-birth health. + $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> child before taking it away. Before long _he2 returns to attend to _his2 patient's post-birth health. <</if>> <</if>> @@ -1779,10 +1779,10 @@ A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on $his exposed rear. While $his mouth is filled with a customer's dick, $his body instinctively births $his child into the waiting basket. As they are carried away, $his rear is cleaned up and the sign removed. <<case "get treatment in the clinic">> - <<if ($Nurse != 0)>> - <<setLocalPronouns $Nurse 2>> + <<if _S.Nurse>> + <<setLocalPronouns _S.Nurse 2>> <</if>> - $slaves[$i].slaveName is in the perfect place to give birth when $his body begins to push out another of $his brood. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child before taking them away. Before long _he2 returns to attend to _his2 patient's perpetual pregnancy. + $slaves[$i].slaveName is in the perfect place to give birth when $his body begins to push out another of $his brood. <<if _S.Nurse != 0>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child before taking them away. Before long _he2 returns to attend to _his2 patient's perpetual pregnancy. <<case "be confined in the cellblock">> <<if $slaves[$i].fetish == "mindbroken">> diff --git a/src/uncategorized/PETS.tw b/src/uncategorized/PETS.tw index 527a5eb531b0b4dbe4587b749a1bab5b0a8cd509..b9c8deabe86ff69f86549bd1041ad47954b84fb8 100644 --- a/src/uncategorized/PETS.tw +++ b/src/uncategorized/PETS.tw @@ -43,7 +43,7 @@ <<switch $PETSevent>> <<case "nurse molestation">> - <<set $activeSlave = $Nurse, $subSlave = $slaves.find(function(s) { return s.anus != 0 && s.assignment == "get treatment in the clinic"; })>> + <<set $activeSlave = _S.Nurse, $subSlave = $slaves.find(function(s) { return s.anus != 0 && s.assignment == "get treatment in the clinic"; })>> <<case "stewardess beating">> <<set $activeSlave = _S.Stewardess, $subSlave = $slaves.find(function(s) { return s.assignment == "work as a servant"; })>> <<case "aggressive schoolteacher">> diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw index 4dad8233e513302660c1a51ca0ff1680c2895d2c..b1cdc8af600a831da191ca60aceefe84da671b66 100644 --- a/src/uncategorized/clinic.tw +++ b/src/uncategorized/clinic.tw @@ -72,8 +72,8 @@ $clinicNameCaps is busy. Patients occupy many of the beds; most are alert, but a few are dozing under medication designed to promote healing through deep rest. <<elseif _CL > 0>> $clinicNameCaps is sparsely populated. Patients occupy a few of the beds; most are alert, but a few are dozing under medication designed to promote healing through deep rest. - <<elseif $Nurse != 0>> - $Nurse.slaveName is alone in the clinic, and has nothing to do but keep the place spotlessly clean and ready for its next patients. + <<elseif _S.Nurse != 0>> + _S.Nurse.slaveName is alone in the clinic, and has nothing to do but keep the place spotlessly clean and ready for its next patients. <<else>> $clinicNameCaps is empty and quiet. <div class="choices" style="font-style:normal"> @@ -141,7 +141,7 @@ </span> </div> <</if>> - <<if $Nurse == 0>> + <<if !_S.Nurse>> <div> However, without a nurse in attendance, the @@.yellow;blood treatment equipment remains idle.@@ </div> @@ -159,15 +159,15 @@ </div> <div> - <<if $bellyImplants == 1 && $Nurse == 0>> + <<if $bellyImplants == 1 && !_S.Nurse>> A resident nurse could be used to safely regulate the rate a slave's fillable belly implant for maximum size with minimum health loss. <<elseif $bellyImplants == 1 && $clinicInflateBelly == 1>> - $clinicNameCaps is useful for keeping slaves healthy during long term procedures. Slaves in $clinicName with inflatable belly implants will be filled during their time under $Nurse.slaveName's supervision to maximize growth with minimized health complications. + $clinicNameCaps is useful for keeping slaves healthy during long term procedures. Slaves in $clinicName with inflatable belly implants will be filled during their time under _S.Nurse.slaveName's supervision to maximize growth with minimized health complications. <div class="choices"> [[Do not fill belly implants|Clinic][$clinicInflateBelly = 0]] </div> - <<elseif $bellyImplants == 1 && $Nurse != 0 && $clinicInflateBelly != 1>> - $clinicNameCaps is useful for keeping slaves healthy during long term procedures. $Nurse.slaveName can supervise weekly filling regimens for clinic slaves with fillable belly implants during their stay to maximize growth with minimal health complications. + <<elseif $bellyImplants == 1 && _S.Nurse && $clinicInflateBelly != 1>> + $clinicNameCaps is useful for keeping slaves healthy during long term procedures. _S.Nurse.slaveName can supervise weekly filling regimens for clinic slaves with fillable belly implants during their stay to maximize growth with minimal health complications. <div class="choices"> [[Fill belly implants|Clinic][$clinicInflateBelly = 1]] </div> @@ -191,14 +191,14 @@ </div> <div> - <<if $pregSpeedControl == 1 && $Nurse == 0>> + <<if $pregSpeedControl == 1 && !_S.Nurse>> A resident nurse could be used to supervise patients under rapid gestation agents while minimizing strain and health complications. <<elseif $pregSpeedControl == 1 && $clinicSpeedGestation == 1>> - It's exceedingly dangerous to speed up gestation without constant supervision. In $clinicName, $Nurse.slaveName will monitor slaves on rapid gestation agents; making sure the growing patients' food demands are met, monitoring their skin and womb and, if need be, perform an emergency c-section should the need arise. + It's exceedingly dangerous to speed up gestation without constant supervision. In $clinicName, _S.Nurse.slaveName will monitor slaves on rapid gestation agents; making sure the growing patients' food demands are met, monitoring their skin and womb and, if need be, perform an emergency c-section should the need arise. <div class="choices"> [[Limit rapid gestation agents to selected slaves only|Clinic][$clinicSpeedGestation = 0]] </div> - <<elseif $pregSpeedControl == 1 && $Nurse != 0 && $clinicSpeedGestation != 1>> + <<elseif $pregSpeedControl == 1 && _S.Nurse && $clinicSpeedGestation != 1>> $clinicNameCaps is currently not applying rapid gestation agents to pregnant patients. Only individually selected slaves will undergo this procedure <div class="choices"> [[Speed up gestation for all pregnant patients|Clinic][$clinicSpeedGestation = 1]] diff --git a/src/uncategorized/nurseSelect.tw b/src/uncategorized/nurseSelect.tw index 87f88a86f690b6e340a7d9f32a947c23781311ab..f6ad039bf404f48abf8e98ab2abf596dba3ad50c 100644 --- a/src/uncategorized/nurseSelect.tw +++ b/src/uncategorized/nurseSelect.tw @@ -1,16 +1,15 @@ :: Nurse Select [nobr jump-to-safe jump-hidden jump-from-safe] <<set $nextButton = "Back", $nextLink = "Clinic", $encyclopedia = "Nurse">> -<<if ($Nurse != 0)>> - <<set $Nurse = getSlave($Nurse.ID)>> - <<setLocalPronouns $Nurse>> - <span class='slave-name'><<= SlaveFullName($Nurse)>></span> is serving as your Nurse.<br><br>$He will help heal your slaves. +<<if _S.Nurse>> + <<setLocalPronouns _S.Nurse>> + <span class='slave-name'><<= SlaveFullName(_S.Nurse)>></span> is serving as your Nurse.<br><br>$He will help heal your slaves. <<else>> You have not selected a Nurse. <</if>> <br><br>''Appoint a Nurse from your devoted slaves:'' -<br><br>[[None|Clinic][removeJob($Nurse, "be the Nurse")]] +<br><br>[[None|Clinic][removeJob(_S.Nurse, "be the Nurse")]] <br><br> <<print App.UI.SlaveList.facilityManagerSelection(App.Entity.facilities.clinic, "Clinic")>> diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index 2c8cd52eafc36b8bf73b4dd4db03753a132c10fc..92be7400d7536e8ec6225009174cee4887cccf52 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -439,7 +439,7 @@ <<set $PETSevent.push("comforting attendant")>> <</if>> - <<if ($Nurse != 0) && (_L.clinic > 0) && ($Nurse.energy > 95) || (($Nurse.fetishStrength > 60) && ($Nurse.fetish == "sadist" || $Nurse.fetish == "dom"))>> + <<if _S.Nurse && (_L.clinic > 0) && (_S.Nurse.energy > 95) || ((_S.Nurse.fetishStrength > 60) && (_S.Nurse.fetish == "sadist" || _S.Nurse.fetish == "dom"))>> <<set $subSlave = $slaves.find(function(s) { return s.anus != 0 && s.assignment == "get treatment in the clinic"; })>> <<if (def $subSlave)>> <<set $PETSevent.push("nurse molestation")>> diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index 1e934427345bf9615d9a1f94036472a4e4ec5769..99a131e73debfe0dfb59c5f579a011669feadeff 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -146,7 +146,7 @@ <<if ($activeSlave.ID == $SchoolteacherID)>> <<set _qualifiedNicknames.push("Schoolteacher")>> <</if>> -<<if ($activeSlave.ID == $Nurse.ID)>> +<<if ($activeSlave.ID == $NurseID)>> <<set _qualifiedNicknames.push("Nurse")>> <</if>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 79f052720976ad92fb97264cb88ebe68a69a86a1..563471bbca377f6db3916ebfc2a8ae2fa6393ff7 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -1,6 +1,6 @@ :: SA long term effects [nobr] -<<set _actualBreastSize = $slaves[$i].boobs-$slaves[$i].boobsImplants-$slaves[$i].boobsMilk>> +<<set _actualBreastSize = $slaves[$i].boobs-$slaves[$i].boobsImplant-$slaves[$i].boobsMilk>> <<set _fetishChangeChance = fetishChangeChance($slaves[$i])>> <<set _bellyAccessory = $slaves[$i].bellyAccessory>> <<if _bellyAccessory == "a support band">> @@ -4148,7 +4148,7 @@ <</if>> <<switch $slaves[$i].pregControl>> <<case "speed up">> - <<if $Nurse == 0 || $slaves[$i].assignment != "get treatment in the clinic">> + <<if !_S.Nurse || $slaves[$i].assignment != "get treatment in the clinic">> <<if $slaves[$i].pregType >= 20 && $slaves[$i].devotion <= 20 && $slaves[$i].trust <= 50>> <<if $slaves[$i].sexualFlaw == "self hating">> $He is @@.hotpink;delirious with joy@@ over $his straining womb. Every week $he gets bigger, fuller and tighter; in $his mind, it won't be long until $he bursts, bringing $his children into the world. @@ -8355,8 +8355,8 @@ <<if $seeExtreme == 1 && $dangerousPregnancy == 1 && (($slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)) || $slaves[$i].bellyPreg > 600000) && $slaves[$i].bellyPreg >= 100000>> <<if $slaves[$i].assignment == "get treatment in the clinic">> - <<if $Nurse.ID > 0>> - The fast actions of $clinicName's nurse, $Nurse.slaveName, saved $his life a few times. @@.red;$His womb is breaking!@@ + <<if _S.Nurse>> + The fast actions of $clinicName's nurse, _S.Nurse.slaveName, saved $his life a few times. @@.red;$His womb is breaking!@@ <<else>> Automatic monitors in $clinicName detected critical pressure and called junior medical staff. They managed to hold $him together, for now; @@.red;$his womb is breaking!@@ <</if>> @@ -9391,7 +9391,7 @@ <<elseif $slaves[$i].assignment == "rest in the spa">> <<set _miscarriageChance -= 50>> <<elseif $slaves[$i].assignment == "get treatment in the clinic">> - <<if $Nurse != 0>> + <<if _S.Nurse>> <<set _miscarriageChance -= 200>> <<else>> <<set _miscarriageChance -= 150>> @@ -9500,7 +9500,7 @@ <<set _burstChance -= 20>> <</if>> <<if $slaves[$i].assignment == "get treatment in the clinic">> - <<if $Nurse.ID > 0>> + <<if _S.Nurse>> <<set _burstChance -= 100>> <<else>> <<set _burstChance -= 30>> diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw index 806ed032965070a9c42f22829121add86864743e..d2e119dedf843a5aa16e21d350fb076c9114f5f0 100644 --- a/src/utility/birthWidgets.tw +++ b/src/utility/birthWidgets.tw @@ -326,9 +326,9 @@ <<case "get treatment in the clinic">> <<if !canWalk($slaves[$i])>> - $He is helped to the clinic's maternity ward. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking <<if $slaves[$i].pregType > 1>>them<<else>> it<</if>> away. Before long $he is returned to $his recovery room to rest. + $He is helped to the clinic's maternity ward. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking <<if $slaves[$i].pregType > 1>>them<<else>> it<</if>> away. Before long $he is returned to $his recovery room to rest. <<else>> - $He is guided to the clinic's maternity ward. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking <<if $slaves[$i].pregType > 1>>them<<else>> it<</if>> away. Before long $he is returned to $his recovery room to rest. + $He is guided to the clinic's maternity ward. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking <<if $slaves[$i].pregType > 1>>them<<else>> it<</if>> away. Before long $he is returned to $his recovery room to rest. <</if>> <<case "be confined in the cellblock">> @@ -593,7 +593,7 @@ Or $he would have been, if $he weren't locked in an arcade cabinet. A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on $his exposed rear. While $his mouth is filled with a customer's dick, $his body instinctively births $his child<<if $slaves[$i].pregType > 1>>ren<</if>> into the waiting basket. As they are carried away, $his rear is cleaned up and the sign removed. <<case "get treatment in the clinic">> - $He is taken to the clinic's maternity ward. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking them away. Before long $he is returned to $his recovery room to rest. + $He is taken to the clinic's maternity ward. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking them away. Before long $he is returned to $his recovery room to rest. <<case "be confined in the cellblock">> <<if $slaves[$i].fetish == "mindbroken">> @@ -1196,10 +1196,10 @@ A gush of liquid pours from the $slaves[$i].slaveName's cunt, followed by the attendant in charge of the arcade hanging an "out of order" sign on $his exposed rear. While $his mouth is filled with a customer's dick, $his body instinctively births $his child<<if $slaves[$i].pregType > 1>>ren<</if>> into the waiting basket. As they are carried away, $his rear is cleaned up and the sign removed. <<case "get treatment in the clinic">> - <<if ($Nurse != 0)>> - <<setLocalPronouns $Nurse 2>> + <<if _S.Nurse>> + <<setLocalPronouns _S.Nurse 2>> <</if>> - $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if $Nurse != 0>>$Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking them away. <<if $Nurse != 0>>Before long _he2 returns to attend to _his2 patient's post-birth health<<else>>Another nurse takes over to attend to $his post-birth health<</if>>. + $slaves[$i].slaveName is in the perfect place to give birth when $his water breaks. <<if _S.Nurse>>_S.Nurse.slaveName<<else>>A freelance nurse<</if>> delivers $his child<<if $slaves[$i].pregType > 1>>ren<</if>> before taking them away. <<if _S.Nurse>>Before long _he2 returns to attend to _his2 patient's post-birth health<<else>>Another nurse takes over to attend to $his post-birth health<</if>>. <<case "be confined in the cellblock">> <<if $slaves[$i].fetish == "mindbroken">>