From f2c32bb5b215c4b0db039287577989e613b47665 Mon Sep 17 00:00:00 2001 From: Skriv <skrivelese@gmail.com> Date: Mon, 5 Oct 2020 14:11:48 -0700 Subject: [PATCH] Birth minor cleanup --- src/js/birth/birth.js | 346 ++++++++++++++++++++---------------------- 1 file changed, 163 insertions(+), 183 deletions(-) diff --git a/src/js/birth/birth.js b/src/js/birth/birth.js index 6bd70abd810..98a711105de 100644 --- a/src/js/birth/birth.js +++ b/src/js/birth/birth.js @@ -49,7 +49,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } = getPronouns(slave); el.append(titleText()); - const postBirthReactionText = postBirthReaction(); // update birthDamage at this time + const postBirthReactionText = postBirthReaction(); // update birthDamage at this time suddenBirthCheck(); el.append(preBirthScene()); if (!slaveDead) { @@ -2143,7 +2143,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) // at assignment else in halls/etc switch (slave.assignment) { - case "rest": + case Job.REST: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -2206,7 +2206,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } } break; - case "be a subordinate slave": + case Job.SUBORDINATE: if (tempSub) { ({his2} = getPronouns(tempSub).appendSuffix("2")); } @@ -2270,7 +2270,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "whore": + case Job.WHORE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -2312,7 +2312,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve the public": + case Job.PUBLIC: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -2430,7 +2430,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work a glory hole": + case Job.GLORYHOLE: if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { r.push(`Since ${he} is unable to leave ${his} box, ${he} doesn't have far to go. Instinctively, ${he} begins to push out ${firstText} baby. ${His} child is quickly extracted from the box. ${He} never notices, focused entirely on the fresh cock poking through the glory hole and the sensation of ${his} still very gravid middle rubbing the wall.`); @@ -2461,7 +2461,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "get milked": + case Job.MILKED: if (slave.fetish === "mindbroken") { if (V.dairyPregSetting > 0) { r.push(`Since the dairy is designed for pregnant cows, ${he} stays hooked up to the milkers. ${He} shows little interest in ${his} coming birth, instead focusing on ${his} milky breasts. Instinctively, ${he} begins to push out ${firstText} baby. ${He} shows no interest in ${his} child being removed from the milking stall, nor when ${his} still very gravid body is hosed off.`); @@ -2500,7 +2500,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a farmhand": // TODO: this needs a rewrite + case Job.FARMYARD: // TODO: this needs a rewrite if (slave.fetish === "mindbroken") { if (V.farmyardPregSetting > 0) { r.push(`Since the farmyard is designed for pregnant cows, ${he} stays hooked up to the milkers. ${He} shows little interest in ${his} coming birth, instead focusing on ${his} milky breasts. Instinctively, ${he} begins to push out ${firstText} baby. ${He} shows no interest in ${his} child being removed from the milking stall, nor when ${his} still very gravid body is hosed off.`); @@ -2539,7 +2539,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "please you": + case Job.FUCKTOY: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -2617,7 +2617,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "stay confined": + case Job.CONFINEMENT: if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { r.push(`Since ${he} is locked in a cell, ${he} doesn't have far to go. Instinctively, ${he} begins to push out ${firstText} baby. ${His} child is promptly taken and, after ${his} still very gravid body and the cell are hosed down, ${he} is returned to isolation.`); @@ -2638,8 +2638,8 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a servant": - case "be a servant": + case Job.QUARTER: + case Job.HOUSE: if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { r.push(`${He} returns to ${his} bed and strips before slipping into it. Instinctively ${he} begins to push out ${firstText} baby. ${His} child is promptly taken and ${he} rests awhile before returning to ${his} role as your ever-pregnant maid.`); @@ -2704,7 +2704,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the master suite": + case Job.MASTERSUITE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -2884,7 +2884,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the club": + case Job.CLUB: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -2940,7 +2940,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "choose her own job": + case Job.CHOICE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -2987,7 +2987,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "rest in the spa": + case Job.SPA: if (S.Attendant) { ({he2, him2} = getPronouns(S.Attendant).appendSuffix("2")); } @@ -3040,7 +3040,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a nanny": // TODO: this needs a rewrite + case Job.NURSERY: // TODO: this needs a rewrite if (V.MatronID !== 0) { ({he2} = getPronouns(S.Matron).appendSuffix("2")); } @@ -3093,7 +3093,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "learn in the schoolroom": + case Job.SCHOOL: if (S.Schoolteacher) { ({he2} = getPronouns(S.Schoolteacher).appendSuffix("2")); } @@ -3160,7 +3160,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "take classes": + case Job.CLASSES: if (random(1, 20) > suddenBirth) { r.push(`Or ${he} would have, had ${V.assistant.name} allowed it. Since ${he} can't leave the lesson, ${he} tries ${his} best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, especially since this will be a weekly occurrence in ${his} life, ${his} birth will be turned into a live broadcast. Blushing strongly, ${he} begins working on birthing ${firstText} baby, trying ${his} best to hide ${his} shame.`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { @@ -3182,7 +3182,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work in the brothel": + case Job.BROTHEL: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { @@ -3326,7 +3326,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Schoolteacher": + case Job.TEACHER: if (!canWalk(slave)) { if (random(1, 20) > suddenBirth) { r.push(`${He} calls for ${his} teaching aid to help position ${him} so the class may receive a lesson on childbirth. ${He} begins working on birthing ${firstText} baby, fully aware of ${his} watching students. ${He} demonstrates the proper ways to labor and how to deliver a baby${(slave.geneticQuirks.uterineHypersensitivity === 2) ? `even if your body is wracked by nonstop orgasm` : ``}. ${He} explains the infant's future as ${his} child taken and excuses the class for a short break in order to freshen up. Upon their return, ${he} begins a lesson on being a broodmother, as there is always a curious face locked onto ${his} still very gravid middle.`); @@ -3356,7 +3356,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be your Concubine": + case Job.CONCUBINE: if (slave.pregSource === -1 && slave.relationship === -3) { if (random(1, 20) > suddenBirth) { r.push(`You make sure to find time in your busy schedule to be at your concubine ${wife}'s side as ${he} gives birth to your children, even if it's`); @@ -3411,7 +3411,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "live with your Head Girl": + case Job.HEADGIRLSUITE: ({he2} = getPronouns(S.HeadGirl).appendSuffix("2")); if (slave.pregSource === V.HeadGirlID) { if (random(1, 20) > suddenBirth) { @@ -3458,7 +3458,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the arcade": + case Job.ARCADE: r.push(`Or ${he} would have been, if ${he} weren't locked in an arcade cabinet. A gush of liquid pours from ${slave.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 (slave.geneticQuirks.uterineHypersensitivity === 2) { r.push(`orgasming`); @@ -3466,7 +3466,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`body instinctively births ${firstText} baby into a waiting basket. As it is carried away, ${his} rear is cleaned up and the sign removed.`); break; - case "get treatment in the clinic": + case Job.CLINIC: if (S.Nurse) { ({he2, his2} = getPronouns(S.Nurse).appendSuffix("2")); } else { @@ -3511,7 +3511,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the cellblock": + case Job.CELLBLOCK: if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { r.push(`${He} is forced into a specially designed cell to give birth in. Instinctively, ${he} begins to push out ${firstText} baby. ${His} child is promptly taken and, after ${his} still very gravid body and the cell are hosed down, ${he} is moved back into a standard cell.`); @@ -3531,7 +3531,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the DJ": + case Job.DJ: if (random(1, 20) > suddenBirth) { r.push(`${He} heads to a private room in the back of the club accompanied by an influential patron. ${He} settles ${himself} onto his lap and begins working on ${firstText} baby, basking in his attention${UH}. Placing ${his} child outside the room, ${he} returns to pleasure ${his} tease.`); } else { @@ -3542,7 +3542,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Attendant": + case Job.ATTENDANT: if (random(1, 20) > suddenBirth) { r.push(`${S.Attendant.slaveName} waddles to a special pool designed to give birth in. Once ${he} is safely in the water, ${he} begins to push out ${firstText} baby,`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { @@ -3557,7 +3557,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Madam": + case Job.MADAM: if (random(1, 20) > suddenBirth) { r.push(`${He} heads to a private room in the back of the club accompanied by an influential patron. ${He} settles ${himself} onto his lap and begins working on birthing ${firstText} baby,`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { @@ -3573,7 +3573,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Stewardess": + case Job.STEWARD: if (random(1, 20) > suddenBirth) { r.push(`${He} strips and settles ${himself} into ${his} favorite chair while calling several servants to ${his} aid. ${He} begins to push out ${firstText} baby into the arms of ${his} waiting charges${UH}. ${His} child is promptly taken and ${he} reclines while ${his} servants clean and dress ${his} still very gravid body. Once ${he} has had enough, ${he} orders them to help ${him} up and get back to work on the penthouse.`); } else { @@ -3590,7 +3590,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Milkmaid": + case Job.MILKMAID: if (random(1, 20) > suddenBirth) { r.push(`${He} returns to ${his} bed and strips before slipping into it. ${He} makes ${himself} comfortable and begins working on birthing ${firstText} baby${UH}. ${He} is quite experienced in delivering ${his} cows' children, but ${he} finds it much more difficult to apply ${his} knowledge to ${himself}. ${His} child is promptly taken and, after a short rest, ${he} returns to caring for your cows, as gravid as ever.`); } else { @@ -3605,7 +3605,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Farmer": // TODO: this needs a rewrite + case Job.FARMER: // TODO: this needs a rewrite if (random(1, 20) > suddenBirth) { r.push(`${He} returns to ${his} bed and strips before slipping into it. ${He} makes ${himself} comfortable and begins working on birthing ${firstText} baby${UH}. ${He} is quite experienced in delivering ${his} cows' children, but ${he} finds it much more difficult to apply ${his} knowledge to ${himself}. ${His} child is promptly taken and, after a short rest, ${he} returns to caring for your cows, as gravid as ever.`); } else { @@ -3620,7 +3620,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Wardeness": + case Job.WARDEN: if (slave.fetish === "mindbroken") { if (random(1, 20) > suddenBirth) { r.push(`${He} enters an empty cell, strips, and seats ${himself} on the cot. ${He} instinctively begins birthing ${firstText} baby. ${His} child is promptly taken and ${he} returns to mindlessly breaking the confined slaves.`); @@ -3646,7 +3646,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Nurse": + case Job.NURSE: if (random(1, 20) > suddenBirth) { r.push(`${He} waddles to ${his} maternity ward and strips before settling into an open bed. ${He} makes ${himself} comfortable and begins working on birthing ${firstText} baby${UH}as ${his} assistants watch. ${His} child is promptly taken and ${he} is helped to the recovery ward until ${he} recovers enough to take over ${V.clinicName} again.`); } else { @@ -3656,7 +3656,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be your Head Girl": + case Job.HEADGIRL: if (random(1, 20) > suddenBirth) { r.push(`${He} returns to`); if (V.HGSuite === 1) { @@ -3677,7 +3677,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "guard you": + case Job.BODYGUARD: if (random(1, 20) > suddenBirth) { r.push(`Or ${he} would have, if ${he}'d stop refusing to leave your side. You lead ${him} someplace private and help ${him} undress. ${He} makes ${himself} comfortable and begins working on birthing ${firstText} baby${UH}. You call for a servant to quickly gather ${his} child as you help ${him} into the shower, making sure to wait outside for your loyal guardian to finish.`); } else { @@ -3687,7 +3687,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "recruit girls": + case Job.RECRUITER: if (random(1, 20) > suddenBirth) { r.push(`${He} returns to ${his} bed and strips before slipping into it. ${He} makes ${himself} comfortable and begins working on birthing ${firstText} baby${UH}. ${His} child is promptly taken and ${he} rests awhile before returning to finding new slaves for you.`); } else { @@ -4007,7 +4007,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) // at assignment else in halls/etc switch (slave.assignment) { - case "rest": + case Job.REST: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${slave.slaveName} is awoken from ${his} rest by a strong contraction. ${He} attempts to roll over, and failing that, begins to fall back to sleep as another contraction wracks ${his} body.`); @@ -4031,7 +4031,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be a subordinate slave": + case Job.SUBORDINATE: if (tempSub) { ({he2} = getPronouns(tempSub).appendSuffix("2")); } @@ -4060,7 +4060,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "whore": + case Job.WHORE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While attempting to attract customers to fuck ${his} grotesquely distended body, ${slave.slaveName}'s body begins to birth another of ${his} brood.`); @@ -4092,7 +4092,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve the public": + case Job.PUBLIC: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (pbw > 80) { @@ -4200,7 +4200,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work a glory hole": + case Job.GLORYHOLE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While sucking a dick through the hole of ${his} confining box, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} makes no effort to stop sucking the dicks presented to ${him}.`); @@ -4224,7 +4224,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "get milked": + case Job.MILKED: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While getting milked, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} show little interest and continues kneading ${his} breasts.`); @@ -4250,7 +4250,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "please you": + case Job.FUCKTOY: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While sitting absentmindedly nearby, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} pays no heed to it and continues waiting for you to use ${him}.`); @@ -4290,7 +4290,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "stay confined": + case Job.CONFINEMENT: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While waiting in confinement, ${slave.slaveName}'s body begins to birth another of ${his} brood. Since ${he} can't move, ${he} just lets things happen.`); @@ -4316,8 +4316,8 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a servant": - case "be a servant": + case Job.QUARTER: + case Job.HOUSE: if (slave.fetish === "mindbroken") { if (random(0, 1) === 1) { r.push(`While giving a slave oral service, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} disregards this development and continues working.`); @@ -4363,7 +4363,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the master suite": + case Job.MASTERSUITE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (V.masterSuiteUpgradeLuxury === 1) { @@ -4437,7 +4437,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the club": + case Job.CLUB: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${slave.slaveName} is showing off ${his} grotesque body and trying to attract citizens by dancing as well as ${he} can. During one of ${his} dances, ${his} body begins to birth another of ${his} brood. ${He} keeps on dancing, despite ${his} condition, until ${his} contractions drag ${him} onto ${his} bloated stomach.`); @@ -4473,7 +4473,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "choose her own job": + case Job.CHOICE: if (!canWalk(slave)) { r.push(`While thinking about what job to take as an immobile womb, ${slave.slaveName}'s body begins to birth another of ${his} brood. Unable to do anything but labor, ${he} gives in to what's coming.`); r.push(clothingBirth()); @@ -4492,7 +4492,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "rest in the spa": + case Job.SPA: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While soaking in the spa's pool, ${slave.slaveName}'s body begins to birth another of ${his} brood. As ${he} begins to ready ${himself} for birth,`); @@ -4537,7 +4537,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "learn in the schoolroom": + case Job.SCHOOL: if (!canWalk(slave)) { r.push(`During a lesson in ${V.schoolroomName}, ${slave.slaveName}'s body begins to birth another of ${his} brood. Since this isn't the first time ${he} interrupted the lesson this week, and ${he} is too heavy to move, ${he} is allowed to give birth right where ${he} is.`); humiliation = 1; @@ -4551,7 +4551,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "take classes": + case Job.CLASSES: if (!canWalk(slave)) { r.push(`During a lesson under ${V.assistant.name}, ${slave.slaveName}'s body begins to birth another of ${his} brood. Your assistant pauses and waits for ${him} to finish, having given up after the last several times`); r.push(clothingBirth()); @@ -4563,7 +4563,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work in the brothel": + case Job.BROTHEL: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (pbw > 80) { @@ -4671,7 +4671,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be your Concubine": + case Job.CONCUBINE: if (slave.fetish === "mindbroken") { } else { r.push(`${slave.slaveName} cradles ${his} swollen belly, waiting for your return, when ${his} body begins to birth another of ${his} brood. Saddened that you aren't there for the show, ${he} begins waddling off to find you. By the time ${he} reaches your office, ${he} is barely holding back ${his} child. You rise to meet ${him} and struggle to help ${him} onto the couch, just before it's to late.`); @@ -4680,7 +4680,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "live with your Head Girl": + case Job.HEADGIRLSUITE: ({he2, his2} = getPronouns(S.HeadGirl).appendSuffix("2")); if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { @@ -4705,11 +4705,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the arcade": + case Job.ARCADE: r.push(`A gush of liquid pours from the ${slave.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.`); break; - case "get treatment in the clinic": + case Job.CLINIC: if (S.Nurse) { ({he2, his2} = getPronouns(S.Nurse).appendSuffix("2")); } @@ -4722,7 +4722,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`delivers ${his} child before taking them away. Before long ${he2} returns to attend to ${his2} patient's perpetual pregnancy.`); break; - case "be confined in the cellblock": + case Job.CELLBLOCK: if (slave.fetish === "mindbroken") { r.push(`While waiting in confinement, ${slave.slaveName}'s body begins to birth another of ${his} brood. ${He} assumes a birthing position.`); r.push(clothingBirth()); @@ -4903,7 +4903,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } } else { switch (slave.assignment) { - case "rest": + case Job.REST: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${He} is helped back to ${his} bed and stripped before slipping into it. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and ${he} is encouraged to keep resting.`); @@ -4919,7 +4919,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be a subordinate slave": { + case Job.SUBORDINATE: { const domSlave = getSlave(slave.subTarget); if (domSlave) { ({he2} = getPronouns(domSlave).appendSuffix("2")); @@ -4959,7 +4959,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) break; } - case "whore": + case Job.WHORE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${He} is helped back to ${his} bed and stripped before slipping into it. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and ${he} rests awhile before returning to whoring.`); @@ -4975,7 +4975,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve the public": + case Job.PUBLIC: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${He} is helped back to ${his} bed and stripped before slipping into it. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and ${he} rests awhile before returning to slutting.`); @@ -4991,7 +4991,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work a glory hole": + case Job.GLORYHOLE: if (slave.fetish === "mindbroken") { r.push(`Since ${he} is unable to leave ${his} box, ${he} doesn't have far to go. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} quickly extracted from the box. ${He} never notices, focused entirely on the fresh cock poking through the glory hole.`); } else { @@ -4999,7 +4999,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "get milked": + case Job.MILKED: if (slave.fetish === "mindbroken") { if (V.dairyPregSetting > 0) { r.push(`Since the dairy is designed for pregnant cows, ${he} stays hooked up to the milkers. ${He} shows little interest in ${his} coming birth, instead focusing on ${his} milky breasts. Instinctively, ${he} begins to push out ${his} ${babies}. ${He} pays no heed to ${his} ${children} being removed from the milking stall, nor when ${he} is hosed off.`); @@ -5026,7 +5026,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a farmhand": + case Job.FARMYARD: animals = []; roll; if (V.canines.length > 0) { @@ -5087,7 +5087,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "please you": + case Job.FUCKTOY: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`You strip ${him} and help ${him} onto your couch. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and ${he} falls into a contented nap. You enjoy ${his} exhausted body until a servant comes to help clean ${him} up.`); @@ -5125,7 +5125,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "stay confined": + case Job.CONFINEMENT: if (slave.fetish === "mindbroken") { r.push(`Since ${he} is locked in a cell, ${he} doesn't have far to go. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and, after ${he} and the cell are hosed down, ${he} is returned to isolation.`); } else { @@ -5134,8 +5134,8 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a servant": - case "be a servant": + case Job.QUARTER: + case Job.HOUSE: if (slave.fetish === "mindbroken") { r.push(`${He} returns to ${his} bed and strips before slipping into it. Instinctively ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and ${he} rests awhile before returning to service your penthouse.`); } else { @@ -5143,7 +5143,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the master suite": + case Job.MASTERSUITE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (V.masterSuiteUpgradePregnancy === 1) { @@ -5231,7 +5231,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the club": + case Job.CLUB: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${He} is helped into a private room in the back of the club by a group of eager patrons. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} audience. ${His} ${childrenAre} promptly taken and, following a cleaning and fresh change of clothes, the audience has their way with ${him}.`); @@ -5255,7 +5255,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "choose her own job": + case Job.CHOICE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${He} is helped back to ${his} bed and stripped before slipping into it. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and, after a short rest, ${he} waits for someone to help ${him} to ${his} next job having forgotten ${he} was choosing it.`); @@ -5271,7 +5271,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "rest in the spa": + case Job.SPA: if (S.Attendant) { r.push(S.Attendant.slaveName); if (slave.fetish === "mindbroken") { @@ -5292,7 +5292,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`${his} helper. ${His} ${childrenAre} promptly taken and, following a cleaning, ${he} is taken back to the spa.`); break; - case "work as a nanny": + case Job.NURSERY: r.push(`${He} finishes`); if (V.nurseryChildren) { r.push(`changing the child's diaper`); @@ -5302,7 +5302,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`and heads back to ${his} little room before stripping and getting into bed. ${He} begins the ordeal of childbirth, and after ${he} is finished, rests for a bit while ${his} ${childrenAre} collected. After a short shower, ${he} returns to ${his} duties in ${V.nurseryName}.`); break; - case "learn in the schoolroom": + case Job.SCHOOL: r.push(`Having been notified in the weeks leading up to ${his} birth, ${he}`); if (canWalk(slave)) { r.push(`heads`); @@ -5324,12 +5324,12 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) humiliation = 1; break; - case "take classes": + case Job.CLASSES: r.push(`Or ${he} would have, had ${V.assistant.name} allowed it. Since ${he} can't leave the lesson, ${he} tries ${his} best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, ${his} birth will be turned into a live broadcast. Blushing strongly, ${he} begins working on birthing ${his} ${babies}, trying ${his} best to hide ${his} shame${(slave.geneticQuirks.uterineHypersensitivity === 2) ? `, which isn't helped by the fact that ${he} is convulsing with orgasms in the process` : ``}. Exhausted from the birth, ${he} is permitted a short break as ${his} ${childrenAre} collected to clean ${himself} up before the lesson is continued.`); humiliation = 1; break; - case "work in the brothel": + case Job.BROTHEL: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${He} is helped to a private room in the back of the brothel by a group of eager patrons. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} audience. ${His} ${childrenAre} promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with ${him}.`); @@ -5345,7 +5345,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Schoolteacher": + case Job.TEACHER: if (!canWalk(slave)) { r.push(`The class has been wondering why ${he} was sitting strangely, nude at the front of the class the last several weeks, today they learn why. ${He} has been planning this lesson for several months now. ${He} wiggles ${himself} into a comfortable spot and begins working on birthing ${his} ${babies}, ${(slave.geneticQuirks.uterineHypersensitivity === 2) ? `convulsing with orgasms in the process, while being` : ``} fully aware of ${his} watching students. ${He} demonstrates the proper ways to labor and how to deliver a baby. ${He} explains the infant's future as ${his} ${childrenAre} taken and excuses the class for a short break in order to freshen up.`); humiliation = 1; @@ -5355,8 +5355,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - - case "be your Concubine": + case Job.CONCUBINE: if (slave.pregSource === -1 && slave.relationship === -3) { r.push(`You make sure to find time in your busy schedule to be at your concubine ${wife}'s side as ${he} gives birth to your ${children}. You gently caress ${slave.slaveName}'s body as ${he} begins to push out ${his} ${babies}${UH}. You help ${him} upright and hold your ${children} to ${his} breasts. The two of you cuddle as you watch your ${newborns} suckle from their mother. Since ${he} is quite special to you, you allow ${him} the time to pick out names before ${his} ${children} must be taken away. When the time comes to pick up the ${newborns}, the slave servant is surprised to find ${(slave.pregType === 1) ? `a name-card` : `name-cards`} affixed to their ${(slave.pregType > 1) ? `blankets` : `blanket`}.`); if (slave.fetish !== "mindbroken") { @@ -5377,7 +5376,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "live with your Head Girl": + case Job.HEADGIRLSUITE: ({He2, he2, his2} = getPronouns(S.HeadGirl).appendSuffix("2")); if (slave.pregSource === V.HeadGirlID) { r.push(`${S.HeadGirl.slaveName} makes sure that the mother of ${his2} ${children} is happy and comfortable for the upcoming birth, even if they won't be spending much time with their offspring. ${He2} carefully undresses ${slave.slaveName}, all the while whispering sweet nothings in ${his} ear. ${He} begins to push out ${his} ${babies},`); @@ -5400,11 +5399,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the arcade": + case Job.ARCADE: r.push(`Or ${he} would have been, if ${he} weren't locked in an arcade cabinet. A gush of liquid pours from the ${slave.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} ${children} into the waiting basket${UH}. As they are carried away, ${his} rear is cleaned up and the sign removed.`); break; - case "get treatment in the clinic": + case Job.CLINIC: if (!canWalk(slave)) { r.push(`${He} is helped to the clinic's maternity ward.`); if (S.Nurse) { @@ -5436,7 +5435,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the cellblock": + case Job.CELLBLOCK: if (slave.fetish === "mindbroken") { r.push(`${He} is forced into a specially designed cell to give birth in. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and, after ${he} and the cell are hosed down, ${he} is moved back into a standard cell.`); } else { @@ -5444,19 +5443,19 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the DJ": + case Job.DJ: r.push(`${He} heads to a private room in the back of the club accompanied by an influential patron. ${He} settles ${himself} onto his lap and begins working on birthing ${his} ${babies}, basking in his attention${UH}. Placing ${his} ${children} outside the room, ${he} returns to pleasure ${his} tease.`); break; - case "be the Attendant": + case Job.ATTENDANT: r.push(`${S.Attendant.slaveName} waddles to a special pool designed to give birth in. Once ${he} is safely in the water, ${he} begins to push out ${his} ${babies}, something ${he} has been trained for ${(slave.geneticQuirks.uterineHypersensitivity === 2) ? `, even if ${he} was convulsing with orgasms in the process` : ``}. ${His} ${childrenAre} promptly taken and, following a cleaning, ${he} heads back to the main pool.`); break; - case "be the Matron": + case Job.MATRON: r.push(`${He} quickly waddles back to ${his} private room before stripping and calling in several slaves to assist ${him} in childbirth. ${He} has quite a bit of experience in taking care of children, but not as much in delivering them, and less so in delivering ${his} own. ${He} soon figures it out, though, and after an exhausting birthing ordeal, ${his} ${childrenAre} taken from ${him}, and ${he} is allowed a shower and a rest before returning to work.`); break; - case "be the Madam": + case Job.MADAM: r.push(`${He} heads to a private room in the back of the club accompanied by an influential patron. ${He} settles ${himself} onto his lap and begins working on birthing ${his} ${babies},`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { r.push(`convulsing with orgasms in the process and`); @@ -5464,19 +5463,19 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`basking in his attention as he strips ${him}. Placing ${his} ${children} outside the room, ${he} returns to get more intimate with ${his} catch.`); break; - case "be the Stewardess": + case Job.STEWARD: r.push(`${He} strips and settles ${himself} into ${his} favorite chair, while calling several servants to ${his} aid. ${He} begins to push out ${his} ${babies} into the arms of ${his} waiting charges${UH}. ${His} ${childrenAre} promptly taken and ${he} reclines while ${his} servants clean and dress ${him}. Once ${he} has had enough, ${he} orders them back to work on the penthouse.`); break; - case "be the Milkmaid": + case Job.MILKMAID: r.push(`${He} returns to ${his} bed and strips before slipping into it. ${He} makes ${himself} comfortable and begins working on birthing ${his} ${babies}${UH}. ${He} is quite experienced in delivering ${his} cows' children, but ${he} finds it much more difficult to apply ${his} knowledge to ${himself}. ${His} ${childrenAre} promptly taken and, after a short rest, ${he} returns to caring for your cows.`); break; - case "be the Farmer": + case Job.FARMER: r.push(`${He} heads to ${his} private room before stripping and calling in a couple of nearby slaves to aid ${him}. Though ${he} has delivered more than a few of ${his} livestocks' offspring, delivering ${his} own proves to be a slightly more difficult ordeal. ${He} manages, though, and after ${his} ${childrenAre} taken from ${him} and ${he}'s had a shower and a short rest, ${he} returns to looking after ${V.farmyardName}.`); break; - case "be the Wardeness": + case Job.WARDEN: if (slave.fetish === "mindbroken") { // FIXME: can Wardens be mindbroken? r.push(`${He} enters an empty cell, strips, and seats ${himself} on the cot. ${He} instinctively begins birthing ${his} ${babies}. ${His} ${childrenAre} promptly taken and ${he} returns to mindlessly breaking the confined slaves.`); } else { @@ -5484,11 +5483,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Nurse": + case Job.NURSE: r.push(`${He} waddles to ${his} maternity ward and strips before laying on an open bed. ${He} makes ${himself} comfortable and begins working on birthing ${his} ${babies}${UH}as ${his} assistants watch. ${His} ${childrenAre} promptly taken and ${he} is helped to the recovery ward until ${he} recovers enough to take over ${V.clinicName} again.`); break; - case "be your Head Girl": + case Job.HEADGIRL: r.push(`${He} returns to`); if (V.HGSuite === 1) { r.push(`${his} room's bed`); @@ -5506,11 +5505,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`and ${he} rests awhile before returning to managing your slaves.`); break; - case "guard you": + case Job.BODYGUARD: r.push(`Or ${he} would have, if ${he}'d stop refusing to leave your side. You lead ${him} someplace private and help ${him} undress. ${He} makes ${himself} comfortable and begins working on birthing ${his} ${babies}${UH}. You call for a servant to quickly gather ${his} ${children} as you help ${him} into the shower, making sure to wait outside for your loyal guardian to finish.`); break; - case "recruit girls": + case Job.RECRUITER: r.push(`${He} returns to ${his} bed and strips before slipping into it. ${He} makes ${himself} comfortable and begins working on birthing ${his} ${babies}${UH}. ${His} ${childrenAre} promptly taken and ${he} rests awhile before returning to finding new slaves for you.`); break; @@ -5569,7 +5568,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } } else { switch (slave.assignment) { - case "rest": + case Job.REST: if (slave.fetish === "mindbroken") { r.push(`${He} is placed on ${his} bed and stripped. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} watching helper. ${His} ${childrenAre} promptly taken and ${he} is encouraged to keep resting.`); } else { @@ -5582,7 +5581,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be a subordinate slave": { + case Job.SUBORDINATE: { const domSlave = getSlave(slave.subTarget); if (domSlave) { ({he2} = getPronouns(domSlave).appendSuffix("2")); @@ -5631,9 +5630,9 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) break; } - case "whore": - case "serve the public": - case "choose her own job": + case Job.WHORE: + case Job.PUBLIC: + case Job.CHOICE: if (slave.fetish === "mindbroken") { r.push(`${He} is placed on ${his} bed and stripped. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} watching helper. ${His} ${childrenAre} promptly taken and, following a cleaning and fresh change of clothes, ${he} is carried back to ${his} station.`); } else { @@ -5646,7 +5645,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work a glory hole": + case Job.GLORYHOLE: if (slave.fetish === "mindbroken") { r.push(`${He} is locked, nude, in a glory hole box and ordered to suck. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} quickly extracted from the box. ${He} never notices, focused entirely on the fresh cock poking through the glory hole.`); } else { @@ -5654,7 +5653,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "get milked": + case Job.MILKED: if (slave.fetish === "mindbroken") { if (V.dairyPregSetting > 0) { r.push(`${He} is hooked up to a milking machine and allowed to continue ${his} assignment. ${He} shows little interest in ${his} coming birth, instead focusing on ${his} milky breasts. Instinctively, ${he} begins to push out ${his} ${babies}. ${He} shows no interest in ${his} ${children} being removed from the milking stall, nor when ${he} is hosed off.`); @@ -5680,7 +5679,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "please you": + case Job.FUCKTOY: if (slave.fetish === "mindbroken") { r.push(`${He} is stripped and placed into your waiting arms upon your couch. Instinctively, ${he} begins to push out ${his} ${babies} as you tease ${his} breasts and belly, indifferent to you and ${his} watching helper. ${His} ${childrenAre} promptly taken and, following a cleaning and a fresh change of clothes, ${he} is returned to your office.`); } else { @@ -5701,8 +5700,8 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "stay confined": - case "be confined in the cellblock": + case Job.CONFINEMENT: + case Job.CELLBLOCK: if (slave.fetish === "mindbroken") { r.push(`${He} is placed in a specially designed cell to give birth in. Instinctively, ${he} begins to push out ${his} ${babies}. ${His} ${childrenAre} promptly taken and, after ${he} and the cell are hosed down, ${he} is moved back into a standard cell.`); } else { @@ -5710,8 +5709,8 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a servant": - case "be a servant": + case Job.QUARTER: + case Job.HOUSE: if (slave.fetish === "mindbroken") { r.push(`${He} is placed on ${his} cot and stripped. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} watching helper. ${His} ${childrenAre} promptly taken and, following a cleaning and fresh change of clothes, ${he} is carried back to ${his} station.`); } else { @@ -5724,7 +5723,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the master suite": + case Job.MASTERSUITE: if (slave.fetish === "mindbroken") { if (V.masterSuiteUpgradePregnancy === 1) { r.push(`${He} is carried to the birthing chamber and comfortably positioned. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} watching helper. ${His} ${childrenAre} promptly taken and, following a cleaning and fresh change of clothes, ${he} is carried back to`); @@ -5778,7 +5777,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the club": + case Job.CLUB: if (slave.fetish === "mindbroken") { r.push(`${He} is placed in a private room in the back of the club before an audience of eager patrons. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} audience. ${His} ${childrenAre} promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with ${him}.`); } else { @@ -5791,7 +5790,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "rest in the spa": + case Job.SPA: if (slave.fetish === "mindbroken") { r.push(`${He} is placed in a special flotation device and placed in a birthing pool. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} watching helper. ${His} ${childrenAre} promptly taken and, following a cleaning, ${he} is taken back to the spa.`); } else { @@ -5805,7 +5804,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "learn in the schoolroom": + case Job.SCHOOL: r.push(`${He} is placed on special seat at the front of the class and stripped. ${He} is being used as a learning aid in this lesson. Blushing strongly, ${he} begins working on birthing ${his} ${babies},`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { r.push(`convulsing with orgasms in the process and`); @@ -5825,14 +5824,14 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) humiliation = 1; break; - case "take classes": + case Job.CLASSES: r.push(`Or ${he} would have been, had ${V.assistant.name} allowed it. Since ${he} can't leave the lesson, ${he} tries ${his} best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, ${he} is forbidden from leaving. Additionally, ${his} birth will be turned into a live broadcast.`); humiliation = 1; r.push(clothingBirth()); r.push(`Exhausted from the birth, ${he} is permitted a short break as ${his} ${childrenAre} removed to be cleaned up before the lesson is continued.`); break; - case "work in the brothel": + case Job.BROTHEL: if (slave.fetish === "mindbroken") { r.push(`${He} is placed in a private room in the back of the brothel before an audience of eager patrons. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to ${his} audience. ${His} ${childrenAre} promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with ${him}.`); } else { @@ -5845,7 +5844,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Schoolteacher": + case Job.TEACHER: r.push(`${He} is stripped and placed on a specially designed seat before ${his} class. ${He} has been planning this lesson for several months now. ${He} wiggles ${himself} into a comfortable spot and begins working on birthing ${his} ${babies},`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { r.push(`convulsing with orgasms in the process and`); @@ -5854,7 +5853,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) humiliation = 1; break; - case "be your Concubine": + case Job.CONCUBINE: if (slave.pregSource === -1 && slave.relationship === -3) { r.push(`You make sure to find time in your busy schedule to be at your concubine ${wife}'s side as ${he} gives birth to your ${children}. You gently caress ${slave.slaveName}'s body as ${he} begins to push out your ${babies}${UH}. You help ${him} upright and hold your ${children} to ${his} ${breasts}. The two of you cuddle as you watch your ${newborns} suckle from their mother. Since ${he} is quite special to you, you allow ${him} the time to pick out names before ${his} ${children} must be taken away. When the time comes to pick up the ${newborns}, the slave servant is surprised to find`); if (slave.pregType === 1) { @@ -5875,7 +5874,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "live with your Head Girl": + case Job.HEADGIRLSUITE: ({he2} = getPronouns(S.HeadGirl).appendSuffix("2")); if (slave.pregSource === V.HeadGirlID) { r.push(`${S.HeadGirl.slaveName} makes sure that the mother of ${his2} ${children} is happy and comfortable for the upcoming birth, even if they won't be spending much time with their offspring. ${He2} carefully undresses ${slave.slaveName}, all the while whispering sweet nothings in ${his} ear. ${He} begins to push out ${his} ${babies},`); @@ -5894,11 +5893,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the arcade": + case Job.ARCADE: r.push(`Or ${he} would have been, if ${he} weren't locked in an arcade cabinet. A gush of liquid pours from the ${slave.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} ${children} into the waiting basket. As they are carried away, ${his} rear is cleaned up and the sign removed.`); break; - case "get treatment in the clinic": + case Job.CLINIC: r.push(`${He} is taken to the clinic's maternity ward.`); if (S.Nurse) { r.push(S.Nurse.slaveName); @@ -5990,7 +5989,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } } else { switch (slave.assignment) { - case "rest": + case Job.REST: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${slave.slaveName} is awoken from ${his} rest by a strong contraction. ${He} rolls over and begins to fall back to sleep as another wracks ${his} body.`); @@ -6014,7 +6013,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be a subordinate slave": { + case Job.SUBORDINATE: { const domSlave = getSlave(slave.subTarget); if (domSlave) { ({he2} = getPronouns(domSlave).appendSuffix("2")); @@ -6064,7 +6063,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) break; } - case "whore": + case Job.WHORE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While attempting to attract customers with ${his} gravid body, ${slave.slaveName}'s water breaks.`); @@ -6090,7 +6089,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve the public": + case Job.PUBLIC: if (slave.fetish === "mindbroken") { if (birthScene > 80 && canDoVaginal(slave)) { r.push(`While riding a citizen's dick, ${slave.slaveName}'s water breaks on him. Showing no signs of stopping, he shoves ${his} bulk off of him. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to who may be watching ${his} naked crotch. ${He} draws ${his} ${children} to ${his} ${breasts} before seeking out the next citizen's cock.`); @@ -6138,7 +6137,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work a glory hole": + case Job.GLORYHOLE: if (slave.fetish === "mindbroken") { r.push(`While sucking a dick through the hole of ${his} confining box, ${slave.slaveName}'s water breaks. ${He} makes no effort to stop sucking the dicks presented to ${him}.`); r.push(clothingBirth()); @@ -6156,7 +6155,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "get milked": + case Job.MILKED: if (slave.fetish === "mindbroken") { r.push(`While getting milked, ${slave.slaveName}'s water breaks. ${He} show little regard and continues kneading ${his} breasts.`); r.push(clothingBirth()); @@ -6168,7 +6167,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "please you": + case Job.FUCKTOY: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While sitting absentmindedly nearby, ${slave.slaveName}'s water breaks soaking the floor under ${him}. ${He} pays no heed to it and continues waiting for you to use ${him}.`); @@ -6208,13 +6207,13 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "guard you": + case Job.BODYGUARD: r.push(`Refusing to leave your side even when on the verge of giving birth, ${slave.slaveName} continues to serve as your bodyguard despite ${his} condition. A splashing sound and a loud groan emit from behind you. Your bodyguard has gone into labor. You quickly help ${him} to the ground and prepare for the coming birth.`); r.push(clothingBirth()); r.push(`You sit by your loyal guard holding ${his} ${children} until a servant comes by to take them away. Once ${he} is thoroughly rested, you help ${him} up and lead ${him} back to the penthouse to shower and change.`); break; - case "stay confined": + case Job.CONFINEMENT: if (slave.fetish === "mindbroken") { r.push(`While waiting in confinement, ${slave.slaveName}'s water breaks. ${He} assumes a birthing position.`); r.push(clothingBirth()); @@ -6226,7 +6225,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "recruit girls": + case Job.RECRUITER: r.push(`While on a video call with a potential recruit, ${slave.slaveName}'s water breaks. ${He} attempts to play it cool and act like nothing is happening but the worsening contractions finally get to ${him}.`); humiliation = 1; r.push(clothingBirth()); @@ -6242,15 +6241,15 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be your Head Girl": + case Job.HEADGIRL: r.push(`While overseeing your other slaves, ${slave.slaveName}'s water breaks. ${He} attempts to hold back the coming birth until ${he} can catch a break in ${his} duties but ultimately fails.`); humiliation = 1; r.push(clothingBirth()); r.push(`Upon finishing, ${he} quickly collects ${his} ${children} and orders the mess to be cleaned promptly without breaking ${his} dominant appearance.`); break; - case "work as a servant": - case "be a servant": + case Job.QUARTER: + case Job.HOUSE: if (slave.fetish === "mindbroken") { if (birthScene > 50) { r.push(`While giving a slave oral service, ${slave.slaveName}'s water breaks. ${He} disregards this development and continues working.`); @@ -6307,7 +6306,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the master suite": + case Job.MASTERSUITE: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { if (V.masterSuiteUpgradeLuxury === 1) { @@ -6393,7 +6392,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "serve in the club": + case Job.CLUB: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`${slave.slaveName} is showing off ${his} gravid body and trying to attract citizens as well as ${he} can. During one of ${his} teases, ${his} water breaks, soaking the floor. ${He} keeps on teasing, despite ${his} condition, until ${his} contractions drag ${him} to the floor.`); @@ -6430,7 +6429,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "choose her own job": + case Job.CHOICE: if (!canWalk(slave)) { r.push(`While deciding on ${his} post, ${slave.slaveName}'s water breaks. Unable to reach the prepared birthing room in time, ${he} pulls ${himself} into a secluded nook to give birth in.`); r.push(clothingBirth()); @@ -6447,7 +6446,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "rest in the spa": + case Job.SPA: if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { r.push(`While soaking in the spa's pool, ${slave.slaveName}'s water breaks. As ${he} begins to ready ${himself} for birth,`); @@ -6493,7 +6492,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work as a nanny": + case Job.NURSERY: r.push(`In the middle of`); if (V.nurseryChildren) { r.push(`changing a baby's diaper,`); @@ -6510,7 +6509,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "learn in the schoolroom": + case Job.SCHOOL: if (S.Schoolteacher) { ({he2, his2} = getPronouns(S.Schoolteacher).appendSuffix("2")); } @@ -6537,7 +6536,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "take classes": + case Job.CLASSES: if (!canWalk(slave)) { r.push(`During a lesson under ${V.assistant.name}, ${slave.slaveName}'s water breaks. Since ${he} can't leave the lesson, ${he} tries ${his} best to hold back the upcoming birth, not without your assistant noticing. As punishment for poor planning, ${he} is forbidden from leaving. Additionally, ${his} birth will be turned into a live broadcast.`); humiliation = 1; @@ -6551,7 +6550,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "work in the brothel": + case Job.BROTHEL: if (slave.fetish === "mindbroken") { if (birthScene > 80 && canDoVaginal(slave)) { r.push(`While riding a customer's dick, ${slave.slaveName}'s water breaks on him. Showing no signs of stopping, he shoves ${his} gravid bulk off of him. Instinctively, ${he} begins to push out ${his} ${babies}, indifferent to who may be watching ${his} naked crotch. ${He} draws ${his} ${children} to ${his} ${breasts} before seeking out the next customer's cock.`); @@ -6599,28 +6598,28 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the DJ": + case Job.DJ: r.push(`While DJing ${V.clubName}, ${slave.slaveName}'s water breaks. ${He} can't stop ${his} setlist without drawing attention so ${he} tries ${his} best to ride out the contractions. As soon as the opportunity arises, ${he} attempts to sneak off stage. However, a number of fans block ${his} progress keeping ${him} on stage. Before long the contractions are too much to bear and ${he} drops to the ground.`); humiliation = 1; r.push(clothingBirth()); r.push(`Exhausted, ${he} sits up and smiles to the crowd. ${His} show definitely drew attention to ${his} club. With a burst of energy ${he} leaps to ${his} feet, bows to the crowd, and gathers ${his} ${children}, before making ${his} way off stage. As ${he} leaves the public's gaze, ${he} shouts out with a wink "the next showing ought to be in about nine months".`); break; - case "be the Attendant": + case Job.ATTENDANT: r.push(`While tending to the guests in the spa, ${slave.slaveName}'s water breaks. The slaves quickly come to ${his} aid as the contractions get closer and closer together. Their hands are all over ${his} laboring body, unsure of what they should be doing.`); humiliation = 1; r.push(clothingBirth()); r.push(`${He} thanks ${his} charges for their less than helpful efforts and collects ${his} ${children} for removal. Upon returning, ${he} strips down and enters the pool, desperate for a break.`); break; - case "be the Matron": + case Job.MATRON: r.push(`While tending to the infants in ${V.nurseryName}, ${slave.slaveName}'s water breaks. The nannies quickly come to ${his} aid as the contractions get closer and closer together. They crowd around and watch, their curiosity getting the better of them.`); humiliation = 1; r.push(clothingBirth()); r.push(`${He} thanks ${his} assistants for their less than helpful efforts and collects ${his} ${children} for removal.`); break; - case "be the Madam": + case Job.MADAM: r.push(`While managing ${V.brothelName}, ${slave.slaveName}'s water breaks. Knowing ${he} lacks the time to leave, ${he} sets up a sign reading "Birthshow: ${cashFormat(100)} a viewer" and takes a seat.`); humiliation = 1; r.push(clothingBirth()); @@ -6628,7 +6627,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) cashX((100 * birthScene), "birth", slave); break; - case "be the Schoolteacher": + case Job.TEACHER: if (!canWalk(slave)) { r.push(`While teaching a lesson, ${slave.slaveName}'s water breaks. Sensing ${he} wouldn't be able to make it to the birthing area, ${he} instead chooses to act on the opportunity. Today's lesson will be on childbirth.`); humiliation = 1; @@ -6642,26 +6641,26 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Stewardess": + case Job.STEWARD: r.push(`While overseeing the house servants, ${slave.slaveName}'s water breaks. ${He} has no time to strip down so ${he} takes a seat and readies ${himself}. Commandingly, ${he} snaps ${his} fingers and orders ${his} charges to clean up the floor, assist ${him} with ${his} clothes, and be ready to take ${his} ${children} away.`); humiliation = 1; r.push(clothingBirth()); r.push(`Once ${he} catches ${his} breath, ${he} rises and takes the fresh change of clothing provided by ${his} servants before ordering them back to work.`); break; - case "be the Milkmaid": + case Job.MILKMAID: r.push(`While tending to ${his} stock, ${slave.slaveName}'s water breaks. ${He} hastily pulls ${himself} into a vacant stall and seats ${himself} in its corner.`); r.push(clothingBirth()); r.push(`Quickly, ${he} collects ${his} ${children} for removal before returning to ${V.dairyName}. The cows around ${his} stall all have a knowing look on their ${(V.dairyPregSetting > 0) ? `faces but with their own swollen bellies hanging heavily from them, they know that they soon will follow ${his} lead` : `faces`}.`); break; - case "be the Farmer": + case Job.FARMER: r.push(`While tending to some of ${his} livestock, ${slave.slaveName}'s water breaks. ${He} hastily finds a secluded corner and takes a seat on the (luckily fresh) hay.`); r.push(clothingBirth()); r.push(`Once ${he}'s finished, ${he} hands off ${his} ${children} to a nearby slave to look after for the time being before returning to what ${he} was previously doing.`); break; - case "be the Wardeness": + case Job.WARDEN: if (slave.fetish === "mindbroken") { r.push(`While punishing a slave, ${slave.slaveName}'s water breaks, soaking ${himU}. Indifferent, ${he} resumes beating ${himU} until the contractions are to much to bear. Settling to the floor, ${he} begins giving birth.`); r.push(clothingBirth()); @@ -6673,17 +6672,15 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be the Nurse": + case Job.NURSE: r.push(`While tending to your unwell slaves, ${slave.slaveName}'s water breaks. Counting the time between contractions, ${he} knows ${he} has no time to get to ${his} prepared birthing chamber. ${He} waddles into the nearest empty room and hoists ${his} gravid body into the examination chair, placing ${his} feet in the stirrups.`); r.push(clothingBirth()); r.push(`Quickly, ${he} collects ${his} ${children} for removal before retiring to the recovery ward. Within an hour of rest, ${he} is back on ${his} feet tending to ${his} charges.`); break; - case "be your Concubine": - if (slave.fetish === "mindbroken") { // TODO: WRITE BRANCH - r.push(`${slave.slaveName} cradles ${his} swollen belly, waiting for your return, when ${his} water breaks. Saddened that you aren't there for the show, ${he} begins waddling off to find you. By the time ${he} reaches your office, ${he} is barely holding back ${his} ${children}. You rise to meet ${him} and help ${him} onto the couch, just before it's too late.`); - r.push(clothingBirth()); - r.push(`Cradling your ${newborns}, the two of you rest for a spell before sending them off and spending some more intimate time together.`); + case Job.CONCUBINE: + if (slave.fetish === "mindbroken") { + r.push(`${He} is placed by your side. You strip ${him} as ${he} instinctively begins to push out ${his} ${babies}, indifferent to your wandering hands. ${His} ${childrenAre} promptly taken and, following a cleaning, a fresh change of clothes, and some private time with you, ${he} is carried back to your master suite.`); } else { r.push(`${slave.slaveName} cradles ${his} swollen belly, waiting for your return, when ${his} water breaks. Saddened that you aren't there for the show, ${he} begins waddling off to find you. By the time ${he} reaches your office, ${he} is barely holding back ${his} ${children}. You rise to meet ${him} and help ${him} onto the couch, just before it's too late.`); r.push(clothingBirth()); @@ -6691,7 +6688,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "live with your Head Girl": + case Job.HEADGIRLSUITE: ({he2} = getPronouns(S.HeadGirl).appendSuffix("2")); if (!canWalk(slave)) { if (slave.fetish === "mindbroken") { @@ -6716,11 +6713,11 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the arcade": + case Job.ARCADE: r.push(`A gush of liquid pours from the ${slave.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} ${children} into the waiting basket. As they are carried away, ${his} rear is cleaned up and the sign removed.`); break; - case "get treatment in the clinic": + case Job.CLINIC: if (S.Nurse) { ({he2, his2} = getPronouns(S.Nurse).appendSuffix("2")); } @@ -6738,7 +6735,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "be confined in the cellblock": + case Job.CELLBLOCK: if (slave.fetish === "mindbroken") { r.push(`While waiting in a cell in ${V.cellblockName}, ${slave.slaveName}'s water breaks. ${He} assumes a birthing position,`); r.push(clothingBirth()); @@ -6792,7 +6789,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`Feeling childbirth approaching, ${slave.slaveName} is helped to ${his} prepared birthing area.`); switch (slave.assignment) { - case "work a glory hole": + case Job.GLORYHOLE: r.push(`Since ${he} is unable to leave ${his} box, ${he} doesn't have far to go. ${He} quickly finishes the waiting dick before shifting ${himself} into a slightly, though not by much, more comfortable position. ${He} begins laboring on ${his} ${babies}. However, ${he} soon finds that ${he} is incapable of actually giving birth to ${his} ${children}. As blood begins to seep from ${his} nethers, ${he} desperately tries to get anyone's attention.`); App.Events.addParagraph(el, r); r = []; @@ -6805,8 +6802,8 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`agape, is all that remains of the unfortunate ${slave.slaveName}.`); break; - case "stay confined": - case "be confined in the cellblock": + case Job.CONFINEMENT: + case Job.CELLBLOCK: r.push(`Since ${he} is locked in a cell, ${he} doesn't have far to go. Reluctantly, ${he} begins laboring on ${his} ${babies}. However, ${he} soon finds that ${he} is incapable of actually giving birth to ${his} ${children}. As blood begins to seep from ${his} nethers, ${he} desperately tries to get anyone's attention.`); App.Events.addParagraph(el, r); r = []; @@ -6819,7 +6816,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) r.push(`agape, is all that remains of the unfortunate ${slave.slaveName}.`); break; - case "be confined in the arcade": + case Job.ARCADE: r.push(`Or ${he} would have been, if ${he} weren't locked in an arcade cabinet. A gush of liquid pours from the ${slave.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 attempts laboring on ${his} ${babies}. However, ${he} soon finds that ${he} is incapable of actually giving birth to ${his} ${children}. As blood begins to seep from ${his} nethers, ${he} desperately tries to get anyone's attention. The attendant rushes to ${his} aid, but fails to get the cabinet open in time to save ${slave.slaveName}. ${He} and ${his} ${children} were an unfortunate loss.`); break; @@ -7597,6 +7594,8 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; + case "a military uniform": + case "a red army uniform": case "a hijab and blouse": case "a slutty schutzstaffel uniform": case "a dirndl": @@ -8052,25 +8051,6 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false} = {}) } break; - case "a military uniform": - case "a red army uniform": - if (slave.fetish === "mindbroken") { - r.push(`${babies}, indifferent to the obvious wetness forming`); - if (slave.mpreg === 1) { - r.push(`under ${his} rear.`); - } else { - r.push(`over ${his} crotch.`); - } - } else { - r.push(`Quickly ${he} spreads ${his} legs apart and begins pushing out ${babyIntro}.`); - if (slave.fetish === "humiliation") { - r.push(`${He} is disappointed that ${his} skirt hides what's happening between ${his} legs.`); - } else { - r.push(`${He} does ${his} best to hide what's happening between ${his} legs.`); - } - } - break; - case "a schutzstaffel uniform": if (slave.fetish === "mindbroken") { r.push(`${babies}, indifferent to the obvious wetness forming`); -- GitLab