diff --git a/src/endWeek/saChoosesOwnClothes.js b/src/endWeek/saChoosesOwnClothes.js index 31cd1ba9301597bd11bab4105f7a2b36eef749bc..8e7927febcfa9d367ba021200a76fd088636254d 100644 --- a/src/endWeek/saChoosesOwnClothes.js +++ b/src/endWeek/saChoosesOwnClothes.js @@ -503,13 +503,13 @@ window.saChoosesOwnClothes = (function() { wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); } wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); - wardrobeAssignment.push({text: `and wears nothing more than an apronto tempt anyone watching ${his} work.`, clothes: "an apron"}); + wardrobeAssignment.push({text: `and wears nothing more than an apron to tempt anyone watching ${his} work.`, clothes: "an apron"}); } else { if(isItemAccessible("a nice maid outfit")) { wardrobeAssignment.push({text: `and wears a sturdy maid outfit, since anything else might be damaged by ${his} hard work around the penthouse.`, clothes: "a nice maid outfit"}); } wardrobeAssignment.push({text: `and wears a skimpy maid outfit to tempt anyone watching ${his} work.`, clothes: "a slutty maid outfit"}); - wardrobeAssignment.push({text: `and wears nothing more than an apronto tempt anyone watching ${his} work.`, clothes: "an apron"}); + wardrobeAssignment.push({text: `and wears nothing more than an apron to tempt anyone watching ${his} work.`, clothes: "an apron"}); } } @@ -565,6 +565,9 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("nice business attire")) { wardrobeFS.push({text: `and wears a formal suit to look more mature.`, clothes: "nice business attire"}); } + if(isItemAccessible("a Santa dress")) { + wardrobeFS.push({text: `and wears a dress referencing a figure of advanced age.`, clothes: "a Santa dress"}); + } wardrobeFS.push({text: `and wears only an apron in an attempt to make ${himself} seem more matronly.`, clothes: "an apron"}); } } else if(V.arcologies[0].FSYouthPreferentialist > 0) { @@ -763,6 +766,10 @@ window.saChoosesOwnClothes = (function() { } } else if(slave.actualAge < 18) { wardrobeTastes.push({text: `and chooses an outfit that somewhat resembles one of ${his} school uniforms.`, clothes: "a schoolgirl outfit"}); + } else if(slave.actualAge > 65) { + if(isItemAccessible("a Santa dress")) { + wardrobeTastes.push({text: `and chooses a dress that acknowledges ${his} advanced age while still looking sexy.`, clothes: "a Santa dress"}); + } } /* fetishes */ @@ -873,7 +880,7 @@ window.saChoosesOwnClothes = (function() { wardrobeTastes.push({text: `but goes nude, since as a nympho ${he} gets plenty of attention anyway, and considers clothes an unnecessary hindrance.`, clothes: "no clothing"}); } else if(slave.energy > 60) { wardrobeTastes.push({text: `and puts on some daring lingerie to draw attention to ${himself}.`, clothes: "attractive lingerie"}); - wardrobeTastes.push({text: `and goes toplesss to draw attention to ${himself}.`, clothes: "panties"}); + wardrobeTastes.push({text: `and goes topless to draw attention to ${himself}.`, clothes: "panties"}); if(isItemAccessible("kitty lingerie")) { wardrobeTastes.push({text: `and puts on some decorative lingerie to draw attention to ${himself}.`, clothes: "kitty lingerie"}); } @@ -886,6 +893,9 @@ window.saChoosesOwnClothes = (function() { if(isItemAccessible("kitty lingerie")) { wardrobeTastes.push({text: `and wears cute lingerie to show off ${his} merchandise while giving ${his} protruding belly plenty of room to hang free.`, clothes: "kitty lingerie"}); } + if(isItemAccessible("a Santa dress")) { + wardrobeTastes.push({text: `and chooses a dress that pokes fun at ${his} rotund figure while still looking sexy.`, clothes: "a Santa dress"}); + } if(isItemAccessible("attractive lingerie for a pregnant woman") && slave.energy > 70) { wardrobeTastes.push({text: `and wears pretty lingerie to show off ${his} merchandise and accentuate ${his} pregnancy while giving it plenty of room to hang free.`, clothes: "attractive lingerie for a pregnant woman"}); } else if(isItemAccessible("a maternity dress")) { diff --git a/src/js/utilJS.js b/src/js/utilJS.js index 02de1105f7e6c93e7073765fded9f61bed5227ad..7f2089c5d05312a35f26f4ee72b4547e577e9d95 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -187,7 +187,7 @@ window.Height = (function(){ midAge = 13; break; case 'XY': // male - case 'XXY': // Kinefelter syndrome male + case 'XXY': // Klinefelter syndrome male case 'XYY': // XYY syndrome male minHeight = 86; midHeight = height * 170 / 178; @@ -233,7 +233,7 @@ window.Height = (function(){ case 'XXX': // Triple X syndrome female result = nationalityMeanHeight(xxMeanHeight, nationality, race) * 1.03; break; - case 'XXY': // Kinefelter syndrome male + case 'XXY': // Klinefelter syndrome male result = nationalityMeanHeight(xyMeanHeight, nationality, race) * 1.03; break; case 'XYY': // XYY syndrome male diff --git a/src/js/vignettes.js b/src/js/vignettes.js index 536e20c03333cc3169b08403ce7bfe7f773d4133..d123090dd0d87bfecea707f06bd7ab246e04aa01 100644 --- a/src/js/vignettes.js +++ b/src/js/vignettes.js @@ -1965,7 +1965,7 @@ window.GetVignette = /** @param {App.Entity.SlaveState} slave */ function GetVig break; case "devout": vignettes.push({ - text: `a citizen catches ${him} praying to ${himself} as they inserted themsleves into ${him}, turning them off,`, + text: `a citizen catches ${him} praying to ${himself} as they inserted themselves into ${him}, turning them off,`, type: "rep", effect: -1, }); diff --git a/src/js/walkPastJS.js b/src/js/walkPastJS.js index ea8a5032da88a1b0cb2a5eaf63e4778a95ca7f09..9d7bb944ac1e6f6924c35a3d4b15f28ac92935a5 100644 --- a/src/js/walkPastJS.js +++ b/src/js/walkPastJS.js @@ -179,9 +179,9 @@ window.loverSlave = function(activeSlave) { if (_fuckSeed > 80 && _partnerSlave.lactation > 0) { t += `${name} loves how milky ${partnerName}'s tits are and has ${his} lips wrapped around a nipple. `; if (_partnerSlave.amp !== 1) { - t += `${partnerName} is left to moan lustfully and tweak ${his2} free nipple until ${his2} ${activeSlaveRel} has drinken ${his} fill.`; + t += `${partnerName} is left to moan lustfully and tweak ${his2} free nipple until ${his2} ${activeSlaveRel} has drank ${his} fill.`; } else { - t += `${partnerName} is left to moan lustfully and squirm with desire until ${his2} ${activeSlaveRel} has drinken ${his} fill and moves to ${his2} other nipple.`; + t += `${partnerName} is left to moan lustfully and squirm with desire until ${his2} ${activeSlaveRel} has drank ${his} fill and moves to ${his2} other nipple.`; } } else { t += `${name} loves having ${his} breasts suckled and has ${partnerName}'s lips wrapped around a nipple. `; @@ -270,7 +270,7 @@ window.loverSlave = function(activeSlave) { } else if (_partnerSlave.clit > 3) { t += `${his2} clit up the butt. `; if (activeSlave.anus > 1) { - t += `${name} can barely tell ${partnerName}'s unorthodox phalus is in there, but it's the thought that counts.`; + t += `${name} can barely tell ${partnerName}'s unorthodox phallus is in there, but it's the thought that counts.`; } else { t += `${name}'s tight anus and ${partnerName}'s clitdick work well together; ${name} can take it easily, and ${partnerName} gets to fuck a hole that hugs ${his2} sensitive rod tight.`; } @@ -585,9 +585,9 @@ window.loverSlave = function(activeSlave) { } } else { if (activeSlave.belly >= 5000) { - t += `${partnerName} has ${name} on ${his} back so that ${he2} can ride ${him} while lavashing attention on ${his} beloved stomach.`; + t += `${partnerName} has ${name} on ${his} back so that ${he2} can ride ${him} while lavishing attention on ${his} beloved stomach.`; } else { - t += `${name} has ${partnerName} on ${his2} back so that ${he} can fuck ${him2} while lavashing attention on ${his2} bulging stomach.`; + t += `${name} has ${partnerName} on ${his2} back so that ${he} can fuck ${him2} while lavishing attention on ${his2} bulging stomach.`; } } } else if (canDoAnal(_partnerSlave) && _partnerSlave.anus > 0 && _fuckSeed > 80) { @@ -701,7 +701,7 @@ window.loverSlave = function(activeSlave) { } t += `${himself2} `; if (activeSlave.belly >= 5000) { - t += `so ${he2} and ${name} are trying their hardest to trib with their ever expanding bobies in the way.`; + t += `so ${he2} and ${name} are trying their hardest to trib with their ever expanding bodies in the way.`; } else { t += `so ${name} is savoring the feeling of ${_his} navel tracing ${his} slit.`; } @@ -1151,7 +1151,7 @@ window.loverSlave = function(activeSlave) { if (canTalk(activeSlave)) { t += `starting a meal together. A third, less well trained slave has asked ${name} an innocent question, and is getting enthusiastic slave dogma in return. ${His} ${activeSlaveRel} smiles tolerantly.`; } else { - t += `have just woken up. ${name} is planning out how to better convince new slaves that they made the right choice. ${His} ${activeSlaveRel} just tolerently goes about tidying up while giving the occasional idea.`; + t += `have just woken up. ${name} is planning out how to better convince new slaves that they made the right choice. ${His} ${activeSlaveRel} just tolerantly goes about tidying up while giving the occasional idea.`; } break; case "adores men": diff --git a/src/pregmod/seHuskSlaveDelivery.tw b/src/pregmod/seHuskSlaveDelivery.tw index e79e9b722924aa672512d10758116bc7c8e2a173..dfe6ec1c9b95ee20e4ccd7992eef597ef51647bd 100644 --- a/src/pregmod/seHuskSlaveDelivery.tw +++ b/src/pregmod/seHuskSlaveDelivery.tw @@ -77,4 +77,3 @@ A slave came in fitting the description you provided. //You can't sustain $him and thus must return $him.// <</if>> </span> - diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index bae4516052606fa97b0e99453109a53d5156c728..3252c44b7059d3d968ec348346bc3b06f3da4fff 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -6562,7 +6562,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <br><<link "Punish $him for $his forgetfulness">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you<<if $PC.dick == 0>> don a strap-on and<</if>> get there, the poor <<if $activeSlave.pregKnown == 1>>pregnant <</if>>girl is pounding weakly against the refrigerator door to try to get someone's attention. $He looks relieved when you open the door, but $his relief turns to ashes when you shut the door behind you. $He shivers with cold and fear as you sternly point out the release, high up on the door, and then demand $his hands. You bind them together and loop them over the release before hoisting $his legs off the ground so that $his back is against the cold metal door and all $his weight is hanging off the release by $his arms. $He doesn't struggle until you tell $him $he can leave — if $he can get the release open like this. $He tries, but $he can't get enough leverage; $his spastic efforts get weaker as you pull $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>> away from the door and line <<if $PC.dick == 0>>the strap-on<<else>>your cock<</if>> up with $his <<if ($activeSlave.anus > 2)>>loose asspussy<<elseif ($activeSlave.anus > 1)>>asshole<<else>>tight little asshole<</if>>. Teeth chattering, legs shaking with cold, $he takes a buttfuck in the cold cooler, hanging from what $he should have used to let $himself out. When you finish, you hit it yourself and drop $his legs, letting $him unhook $himself and flee to the warmth outside. $He @@.gold;begs your pardon@@ abjectly as $he rubs $his <<if $activeSlave.belly >= 5000>> _belly $activeSlave.skin belly <<else>>$activeSlave.skin shoulders <</if>>to warm $himself up<<if $PC.dick == 0>><<else>>, ignoring the cum <<if ($activeSlave.anus > 2)>>leaking out of $his fucked-out anus<<elseif ($activeSlave.anus > 1)>>leaking out of $his now-gaped backdoor<<else>>filling $his still-tight anus<</if>><</if>>. + You're not close to the penthouse kitchen area, so it takes you some time to make your way there. By the time you<<if $PC.dick == 0>> don a strap-on and<</if>> get there, the poor <<if $activeSlave.pregKnown == 1>>pregnant <</if>>$girl is pounding weakly against the refrigerator door to try to get someone's attention. $He looks relieved when you open the door, but $his relief turns to ashes when you shut the door behind you. $He shivers with cold and fear as you sternly point out the release, high up on the door, and then demand $his hands. You bind them together and loop them over the release before hoisting $his legs off the ground so that $his back is against the cold metal door and all $his weight is hanging off the release by $his arms. $He doesn't struggle until you tell $him $he can leave — if $he can get the release open like this. $He tries, but $he can't get enough leverage; $his spastic efforts get weaker as you pull $his <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice little butt<</if>> away from the door and line <<if $PC.dick == 0>>the strap-on<<else>>your cock<</if>> up with $his <<if ($activeSlave.anus > 2)>>loose asspussy<<elseif ($activeSlave.anus > 1)>>asshole<<else>>tight little asshole<</if>>. Teeth chattering, legs shaking with cold, $he takes a buttfuck in the cold cooler, hanging from what $he should have used to let $himself out. When you finish, you hit it yourself and drop $his legs, letting $him unhook $himself and flee to the warmth outside. $He @@.gold;begs your pardon@@ abjectly as $he rubs $his <<if $activeSlave.belly >= 5000>> _belly $activeSlave.skin belly <<else>>$activeSlave.skin shoulders <</if>>to warm $himself up<<if $PC.dick == 0>><<else>>, ignoring the cum <<if ($activeSlave.anus > 2)>>leaking out of $his fucked-out anus<<elseif ($activeSlave.anus > 1)>>leaking out of $his now-gaped backdoor<<else>>filling $his still-tight anus<</if>><</if>>. <<set $activeSlave.trust -= 5>> <<= AnalVCheck()>> <</replace>> @@ -15691,23 +15691,23 @@ You tell $him kindly that you understand, and that $he'll be trained to address <br><br> "Oh noo, I have to <<s>>ati<<s>>fy a naughty little <<s>>choolgirl," <<case "goddess">> - girl?" _heA says beatifically. "When I'm through with you, you'll be as pregnant as I!" + $girl?" _heA says beatifically. "When I'm through with you, you'll be as pregnant as I!" <br><br> "Oh noo, I'm about to be impregnated by a godde<<ss>>," <<case "hypergoddess">> - girl?" _heA says beatifically. "When I'm through with you, you'll be struggling to move!" + $girl?" _heA says beatifically. "When I'm through with you, you'll be struggling to move!" <br><br> "Oh noo, I'm about to be bur<<s>>t by a <<s>>lut godde<<ss>>," <<case "loli">> - girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?" + $girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?" <br><br> - "Oh noo, I'm about to be dominated by a loli," + "Oh noo, I'm about to be dominated by a _loliA," <<case "preggololi">> - girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?" + $girl?" _heA says cutely. "If you think I'm so cute, why don't you lick my pussy?" <br><br> - "Oh noo, I'm about to be dominated by a <<s>>lutty loli," + "Oh noo, I'm about to be dominated by a <<s>>lutty _loliA," <<case "angel">> - girl?" _heA says beatifically. "I'm going to show you divine skill!" + $girl?" _heA says beatifically. "I'm going to show you divine skill!" <br><br> "Oh noo, I'm going to be taken to heaven," <<case "cherub">> @@ -15988,9 +15988,9 @@ You tell $him kindly that you understand, and that $he'll be trained to address <<case "goddess" "hypergoddess">> "Oh, lovely," the goddess says beatifically, <<case "loli">> - "K-kay," the loli says naïvely, + "K-kay," the _loliA says naïvely, <<case "preggololi">> - "Okay," the loli says excitedly, + "Okay," the _loliA says excitedly, <<case "angel">> "What? But..." the angel says reluctantly, <<case "cherub">> diff --git a/src/uncategorized/pPeacekeepersInfluence.tw b/src/uncategorized/pPeacekeepersInfluence.tw index 116ae7c6942ee3aa3577fce93965e73811bc892b..ead885aa7f6b80234f38f9ab484cf094ec678901 100644 --- a/src/uncategorized/pPeacekeepersInfluence.tw +++ b/src/uncategorized/pPeacekeepersInfluence.tw @@ -36,9 +36,9 @@ As you review intelligence from the area at your desk, <<case "hypergoddess">> The beautiful, massively gravid goddess appears with _hisA usual wash of radiant golden light, and gently calms _hisA squirming occupants until _heA has your attention. <<case "loli">> - The cute little loli pops up, literally, bouncing upward again and again until _heA is absolutely certain _heA has your attention. + The cute little _loliA pops up, literally, bouncing upward again and again until _heA is absolutely certain _heA has your attention. <<case "preggololi">> - The slutty little loli appears bent over flashing _hisA pregnant pussy at you. _HeA giggles and straightens up once _heA is absolutely certain you've given _hisA moist cleft enough attention. + The slutty little _loliA appears bent over flashing _hisA pregnant pussy at you. _HeA giggles and straightens up once _heA is absolutely certain you've given _hisA moist cleft enough attention. <<case "angel">> The beautiful angel appears in _hisA usual wash of radiant white light and gently folds _hisA wings behind _himA as _heA patiently awaits your attention. <<case "cherub">> diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw index 33a73276e34b68e04850540a9b1c1f1873a90451..fa509459bd64c96a6f4b8aea33f9e5b43999b1ac 100644 --- a/src/uncategorized/personalAssistantAppearance.tw +++ b/src/uncategorized/personalAssistantAppearance.tw @@ -133,7 +133,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "maturity preferentialist">> _HeA's quite mature, with a lean face that accentuates _hisA cheekbones. <<case "youth preferentialist">> - _HeA's surprisingly young, and looks as innocent as a computer generated image of a girl with a pornstar dick possibly can. + _HeA's surprisingly young, and looks as innocent as a computer generated image of a _girlA with a pornstar dick possibly can. <<case "slimness enthusiast">> _HeA's recently altered _hisA appearance to be slimmer and more athletic. <<case "body purist">> @@ -603,58 +603,58 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> - girl wearing a cute pink dress. + _girlA wearing a cute pink dress. <<case "supremacist">> - girl wearing shorts and a pink t-shirt with the words '<<= properMaster()>>'s little $arcologies[0].FSSupremacistRace princess' on the front. + _girlA wearing shorts and a pink t-shirt with the words '<<= properMaster()>>'s little $arcologies[0].FSSupremacistRace princess' on the front. <<case "subjugationist">> slavegirl wearing nothing but a leather collar and trying _hisA best to do master proud. <<case "roman revivalist">> - girl wearing a girl's stola. + _girlA wearing a girl's stola. <<case "aztec revivalist">> - girl wearing only an overshirt; _hisA cute little legs are complimented by _hisA twin tails. + _girlA wearing only an overshirt; _hisA cute little legs are complimented by _hisA twin tails. <<case "egyptian revivalist">> - girl wearing a simple white linen dress, kohl eye shadow and sandals. + _girlA wearing a simple white linen dress, kohl eye shadow and sandals. <<case "edo revivalist">> - girl wearing a kimono far too large for _himselfA. + _girlA wearing a kimono far too large for _himselfA. <<case "arabian revivalist">> - girl wearing a simple linen dress and a headscarf. + _girlA wearing a simple linen dress and a headscarf. <<case "chinese revivalist">> - girl wearing a cute silk qipao. + _girlA wearing a cute silk qipao. <<case "chattel religionist">> - girl wearing the garb of a priestess of the new faith. + _girlA wearing the garb of a priestess of the new faith. <<case "repopulation focus">> - girl wearing a loose dress, its middle bulges considerably from _hisA pregnancy. + _girlA wearing a loose dress, its middle bulges considerably from _hisA pregnancy. <<case "eugenics">> slavegirl wearing nothing but an overly complex chastity belt and trying _hisA best to do master proud. <<case "degradationist">> - girl wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off _hisA perky A-cup tits and the piercings through them. + _girlA wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off _hisA perky A-cup tits and the piercings through them. <<case "physical idealist">> - girl wearing spats and a tight shirt. _HeA occasionally renders _himselfA sweaty, as if just finishing exercising. + _girlA wearing spats and a tight shirt. _HeA occasionally renders _himselfA sweaty, as if just finishing exercising. <<case "hedonistic decadence">> - girl wearing spats barely pulled over _hisA big ass and a tight shirt that rides up _hisA chubby belly. It seems someone snuck out of gym class. + _girlA wearing spats barely pulled over _hisA big ass and a tight shirt that rides up _hisA chubby belly. It seems someone snuck out of gym class. <<case "gender radicalist">> - girl wearing shorts and a t-shirt. _HeA's changed _hisA appearance recently to make _himselfA quite androgynous. + _girlA wearing shorts and a t-shirt. _HeA's changed _hisA appearance recently to make _himselfA quite androgynous. <<case "gender fundamentalist">> - girl wearing a skirt and a white shirt. _HisA slightly swollen belly peeks out from under _hisA shirt causing _himA to blush whenever you glance at it. + _girlA wearing a skirt and a white shirt. _HisA slightly swollen belly peeks out from under _hisA shirt causing _himA to blush whenever you glance at it. <<case "asset expansionist">> - girl wearing a school swimsuit. _HisA breasts are unrealistically huge for _hisA young age and bulge lewdly around the straps of _hisA suit. + _girlA wearing a school swimsuit. _HisA breasts are unrealistically huge for _hisA young age and bulge lewdly around the straps of _hisA suit. <<case "transformation fetishist">> - girl wearing short shorts and a t-shirt. At first glance it looks like _heA stuck two overinflated balloons up _hisA shirt but with closer inspection they are revealed to be ridiculous implants. + _girlA wearing short shorts and a t-shirt. At first glance it looks like _heA stuck two overinflated balloons up _hisA shirt but with closer inspection they are revealed to be ridiculous implants. <<case "pastoralist">> - girl wearing shorts and a white shirt. There's a little wet spot over each of _hisA nipples. + _girlA wearing shorts and a white shirt. There's a little wet spot over each of _hisA nipples. <<case "maturity preferentialist">> - girl wearing a school uniform. _HeA keeps rubbing _hisA bottom, making it look like teacher just spanked _himA. + _girlA wearing a school uniform. _HeA keeps rubbing _hisA bottom, making it look like teacher just spanked _himA. <<case "youth preferentialist">> - girl wearing a child's dress. _HeA looks barely more than three. + _girlA wearing a child's dress. _HeA looks barely more than three. <<case "slimness enthusiast">> - girl wearing shorts and a white shirt. _HeA looks extremely thin. + _girlA wearing shorts and a white shirt. _HeA looks extremely thin. <<case "body purist">> - girl. _HeA's recently improved _hisA appearance to look more natural, with freckles and a winning smile. + _girlA. _HeA's recently improved _hisA appearance to look more natural, with freckles and a winning smile. <<default>> - girl wearing shorts and a white shirt. + _girlA wearing shorts and a white shirt. <</switch>> <<else>> - girl wearing shorts and a white shirt. + _girlA wearing shorts and a white shirt. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> A recognizable little representation of one of your slaves has _hisU head between _hisA legs, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the little _girlA orgasms, blushing furiously when _heA notices you watching. @@ -684,7 +684,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <</if>> <<case "preggololi">> - _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>girl with a large pregnant + _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFSAppearance != "subjugationist">>$arcologies[0].FSSupremacistRace <<elseif $assistantFSAppearance == "subjugationist">>$arcologies[0].FSSubjugationistRace <</if>>_girlA with a large pregnant <<if $assistantFSOptions>> <<switch $assistantFSAppearance>> <<case "paternalist">> @@ -692,7 +692,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF <<case "supremacist">> belly wearing a cute yellow dress. _HeA cradles _hisA swollen belly protectively, glowing with pride at carrying a $arcologies[0].FSSupremacistRace child. <<case "subjugationist">> - belly, wearing nothing but a pregnancy biometrics collar. The collar's display reads 'Carrying 2 more $arcologies[0].FSSubjugationistRace subhumans!', something the girl occasionally reads aloud to _himselfA. + belly, wearing nothing but a pregnancy biometrics collar. The collar's display reads 'Carrying 2 more $arcologies[0].FSSubjugationistRace subhumans!', something the _girlA occasionally reads aloud to _himselfA. <<case "roman revivalist">> belly wearing a girl's stola. <<case "aztec revivalist">> @@ -989,13 +989,13 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF slime with a pair of shorts and a shirt floating inside _himA. <</if>> <<if ($cockFeeder == 1) && (_paSeed == 1)>> - A recognizable little representation of one of your slaves has _hisU head in _hisA moist crotch, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the goo girl orgasms, nearly turning into a puddle when _heA notices you watching. + A recognizable little representation of one of your slaves has _hisU head in _hisA moist crotch, and is eating _himA out. The slave must be down in the kitchen, getting a meal out of the food dispensers. As you watch, the goo _girlA orgasms, nearly turning into a puddle when _heA notices you watching. <<elseif ($suppository == 1) && (_paSeed == 2)>> - A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, letting the slime girl insert _himselfA gently in and out of _hisU butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the goo girl notices you watching _himA, and attempts to retract entirely into the slave's ass. + A recognizable little representation of one of your slaves is down on _hisU knees in front of _himA, letting the slime _girlA insert _himselfA gently in and out of _hisU butt. The slave must be receiving _hisU drugs from one of the dildo dispensers. As you watch, the goo _girlA notices you watching _himA, and attempts to retract entirely into the slave's ass. <<elseif ($masturbationAllowed == 1) && (_paSeed == 3)>> _HeA's having sex with a recognizable little representation of one of your slaves, kissing _himU and giggling occasionally. The slave must be using one of the penthouse's many vibrators. _HeA sees you watching and blushes, but then reshapes _himselfA so you can see better. <<elseif (_paSeed == 4)>> - A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The goo girl is covering _hisU chest and is listening to the slave breathe; the slave must be getting a checkup. The goo girl is patting the _girlU's head reassuringly. + A recognizable little representation of one of your slaves is lying with _hisU head in _hisA lap. The goo _girlA is covering _hisU chest and is listening to the slave breathe; the slave must be getting a checkup. The goo _girlA is patting the _girlU's head reassuringly. <<elseif (_paSeed == 5) && ($invasionVictory == 1)>> _HeA's planting a very wet kiss on a representation of one of your security drones; _heA hugs it as best until it pops into _himA. When _heA sees you looking at _himA, _heA giggles and says, "What? I like him! He did really well during the invasion. I promise he won't rust in here!" <<elseif (_paSeed == 6) && ($studio == 1)>>