From 3e7ffb533688d00187e745e29ca864233e08d630 Mon Sep 17 00:00:00 2001 From: klorpa <30924131+klorpa@users.noreply.github.com> Date: Tue, 18 Jun 2019 19:42:13 -0500 Subject: [PATCH] CareerDay --- src/js/utilJS.js | 92 ++++++++- src/pregmod/eliteTakeOverResult.tw | 4 +- src/pregmod/newChildIntro.tw | 12 +- src/pregmod/seHuskSlaveDelivery.tw | 2 +- .../widgets/playerDescriptionWidgets.tw | 2 +- src/uncategorized/RESS.tw | 33 ++-- src/uncategorized/RETS.tw | 4 +- src/uncategorized/clubReport.tw | 2 +- src/uncategorized/growthResearchInstitute.tw | 2 +- src/uncategorized/lecoleDesEnculees.tw | 2 +- src/uncategorized/longSlaveDescription.tw | 38 ++-- src/uncategorized/newSlaveIntro.tw | 37 +++- src/uncategorized/pHostageAcquisition.tw | 21 ++- src/uncategorized/pRivalryCapture.tw | 24 +-- src/uncategorized/peHeadgirlConcubine.tw | 2 +- src/uncategorized/prestigiousSlave.tw | 2 +- src/uncategorized/reBoomerang.tw | 1 + src/uncategorized/reCitizenHookup.tw | 174 +++++++++--------- src/uncategorized/reMalefactor.tw | 2 +- src/uncategorized/reMilfTourist.tw | 3 +- src/uncategorized/reNickname.tw | 6 +- src/uncategorized/reRelationshipAdvice.tw | 4 +- src/uncategorized/reShelterInspection.tw | 84 +++++---- src/uncategorized/reStaffedMorning.tw | 2 +- src/uncategorized/resFailure.tw | 1 + src/uncategorized/saLiveWithHG.tw | 2 +- src/uncategorized/saLongTermEffects.tw | 4 +- src/uncategorized/slaveInteract.tw | 2 +- 28 files changed, 343 insertions(+), 221 deletions(-) diff --git a/src/js/utilJS.js b/src/js/utilJS.js index 487cc9bf573..9d499cd0296 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -2144,6 +2144,96 @@ window.pronounReplacer = function(slavetext) { return slavetext; }; +window.convertCareer = function(slave) { + const V = State.variables; + let job = slave.career; + if ((V.diversePronouns === 1) && (slave.pronoun === App.Data.Pronouns.Kind.male)) { + switch (job) { + case "a dominatrix": + job = "a dominator"; + break; + case "a farmer's daughter": + job = "a farmer's son"; + break; + case "a handmaiden": + job = "a handservant"; + break; + case "a lady courtier": + job = "a gentleman courtier"; + break; + case "a landlady": + job = "a landlord"; + break; + case "a madam": + job = "a brothel owner"; + break; + case "a maid": + job = "a housekeeper"; + break; + case "a mail-order bride": + job = "a mail-order groom"; + break; + case "a mistress": + job = "a kept man"; + break; + case "a nun": + job = "a monk"; + break; + case "a nursemaid": + job = "a child's nurse"; + break; + case "a procuress": + job = "a procurer"; + break; + case "a shrine maiden": + job = "a shrine priest"; + break; + case "a weathergirl": + job = "a weatherman"; + break; + case "an air host": + job = "an air host"; + break; + case "being homeschooled by her parents": + job = "being homeschooled by his parents"; + break; + case "a camgirl": + case "a cowgirl": + case "a girl scout": + case "a paper girl": + case "a party girl": + job = job.replace(/girl/g, "boy"); + break; + case "a businesswoman": + case "a camerawoman": + case "a delivery woman": + case "a fisherwoman": + case "a milkwoman": + case "a noblewoman": + case "a repairwoman": + case "a saleswoman": + case "a stuntwoman": + case "an ice cream woman": + job = job.replace(/woman/g, "man"); + break; + case "a housewife": + case "a trophy wife": + job = job.replace(/wife/g, "husband"); + break; + case "a cocktail waitress": + case "a waitress": + case "a seamstress": + job = job.replace(/ress/g, "er"); + break; + case "a child actress": + case "an actress": + job = job.replace(/ress/g, "or"); + break; + } + } + return job; +}; + window.HackingSkillMultiplier = function() { const V = State.variables; @@ -2961,7 +3051,7 @@ App.Utils.slaveIndexForId = function(id) { }; /** - * Sets temporary variables named by the scheme, dscribed below, to pronouns for the given slave + * Sets temporary variables named by the scheme, described below, to pronouns for the given slave * @param {App.Entity.SlaveState} slave * @param {any} [suffix] pronounsSuffix. Anything that can be converted to string. * @param {string[]} [pronouns] requested pronouns. Defaults to all pronoun forms. diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw index c3a651369e6..96d4d98584d 100644 --- a/src/pregmod/eliteTakeOverResult.tw +++ b/src/pregmod/eliteTakeOverResult.tw @@ -137,7 +137,7 @@ <</if>> <<set _origin = "$He was a member of the Societal Elite, captured in their failed attempt at expressing their displeasure.">> <<set $activeSlave.origin = _origin>> - <<set $activeSlave.career = "a well connected individual">> + <<set $activeSlave.career = "a well-connected individual">> <<set $activeSlave.prestige = either(2,2,3)>> /* 33% chance of getting level 3 prestige */ <<set $activeSlave.prestigeDesc = "$He was once considered influential in society, but now $he's the one getting fucked.">> <<set $activeSlave.face = random(70,100)>> @@ -181,7 +181,7 @@ <</if>> <<set _origin = "$He was a member of the Societal Elite, captured in their failed attempt at expressing their displeasure.">> <<set $activeSlave.origin = _origin>> - <<set $activeSlave.career = "a well connected individual">> + <<set $activeSlave.career = "a well-connected individual">> <<set $activeSlave.prestige = either(2,2,3)>> <<set $activeSlave.prestigeDesc = "$He was once considered influential in society, but now $he's the one getting fucked.">> <<set $activeSlave.face = random(70,100)>> diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index 0f19f69654a..a0b1fa40f75 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -704,7 +704,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<else>> up $his poor little butthole, making the poor $girl struggle desperately with anal pain. <</if>> - You take $him, hard, while passersby stare at $him as $he gets pounded over a rail. $He takes the fuck obediently, all the while observing the passing spectators. $He might not be a humiliation fetishist, but $he is @@.hotpink;willing to submit@@ to being used as a sex slave in public and may even grow to enjoy it. + You take $him, hard, while passersby stare at $him as $he gets pounded over a rail. $He takes the fuck obediently, all the while <<if canSee($activeSlave)>>observing<<elseif canHear($activeSlave)>>overhearing<<else>>imagining<</if>> the passing spectators. $He might not be a humiliation fetishist, but $he is @@.hotpink;willing to submit@@ to being used as a sex slave in public and may even grow to enjoy it. <<set $activeSlave.devotion += 4>> <<if random(1,100) > 60 && $activeSlave.fetish == "none">> <<set $activeSlave.fetish = "humiliation">> @@ -1046,7 +1046,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.health -= 10>> <<set $activeSlave.trust -= 100>> <<replace "#result">> - You escort $him to the remote surgery and strap $him face-up with $his stomach bare. $He doesn't understand what's coming for a while, even giggling as $his belly is carefully cleaned and disinfected. $He begins to panic at the sight of the approaching surgical manipulators, screaming out as they cut into $his abdomen. $He squeals in horror as $his womb and ovaries are extracted before $his eyes. $He will never bear children, and will @@.mediumorchid;remember $his status@@ with every fucking $he receives. Your absolute power is rightfully @@.gold;terrifying@@ to $his undeveloped mind. + You escort $him to the remote surgery and strap $him face-up with $his stomach bare. $He doesn't understand what's coming for a while, even giggling as $his belly is carefully cleaned and disinfected. $He begins to panic at the <<if canSee($activeSlave)>>sight<<elseif canHear($activeSlave)>>sound<<else>>touch<</if>> of the approaching surgical manipulators, screaming out as they cut into $his abdomen. $He squeals in horror as $his womb and ovaries are extracted before $his eyes. $He will never bear children, and will @@.mediumorchid;remember $his status@@ with every fucking $he receives. Your absolute power is rightfully @@.gold;terrifying@@ to $his undeveloped mind. <</replace>> <</link>> <</if>> @@ -1151,7 +1151,13 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <br><<link "Give $him a lewd tramp stamp">> <<set $activeSlave.stampTat = either("advertisements", "degradation", "rude words")>> <<replace "#result">> - You bring $him down to the studio, lay the compliant $girl in the chair face-down, and select a sufficiently lewd pattern to decorate $his lower back. When the automated tattooing is done, a topical application of analgesics leaves $him with nothing more than a slight ache there. When allowed to stand, $he immediately turns $his back to one of the studio's full length mirrors and cranes around to gawk at the picture just over $his butt. $He wiggles $his rear and giggles at the drawing moving along with it. It seems $he @@.hotpink;enjoys it.@@ + You bring $him down to the studio, lay the compliant $girl in the chair face-down, and select a sufficiently lewd pattern to decorate $his lower back. When the automated tattooing is done, a topical application of analgesics leaves $him with nothing more than a slight ache there. When + <<if canSee($activeSlave)>> + allowed to stand, $he immediately turns $his back to one of the studio's full length mirrors and cranes around to gawk at the picture just over $his butt. $He wiggles $his rear and giggles at the drawing moving along with it. + <<else>> + you touch the are of skin around $his new tattoo, $activeSlave.slaveName, apparently finding this ticklish, starts into an uncontrollable giggling fit that you are unable to snap $him out of for a few minutes. + <</if>> + It seems $he @@.hotpink;enjoys it.@@ <<set $activeSlave.devotion += 5>> <</replace>> <</link>> diff --git a/src/pregmod/seHuskSlaveDelivery.tw b/src/pregmod/seHuskSlaveDelivery.tw index 0fe578e2686..5104062d01a 100644 --- a/src/pregmod/seHuskSlaveDelivery.tw +++ b/src/pregmod/seHuskSlaveDelivery.tw @@ -26,7 +26,7 @@ <<set $activeSlave.fetish = "mindbroken">> <<set $activeSlave.fetishStrength = 10>> <<set $activeSlave.fetishKnown = 1>> -<<set $activeSlave.career = "a fuckdoll">> +<<set $activeSlave.career = "a Fuckdoll">> <<set $activeSlave.behavioralFlaw = "none">> <<set $activeSlave.behavioralQuirk = "none">> <<set $activeSlave.sexualFlaw = "none">> diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw index a7d6cc6d538..dcf9177d831 100644 --- a/src/pregmod/widgets/playerDescriptionWidgets.tw +++ b/src/pregmod/widgets/playerDescriptionWidgets.tw @@ -694,7 +694,7 @@ <<elseif _passage == "Economics">> <<if $PC.career == "servant">> <<if $PC.ballsImplant > 3>> - Your dress and apron bulges with your enormous balls, you had to have your dresses tailored so that the swinging mass of your sack would stop bursting seams inadvertently. + Your dress and apron bulges with your enormous balls; you had to have your dresses tailored so that the swinging mass of your sack would stop bursting seams inadvertently. <<elseif $PC.ballsImplant == 3>> Your dress and apron bulges with your enormous balls. <<elseif $PC.ballsImplant == 2>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 57e1cd6615f..dad97a00eb7 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -238,7 +238,7 @@ Finishing your work, you lean back for a well-deserved break. Your peace is quic in a desperate attempt at taking control. <<if $HeadGirl != 0>> <<setLocalPronouns $HeadGirl 2>> - <<setSpokenLocalPronouns $HeadGirl $activeSlave>> + <<setSpokenLocalPronouns $activeSlave $HeadGirl>> <<run Enunciate($HeadGirl)>> You jump in surprise as $HeadGirl.slaveName tackles $him off you and to the floor <<if $HeadGirl.skill.combat > 0>> @@ -299,7 +299,7 @@ Your slaves are required to take very good care of themselves, and your best one <<elseif $activeSlave.belly >= 5000>> $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<elseif $activeSlave.bellyImplant >= 3000>>protruding<<else>>sloshing<</if>> belly parting $his legs as $he goes, <</if>> -moaning at the pleasurable feeling of a good stretch. $He sets the lotion bottle on the ground next to $him, dispenses a little, and carefully rubs it into the tops of $his feet. When $he reaches $his ankles, still bent almost double, $he <<if canSee($activeSlave)>>catches sight of you watching $him from between $his legs<<else>>picks up the sound of your breathing<</if>>. $He smiles at you and keeps working. +moaning at the pleasurable feeling of a good stretch. $He sets the lotion bottle on the ground next to $him, dispenses a little, and carefully rubs it into the tops of $his feet. When $he reaches $his ankles, still bent almost double, $he <<if canSee($activeSlave)>>catches sight of you watching $him from between $his legs<<elseif canHear($activeSlave)>>picks up the sound of your breathing<<else>>realizes that you're there watching $him<</if>>. $He smiles at you and keeps working. <br><br> $He shifts $his <<if $activeSlave.hips > 2>> @@ -1694,7 +1694,7 @@ You come face to face with <<EventNameLink>> in a hallway of your penthouse, ent <<if !canTalk($activeSlave)>> $He uses gestures to apologize for $his rudeness, and then gets to $his knees so $he can use $his hands to gesture more clearly. $His hands are shaky as $he begs, making two false starts before unmistakably gesturing to ask you to cut $his balls off. Once $he <<if canSee($activeSlave)>>sees<<else>>figures<</if>> that you understand, $he begins to cry openly. $He gestures that $he can barely get off wearing $his chastity cage, that it hurts when $he does, and that $he's constantly oppressed by the need for release. $He thinks that it would be easier to be soft all the time, so $he could climax without discomfort. $He begs hard, and promises to be a good little bitch. <<else>> - "Plea<<s>>e, <<Master>>," the prostrate slave <<say>>s shakily, sounding like $he's on the verge of tears. "P-plea<<s>>e cut my ball<<s>> off." <<if canHear($activeSlave)>>Hearing $himself <<say>> it, $he<<else>>$He<</if>> begins to cry openly. "I c-can't t-take it anymore. I can b-barely get off wearing thi<<s>> cage on my dick, and when I d-do, it h-hurt<<s>>," $he sobs. "I need to g-g-get off <<s>>-<<s>>o bad. Plea<<s>>e, plea<<s>>e, if I were <<s>>oft all the time, I wouldn't get hard, <<s>>o I could come wh-whenever." $He looks up at you in supplication, tears streaking $his face. "Plea<<s>>e, <<Master>>! I'll be <<s>>-<<s>>uch a good little bitch, I promi<<s>>e!" + "Plea<<s>>e, <<Master>>," the prostrate slave <<say>>s shakily, sounding like $he's on the verge of tears. "P-plea<<s>>e cut my ball<<s>> off." <<if canHear($activeSlave)>>Hearing $himself <<say>> it, $he<<else>>$He<</if>> begins to cry openly. "I c-can't t-take it anymore. I can b-barely get off wearing thi<<s>> cage on my dick, and when I d-do, it h-hurt<<s>>," $he sobs. "I need to g-g-get off <<s>>-<<s>>o bad. Plea<<s>>e, plea<<s>>e, if I were <<s>>oft all the time, I wouldn't get hard, <<s>>o I could come wh-whenever." $He <<if canSee($activeSlave)>>looks up at<<else>>angles $his head towards you<</if>> you in supplication, tears streaking $his face. "Plea<<s>>e, <<Master>>! I'll be <<s>>-<<s>>uch a good little bitch, I promi<<s>>e!" <</if>> <<case "used whore">> @@ -1872,7 +1872,7 @@ If you went with $him, you could certainly show off a little. <<case "millenary">> -Late one night, <<EventNameLink>> comes to see you. Strangely, several of your other slaves are stealing glances at $him as $he does. $He seems oddly proud of $himself. Asked why, $he says, "It's my millenary, <<Master>>. The arcology has logged me getting fucked 999 times." The other slaves obviously view it as significant, too. +Late one night, <<EventNameLink>> comes to see you. Strangely, several of your other slaves are stealing glances at $him as $he does. $He seems oddly proud of $himself. Asked why, $he says, "It'<<s>> my millenary, <<Master>>. The arcology has logged me getting fucked 999 time<<s>>." The other slaves obviously view it as significant, too. <br><br> As the Free Cities grow and evolve, slave culture does too. It seems this is a new tradition among obedient sex slaves. $He obviously expects you to do the honors, and it seems the rest of your girls are looking forward to it. @@ -2449,7 +2449,8 @@ ripped biceps, and strapping lats. <<if $activeSlave.dick > 2>>$His massive cock <<else>> slim, <</if>> -with a trim chest, narrow hips and not much of an ass to speak of. Despite the myriad ways a Free Cities slaveowner can give his property tits and asses, you've held off for now, keeping $him lithe. <<if $activeSlave.amp != 1>> +with a trim chest, narrow hips and not much of an ass to speak of. Despite the myriad ways a Free Cities slaveowner can give his property tits and asses, you've held off for now, keeping $him lithe. +<<if $activeSlave.amp != 1>> $He comes before you for a routine nude inspection, obediently standing before your desk with $his hands crossed <<if $activeSlave.belly >= 30000>> atop $his _belly @@ -2466,11 +2467,11 @@ A perfectly devoted slave might display $himself, and a rebellious one might try <<case "diet">> -<<EventNameLink>> is on a diet, and $he needs it. That doesn't make it any easier for $him. Your slaves are not permitted time to waste over meals. They enter the simple kitchen, drink their allotted portion of slave food out of a cup, and get on with their duties.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>> Despite eating for <<if $activeSlave.pregType <= 1>>two<<elseif $activeSlave.pregType >= 10>>far too many<<elseif $activeSlave.pregType == 9>>ten<<elseif $activeSlave.pregType == 8>>nine<<elseif $activeSlave.pregType == 7>>eight<<elseif $activeSlave.pregType == 6>>seven,<<elseif $activeSlave.pregType == 5>>six<<elseif $activeSlave.pregType == 4>>five<<elseif $activeSlave.pregType == 3>>four<<else>>three<</if>>, $his diet is still in full effect.<</if>> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> catches $activeSlave.slaveName, whose cup is always filled less than halfway, skulking around in the hope that one of the others will take $his eyes off $his cup, or even leave leftovers. +<<EventNameLink>> is on a diet, and $he needs it. That doesn't make it any easier for $him. Your slaves are not permitted time to waste over meals. They enter the simple kitchen, drink their allotted portion of slave food out of a cup, and get on with their duties.<<if $activeSlave.preg > $activeSlave.pregData.normalBirth/1.33>> Despite eating for <<if $activeSlave.pregType <= 1>>two<<elseif $activeSlave.pregType >= 10>>far too many<<else>><<= num($activeSlave.pregType + 1)>><</if>>, $his diet is still in full effect.<</if>> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> catches $activeSlave.slaveName, whose cup is always filled less than halfway, skulking around in the hope that one of the others will take $his eyes off $his cup, or even leave leftovers. <<case "huge naturals">> -<<EventNameLink>> comes before you naked for a routine inspection. You take particular care to examine $his massive breasts; since they've grown so large it's necessary to check for unsightly veins, stretch marks, and the like. You note $his big nipples with appreciation. Since $his breasts are so enormous and completely free of implants, they're quite saggy. When $he stands, +<<EventNameLink>> comes before you naked for a routine inspection. You take particular care to examine $his massive breasts, since they've grown so large it's necessary to check for unsightly veins, stretch marks, and the like. You note $his big nipples with appreciation. Since $his breasts are so enormous and completely free of implants, they're quite saggy. When $he stands, <<if $activeSlave.boobShape == "saggy" || $activeSlave.boobShape == "downward-facing">> $his nipples face out and down. <<else>> @@ -8115,7 +8116,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<replace "#result">> You instruct $him to get cleaned up and get dressed in $his nicest clothing. $He obeys, mystified, and is further puzzled to find that you're taking $him out for a nice evening at a small bar. You share a tasty meal and listen to good music played on the little stage by an older slave. As the set concludes, you lean over and give $activeSlave.slaveName $his real orders for the evening. $He freezes in terror but eventually makes $his way up to the stage, strips in front of all the patrons, and says <<if !canTalk($activeSlave)>> - in embarrassed gestures, "please use me, I'm cheap." + in embarrassed gestures, "Please use me, I'm cheap." <<else>> "One credit per fuck, if you'll do my worthle<<ss>> body on <<s>>tage." <</if>> @@ -9569,7 +9570,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<link "Beg her pardon and offer to loan the bitch to her">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with her. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@ + The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with her. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10000>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@ <<set $activeSlave.behavioralFlaw = "none", $activeSlave.counter.oral += 5, $oralTotal += 5>> <</replace>> <</link>> @@ -11095,10 +11096,10 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <</if>> $He explains $himself after a while: it's not what $he thought $he'd be doing with $his life, <<switch $activeSlave.career>> - <<case "a bioreactor" "a breeder" "a breeding bull" "a dairy cow" "a dairy slave" "a fuckdoll" "a Futanari Sister" "a slave" 0>> + <<case "a bioreactor" "a breeder" "a breeding bull" "a dairy cow" "a dairy slave" "a Fuckdoll" "a Futanari Sister" "a slave" "a slave since birth" 0>> once upon a time. <<default>> - back when $he was $activeSlave.career. + back when $he was <<= convertCareer($activeSlave)>>. <</switch>> <<if !canTalk($activeSlave)>> $He points to $himself and uses both hands to mimic sodomy, as though to suggest that's all $he is, before giving you a rueful smile. @@ -11725,7 +11726,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <br><<link "Take the first and last every day">> <<EventNameDelink $activeSlave>> <<replace "#result">> - When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and $his struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the female-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@ + When $activeSlave.slaveName feels a cock entering $his mouth right after $he's suited up, $he knows it's you and wriggles as best $he can in the suit. It doesn't help much, and $his struggles don't prevent you from moving from $his mouth to $his ass, either. At the end of the day, on the other hand, the <<if $girl == "girl">>fe<</if>>male-shaped latex form is completely still and quiescent as you <<if $PC.dick == 0>>use a couple of fingers to brutally molest<<else>>molest<</if>> each of its holes. It takes viciously hard anal penetration to elicit any response at all, and even then, it's just the slightest hint of a moan. @@.gold;$His fear of you has increased.@@ <</replace>> <<set $activeSlave.trust -= 5, $activeSlave.counter.publicUse += 18>> <<if canDoVaginal($activeSlave)>> @@ -13709,7 +13710,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<link "Let $him get dressed and spend some quality time with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You let $activeSlave.slaveName don a nice dress and take $him out. $He's a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on $his face and the gentle breeze around $his ears convince $him there's no trick. $He watches you shyly as you lead $him around, soaking in the sights and relaxing. Though you still speak as $his <<= WrittenMaster($activeSlave)>>, you chat about goings on around the arcology, and you buy $him a fresh fruit from a vendor. The unexpected show of care and compassion has her quite agog. By the time you take $him out onto another parklike balcony and fuck $him on a bench, + You let $activeSlave.slaveName don a nice dress and take $him out. $He's a little suspicious at first but when you reach the first balcony on your lazy route around the huge building the sun on $his face and the gentle breeze around $his ears convince $him there's no trick. $He watches you shyly as you lead $him around, soaking in the sights and relaxing. Though you still speak as $his <<= WrittenMaster($activeSlave)>>, you chat about goings on around the arcology, and you buy $him a fresh fruit from a vendor. The unexpected show of care and compassion has $him quite agog. By the time you take $him out onto another parklike balcony and fuck $him on a bench, <<if ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1) && ($activeSlave.chastityAnus == 1)>> $his combined chastity cage and anal chastity belt makes $him move awkwardly. <<elseif ($activeSlave.dick > 0) && ($activeSlave.chastityPenis == 1)>> @@ -19224,14 +19225,14 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<set $activeSlave.trust += 5>> <</link>> <<else>> - Fucking $him here would be interesting; unfortunately there just isn't enough room for two mothers-to-be. + Fucking $him here would be interesting; unfortunately, there just isn't enough room for two mothers-to-be. <</if>> <br><<link "Teach $him about true sadism">> <<set _ress = $slaveIndices[$ArcadeiIDs.random()]>> <<setLocalPronouns $slaves[_ress] 2>> <<replace "#result2">> $He seems to be focusing on the purely physical aspects of the degradation here. The true meaning of this place is so much more, and you decide to share it with $him. You call $his name, tearing $his attention away from the spectacle mere <<if $showInches == 2>>inches<<else>>centimeters<</if>> over your heads, and <<if canSee($activeSlave)>>point<<else>>direct $him<</if>> to a particular slave. You tell $activeSlave.slaveName that this particular Arcade inmate's name is - <<= SlaveFullName($slaves[_ress])>>. You tell $him that _he2 is $slaves[_ress].actualAge years old, that _he2 is $slaves[_ress].nationality, and that _he2 was once $slaves[_ress].career. You list more details of _his2 life before _he2 was placed here to be fucked endlessly. $activeSlave.slaveName's eyes widen as you recite the details of the prior life of this piece of human sexual equipment and the sheer weight of the intellectual sadism smashes into $him. Then the slave above you both jerks a little. <<if $activeSlave.dick == 0>>There's no visible sign _his2 pussy's being fucked, so it must be<<else>>_His2 cock hardens involuntarily, indicating that it's<</if>> going into _his2 ass. You resume, mentioning that _he2's been buttfucked $slaves[_ress].counter.anal times. + <<= SlaveFullName($slaves[_ress])>>. You tell $him that _he2 is $slaves[_ress].actualAge years old, that _he2 is $slaves[_ress].nationality, and that _he2 was once <<= convertCareer($slaves[_ress])>>. You list more details of _his2 life before _he2 was placed here to be fucked endlessly. $activeSlave.slaveName's eyes widen as you recite the details of the prior life of this piece of human sexual equipment and the sheer weight of the intellectual sadism smashes into $him. Then the slave above you both jerks a little. <<if $activeSlave.dick == 0>>There's no visible sign _his2 pussy's being fucked, so it must be<<else>>_His2 cock hardens involuntarily, indicating that it's<</if>> going into _his2 ass. You resume, mentioning that _he2's been buttfucked $slaves[_ress].counter.anal times. $activeSlave.slaveName jerks suddenly, <<if canAchieveErection($activeSlave)>>shooting $his cum onto the floor<<elseif $activeSlave.vagina < 0>>dribbling a little<<elseif $activeSlave.vaginaLube > 0>>squirting onto the floor<<else>>orgasming<</if>>. $He came without being touched. $He <<if canSee($activeSlave)>>stares at<<else>>faces<</if>> the mess $he made just by being in the presence of the arcology's @@.hotpink;undisputed preeminent sadist;@@ $he shudders at the sheer gothic glory of it. $He has a new moment to think of when $he feels like @@.lightsalmon;indulging $his own sadism.@@ <</replace>> <<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+10, 0, 100)>> @@ -19889,7 +19890,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He Though your experience was more stimulating than $hers, $activeSlave.slaveName enjoyed @@.hotpink;being used while you enjoyed yourself.@@ <<set $activeSlave.devotion += 4>> <<else>> - Although you enjoyed her ministrations, $activeSlave.slaveName had a bad time because of $his @@.gold;hate of oral.@@ + Although you enjoyed $his ministrations, $activeSlave.slaveName had a bad time because of $his @@.gold;hate of oral.@@ <<set $activeSlave.devotion -= 2>> <</if>> <<set $activeSlave.counter.oral += 1, $oralTotal += 1>> diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw index fd6d7f4e9e5..956ad509264 100644 --- a/src/uncategorized/RETS.tw +++ b/src/uncategorized/RETS.tw @@ -327,9 +327,7 @@ _He2 stiffens with the lewd feeling of the warm fluid pressing into _his2 mouth. <<case "date please">> -After you complete your weekly inspection of <<EventNameLink>>, the -$desc -asks if $he can beg a favor. Absurd though it sounds, $he does exactly that, saying in $his <<if $activeSlave.voice > 2>>high<<elseif $activeSlave.voice > 1>>feminine<<else>>bimbo<</if>> voice, "<<Master>>, may I a<<s>>k a favor?" You take a moment to look at $him, standing there in front of your desk. $He's devoted to you, willing to please you for the sake of pleasing you, rather than to avoid punishment or make $his own life easier. And $he's very trusting, confident that $he can say such an odd thing without fear. So, you hear $him out. +After you complete your weekly inspection of <<EventNameLink>>, the $desc asks if $he can beg a favor. Absurd though it sounds, $he does exactly that, saying in $his <<if $activeSlave.voice > 2>>high<<elseif $activeSlave.voice > 1>>feminine<<else>>bimbo<</if>> voice, "<<Master>>, may I a<<s>>k a favor?" You take a moment to look at $him, standing there in front of your desk. $He's devoted to you, willing to please you for the sake of pleasing you, rather than to avoid punishment or make $his own life easier. And $he's very trusting, confident that $he can say such an odd thing without fear. So, you hear $him out. <br><br> "Thank you, <<Master>>," $he <<say>>s. "I would like to do <<s>>omething for $subSlave.slaveName." You ask if $he's worried about $his <<if $activeSlave.relationship >= 5>>wife<<else>>girlfriend<</if>> for some reason. "Oh no, <<Master>>," $he answers hurriedly. "No, no, that came out wrong. It'<<s>> ju<<s>>t that I love _him2 and I want to, you know, get _him2 <<s>>omething or do <<s>>omething <<s>>pe<<c>>ial for _him2. We don't really have <<s>>tuff of our own, <<s>>o I can't give _him2 a pre<<s>>ent, and we already do everything either one of u<<s>> want<<s>> in bed, <<s>>o I can't really think of anything." $He <<if canSee($activeSlave)>>looks<<else>>gazes<</if>> at you hopefully. diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw index 43bf2fb2bbc..17172791e63 100644 --- a/src/uncategorized/clubReport.tw +++ b/src/uncategorized/clubReport.tw @@ -71,7 +71,7 @@ $DJ.slaveName's mastery immensely @@.green;improves@@ the atmosphere in $clubName. <</if>> <<if ($DJ.muscles > 5) && ($DJ.muscles <= 95)>> - $His toned body helps $him lead $his fellow club girls by letting $him dance all night. + $His toned body helps $him lead $his fellow club sluts by letting $him dance all night. <</if>> <<if ($DJ.intelligence+$DJ.intelligenceImplant > 15)>> $He's smart enough to make an actual contribution to the music, greatly enhancing the entire experience. diff --git a/src/uncategorized/growthResearchInstitute.tw b/src/uncategorized/growthResearchInstitute.tw index cc341c04c9e..ba1445991f7 100644 --- a/src/uncategorized/growthResearchInstitute.tw +++ b/src/uncategorized/growthResearchInstitute.tw @@ -7,7 +7,7 @@ <<set $nextButton = "Continue", $nextLink = "Bulk Slave Intro", $slaveMarket = "GRI", $returnTo = "Main", $newSlaveIndex = 0>> <</if>> -//The Growth Research Institute (GRI) is not primarily a slave school at all, but rather the world leader in female growth hormone development. It operates research centers in the Free Cities to avoid traditional medical research laws. GRI runs several slave schools to raise healthy, unmodified subjects for use in trials. After a year of experimental hormone treatment they are sold. <<if $GRI.schoolUpgrade != 0>><br><br>You have endowed <<if $GRI.schoolUpgrade == 1>>a research focus on advanced curatives; most subjects now leave the GRI at unnatural levels of vitality.<<else>>a research focus on milk production; subjects' breasts are bigger and milkier than ever.<</if>> As a major <<if $PC.title == 0>>benefactrix<<else>>benefactor<</if>> of the institution, you also receive a discount on them.<</if>>// +//The Growth Research Institute (GRI) is not primarily a slave school at all, but rather the world leader in female growth hormone development. It operates research centers in the Free Cities to avoid traditional medical research laws. GRI runs several slave schools to raise healthy, unmodified subjects for use in trials. After a year of experimental hormone treatment they are sold. <<if $GRI.schoolUpgrade != 0>><br><br>You have endowed <<if $GRI.schoolUpgrade == 1>>a research focus on advanced curatives; most subjects now leave the GRI at unnatural levels of vitality.<<else>>a research focus on milk production; subjects' breasts are bigger and milkier than ever.<</if>> As a major benefact<<if $PC.title == 0>>rix<<else>>or<</if>> of the institution, you also receive a discount on them.<</if>>// <br><br>GRI offers a fresh graduate for inspection via video call. The interview takes place in the graduate's bare-metal holding cell. Disturbingly, it is strongly reminiscent of an enclosure for a lab animal, only scaled up to contain a lab animal of human dimensions. diff --git a/src/uncategorized/lecoleDesEnculees.tw b/src/uncategorized/lecoleDesEnculees.tw index b7ebf9ce09d..f8e5d448eab 100644 --- a/src/uncategorized/lecoleDesEnculees.tw +++ b/src/uncategorized/lecoleDesEnculees.tw @@ -7,7 +7,7 @@ <<set $nextButton = "Continue", $nextLink = "Bulk Slave Intro", $slaveMarket = "LDE", $returnTo = "Main", $newSlaveIndex = 0>> <</if>> -//L'École des Enculées is one of the oldest networks of slave schools, but because its training must be started early, it is only now beginning to produce and show a return on its investors' stakes. It aims to produce graduates more feminine than the average naturally born female, in spite of their having been born male. The school is a global leader in hormonal feminization, which allows it to produce curvier slaves than many schools that focus on natural females. It also retains its graduates for a year after their majority and their enslavement, so as to be able to legally subject them to intensive sexual conditioning that focuses on their prostates as their main remaining locus of arousal. <<if $LDE.schoolUpgrade != 0>><br><br>Since you have endowed <<if $LDE.schoolUpgrade == 1>>the regular application of drugs to induce extreme infatuation in its graduates towards the first dominant person they encounter, any graduate purchased here will now promptly fall in love with you.<<else>>research into narrowly targeted hormonal treatments, its graduates are now available with generous members despite their femininity.<</if>> As a major <<if $PC.title == 0>>benefactrix<<else>>benefactor<</if>> of the institution, you also receive a discount on them.<</if>>// +//L'École des Enculées is one of the oldest networks of slave schools, but because its training must be started early, it is only now beginning to produce and show a return on its investors' stakes. It aims to produce graduates more feminine than the average naturally born female, in spite of their having been born male. The school is a global leader in hormonal feminization, which allows it to produce curvier slaves than many schools that focus on natural females. It also retains its graduates for a year after their majority and their enslavement, so as to be able to legally subject them to intensive sexual conditioning that focuses on their prostates as their main remaining locus of arousal. <<if $LDE.schoolUpgrade != 0>><br><br>Since you have endowed <<if $LDE.schoolUpgrade == 1>>the regular application of drugs to induce extreme infatuation in its graduates towards the first dominant person they encounter, any graduate purchased here will now promptly fall in love with you.<<else>>research into narrowly targeted hormonal treatments, its graduates are now available with generous members despite their femininity.<</if>> As a major benefact<<if $PC.title == 0>>rix<<else>>or<</if>> of the institution, you also receive a discount on them.<</if>>// <br><br>L'École des Enculées offers a fresh graduate for inspection via video call. The interview takes place in the dormitory for the oldest class of girls. Absurdly sexual squeals repeatedly interrupt the call, making it very clear that someone close by the interviewee is experiencing a strong combination of anal pain and anal pleasure. diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index 26817391f76..754cca982e2 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -1310,43 +1310,43 @@ is <<else>> Before $he was a slave, $he was <<if setup.bodyguardCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Bodyguard. + <<= convertCareer($activeSlave)>>, giving $him potential as a Bodyguard. <<elseif setup.wardenessCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Wardeness for <<if $cellblock == 0>>a Cellblock<<else>>$cellblockName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Wardeness for <<if $cellblock == 0>>a Cellblock<<else>>$cellblockName<</if>>. <<elseif setup.attendantCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as an Attendant for <<if $spa == 0>>a Spa<<else>>$spaName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as an Attendant for <<if $spa == 0>>a Spa<<else>>$spaName<</if>>. <<elseif setup.matronCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Matron for <<if $nursery == 0 && $nurseryNannies == 0>>a Nursery<<else>>$nurseryName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Matron for <<if $nursery == 0 && $nurseryNannies == 0>>a Nursery<<else>>$nurseryName<</if>>. <<elseif setup.nurseCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Nurse for <<if $clinic == 0>>a Clinic<<else>>$clinicName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Nurse for <<if $clinic == 0>>a Clinic<<else>>$clinicName<</if>>. <<elseif setup.schoolteacherCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Schoolteacher for <<if $schoolroom == 0>>a Schoolroom<<else>>$schoolroomName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Schoolteacher for <<if $schoolroom == 0>>a Schoolroom<<else>>$schoolroomName<</if>>. <<elseif setup.stewardessCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Stewardess for <<if $servantsQuarters == 0>>a Servant's Quarters<<else>>$servantsQuartersName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Stewardess for <<if $servantsQuarters == 0>>a Servant's Quarters<<else>>$servantsQuartersName<</if>>. <<elseif setup.milkmaidCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Milkmaid for <<if $dairy == 0>>a Dairy<<else>>$dairyName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Milkmaid for <<if $dairy == 0>>a Dairy<<else>>$dairyName<</if>>. <<elseif setup.farmerCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Farmer for <<if $farmyard == 0>>a Farmyard<<else>>$farmyardName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Farmer for <<if $farmyard == 0>>a Farmyard<<else>>$farmyardName<</if>>. <<elseif setup.madamCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Madam for <<if $brothel == 0>>a Brothel<<else>>$brothelName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a Madam for <<if $brothel == 0>>a Brothel<<else>>$brothelName<</if>>. <<elseif setup.DJCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a DJ for <<if $club == 0>>a Club<<else>>$clubName<</if>>. + <<= convertCareer($activeSlave)>>, giving $him potential as a DJ for <<if $club == 0>>a Club<<else>>$clubName<</if>>. <<elseif setup.HGCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a Head Girl. + <<= convertCareer($activeSlave)>>, giving $him potential as a Head Girl. <<elseif setup.recruiterCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him potential as a recruiter. + <<= convertCareer($activeSlave)>>, giving $him potential as a recruiter. <<elseif setup.entertainmentCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him a slight edge at entertainment. + <<= convertCareer($activeSlave)>>, giving $him a slight edge at entertainment. <<elseif setup.whoreCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him a slight edge at sexual commerce. + <<= convertCareer($activeSlave)>>, giving $him a slight edge at sexual commerce. <<elseif setup.gratefulCareers.includes($activeSlave.career)>> - $activeSlave.career, so $he can remember what it's like to have the freedom to starve. + <<= convertCareer($activeSlave)>>, so $he can remember what it's like to have the freedom to starve. <<elseif setup.menialCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him experience following orders. + <<= convertCareer($activeSlave)>>, giving $him experience following orders. <<elseif setup.servantCareers.includes($activeSlave.career)>> - $activeSlave.career, giving $him a slight edge in housekeeping. + <<= convertCareer($activeSlave)>>, giving $him a slight edge in housekeeping. <<else>> - <<print $activeSlave.career>>. + <<= convertCareer($activeSlave)>>. <</if>> <</if>> <</if>> diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 7429d4304c2..e99052f9cbf 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -1101,13 +1101,34 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<link "Give $him a lewd tramp stamp">> <<set $activeSlave.stampTat = either("advertisements", "degradation", "rude words")>> <<replace "#introResult">> - You <<if $activeSlave.devotion > 20>>bring $him down to the studio, lay the compliant<<else>>drag $him down to the studio, strap the reluctant<</if>> slave in the chair face-down, and select a sufficiently lewd pattern to decorate $his lower back. When the automated tattooing is done, a topical application of analgesics leaves $him with nothing more than a slight ache there. When allowed to stand, $he immediately turns $his back to one of the studio's full length mirrors and cranes around to read the writing just over $his butt. It's difficult, since of course it's reversed, and $he mouths the words letter by letter. - <<if $activeSlave.stampTat == "advertisements">> - $He mouths, 'Fuck my ass!' - <<elseif $activeSlave.stampTat == "rude words">> - 'Rear Entrance,' $he mouths, and then understands the arrow pointing down between $his buttocks. - <<elseif $activeSlave.stampTat == "degradation">> - Struggling to read the ornate gothic lettering, $he slowly mouths, 'Anal Whore.' + You <<if $activeSlave.devotion > 20>>bring $him down to the studio, lay the compliant<<else>>drag $him down to the studio, strap the reluctant<</if>> slave in the chair face-down, and select a sufficiently lewd pattern to decorate $his lower back. When the automated tattooing is done, a topical application of analgesics leaves $him with nothing more than a slight ache there. + <<if canSee($activeSlave)>> + When allowed to stand, $he immediately turns $his back to one of the studio's full length mirrors and cranes around to read the writing just over $his butt. It's difficult, since, of course, it's reversed, and $he mouths the words letter by letter. + <<if $activeSlave.stampTat == "advertisements">> + $He mouths, 'Fuck my ass!' + <<elseif $activeSlave.stampTat == "rude words">> + 'Rear Entrance,' $he mouths, and then understands the arrow pointing down between $his buttocks. + <<elseif $activeSlave.stampTat == "degradation">> + Struggling to read the ornate gothic lettering, $he slowly mouths, 'Anal Whore.' + <</if>> + <<elseif canHear($activeSlave)>> + When $he sits back up, you tell $him calmly and bluntly what $his new tattoo says: + <<if $activeSlave.stampTat == "advertisements">> + "Fuck My Ass." + <<elseif $activeSlave.stampTat == "rude words">> + "Rear Entrance." + <<elseif $activeSlave.stampTat == "degradation">> + "Anal Whore." + <</if>> + <<else>> + Judging by the expression on $his face, $he's either accurately judged the movement of the needle on $his skin or simply guessed correctly that $his new tattoo consists of + <<if $activeSlave.stampTat == "advertisements">> + blunt advertisements for anal sex. + <<elseif $activeSlave.stampTat == "rude words">> + mocking references to anal sex. + <<elseif $activeSlave.stampTat == "degradation">> + insulting invitations for anal sex. + <</if>> <</if>> <<if $activeSlave.devotion > 20>> $He gasps at the realization that taking it up the ass is about to become a dominant part of $his life. $He isn't surprised by that, but it's a little stark, having $his status as an anal slave permanently written on $his lower back for anyone to see. Nevertheless, $he @@.hotpink;resolves to do $his best.@@ @@ -1260,7 +1281,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<= FutureSocieties.Change("Eugenics", 3)>> <</if>> <</replace>> - <<set $activeSlave.chastityVagina = 0,$activeSlave.dick = 0,$activeSlave.foreskin = 0,$activeSlave.ovaries = 0,$activeSlave.preg = -2,$activeSlave.pregKnown = 0,$activeSlave.pregSource = 0,$activeSlave.pregType = 0,$activeSlave.pregWeek = -4,$activeSlave.vagina = -1,$activeSlave.skill.vaginal = 0>> + <<set $activeSlave.chastityPenis = 0, $activeSlave.chastityVagina = 0, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.ovaries = 0, $activeSlave.preg = -2, $activeSlave.pregKnown = 0, $activeSlave.pregSource = 0, $activeSlave.pregType = 0, $activeSlave.pregWeek = -4, $activeSlave.vagina = -1, $activeSlave.skill.vaginal = 0>> <<run SetBellySize($activeSlave)>> <<set $activeSlave.health -= 10, $activeSlave.trust = Math.clamp($activeSlave.trust-100, -100, 100)>> <</link>> diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw index 99e50a1c336..171502c1563 100644 --- a/src/uncategorized/pHostageAcquisition.tw +++ b/src/uncategorized/pHostageAcquisition.tw @@ -53,6 +53,9 @@ Your hired mercenaries are en route now with your precious cargo. <<switch $rivalryFS>> <<case "Racial Subjugationism">> + <<if $activeSlave.preg > 0>> + <<run WombFatherRace($activeSlave, $arcologies[0].FSSubjugationistRace)>> + <</if>> <<set $activeSlave.health = 50>> <<if $rivalryDuration <= 5>> Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs == 1>>ample bust<<else>>chest<</if>> sobbing "They kept trying to rape me with $arcologies[0].FSSubjugationistRace <<s>>lave<<s>>!" You gently wrap your arms around $him in a comforting embrace. $He's nearly the same as you remember $him, albeit a bit more hateful towards $arcologies[0].FSSubjugationistRace people. @@ -69,15 +72,17 @@ Your hired mercenaries are en route now with your precious cargo. The mercenary captain quickly gags $him. "My apologies, I did warn you $he was a handful. Please be careful when you unbind $him, I'd hate for anything to happen to my best employer," he says as he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. $He looks the same as you remember, but $he acts nothing like the $girl you used to know. Odds are high that $he'll cause problems for you in the future. <</if>> <<case "Racial Supremacism">> - <<set $activeSlave.pregType = setPregType($activeSlave)>> - <<set WombInit($activeSlave)>> - <<if $arcologies[0].FSSubjugationistRace != 0>> - <<set _notSupreme = $arcologies[0].FSSubjugationistRace>> - <<else>> - <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSupremacistRace)>> - <<set _notSupreme = _races.random()>> + <<if $seePreg != 0>> + <<set $activeSlave.pregType = setPregType($activeSlave)>> + <<set WombInit($activeSlave)>> + <<if $arcologies[0].FSSubjugationistRace != 0>> + <<set _notSupreme = $arcologies[0].FSSubjugationistRace>> + <<else>> + <<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSupremacistRace)>> + <<set _notSupreme = _races.random()>> + <</if>> + <<run WombFatherRace($activeSlave, _notSupreme)>> <</if>> - <<run WombFatherRace($activeSlave, _notSupreme)>> <<if $rivalryDuration <= 5>> Upon seeing you, $activeSlave.slaveName dives into your <<if $PC.boobs == 1>>ample bust<<else>>chest<</if>> sobbing "Thank you... Thank you..." You gently wrap your arms around $him in a comforting embrace. $He's nearly the same as you remember $him, albeit acting slightly odd and covered in scars. <<set $activeSlave.weight = 0>> diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw index f9d6e82a0c0..c3f7e99743f 100644 --- a/src/uncategorized/pRivalryCapture.tw +++ b/src/uncategorized/pRivalryCapture.tw @@ -24,12 +24,12 @@ <</if>> <<set _rivalType = _rivalType.random()>> +<<set $oneTimeDisableDisability = 1>> +<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<switch _rivalType>> <<case "expansionist shemale">> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XY")>> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 15>> @@ -64,8 +64,6 @@ <<case "cum addict">> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XY")>> <<set $activeSlave.chem = 3000>> <<set $activeSlave.face = 100>> @@ -99,8 +97,6 @@ <<case "hung shota">> <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 18>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XY")>> <<set $activeSlave.face = 100>> <<set $activeSlave.faceShape = "androgynous">> @@ -132,8 +128,6 @@ <<case "masculine">> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XY")>> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -163,8 +157,6 @@ <<case "micropenis">> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XY")>> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -194,8 +186,6 @@ <<case "bull dyke">> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -235,8 +225,6 @@ <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <</if>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.pubertyXX = 1>> <<set $activeSlave.face = 100>> @@ -284,8 +272,6 @@ <<case "oppai loli">> <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 12>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 0>> @@ -316,8 +302,6 @@ <<case "cow">> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -349,8 +333,6 @@ <<case "bimbo">> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 65>> @@ -383,8 +365,6 @@ <<default>> <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> - <<set $oneTimeDisableDisability = 1>> - <<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 15>> diff --git a/src/uncategorized/peHeadgirlConcubine.tw b/src/uncategorized/peHeadgirlConcubine.tw index a947402f4ff..f80b54b3083 100644 --- a/src/uncategorized/peHeadgirlConcubine.tw +++ b/src/uncategorized/peHeadgirlConcubine.tw @@ -224,7 +224,7 @@ and it's also obvious that they've been filling the few minutes they've been wai <</if>> $he clears $his throat and asks your permission to make a couple of last-minute changes to slaves' assignments for the day. <br><br> - As $he did so, you were encircling your girls in your <<if $arcologies[0].FSPhysicalIdealist != "unset">>powerful arms<<elseif $PC.title == 1>>dominant grip<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes $his question. $His voice rises cutely as your marauding hand moves over the + As $he did so, you were encircling your <<if $girl == _girl2>>$girl<<else>>lover<</if>>s in your <<if $arcologies[0].FSPhysicalIdealist != "unset">>powerful arms<<elseif $PC.title == 1>>dominant grip<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes $his question. $His voice rises cutely as your marauding hand moves over the <<if $HeadGirl.butt > 10>> endless expanse of $his backside. $He manages to finish, but trails off into a groan, the <<if Math.floor($HeadGirl.buttImplant/$HeadGirl.butt) > .60>>firm<<else>>soft<</if>> flesh quivering against your palm. <<else>> diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw index 49cc6b36d10..1c71e6ebd1b 100644 --- a/src/uncategorized/prestigiousSlave.tw +++ b/src/uncategorized/prestigiousSlave.tw @@ -576,7 +576,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.origin = "You bought $him at auction.">> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "$He was once the young trophy husband of a powerful woman in the old world, but she sold $him into slavery in revenge for $his infidelities.">> - <<set $activeSlave.career = "a trophy spouse">> + <<set $activeSlave.career = "a trophy wife">> <<set $activeSlave.face = Math.clamp($activeSlave.face+20,-100,100)>> <<set $activeSlave.faceImplant += 20>> <<set $activeSlave.faceShape = "cute">> diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw index 22d269eb2d4..edd2dd097a3 100644 --- a/src/uncategorized/reBoomerang.tw +++ b/src/uncategorized/reBoomerang.tw @@ -165,6 +165,7 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against "They were breeding me with idiot<<s>>." You sold $him to a Subjugationist arcology; it's nothing short of incredible that $he managed to get back here. $He must have sold and traded $himself without hesitation. "I d-don't want thi<<s>> pregnan<<c>>y." <<set $activeSlave.preg = _pregWeeks-1, $activeSlave.pregType = random(2,4), $activeSlave.pregWeek = $activeSlave.preg, $activeSlave.pregKnown = 1>> <<run SetBellySize($activeSlave)>> + <<run WombFatherRace($activeSlave, $activeSlave.race)>> <<case "gender radicalist arcology">> "They <<if $activeSlave.balls>> cut my ball<<s>> off and then<</if>> j-ju<<s>>t kind of t-turned me loo<<s>>e in the corridor<<s>>," $he moans. You sold $him to a Gender Radicalist arcology. "Naked, <<s>>o everyone could u<<s>>e my a<<ss>>. Plea<<s>>e, I don't want to be an entire arcology'<<s>> bitch." <<set $activeSlave.balls = 0>> diff --git a/src/uncategorized/reCitizenHookup.tw b/src/uncategorized/reCitizenHookup.tw index 141373aec7e..f779b76b5ce 100644 --- a/src/uncategorized/reCitizenHookup.tw +++ b/src/uncategorized/reCitizenHookup.tw @@ -279,92 +279,92 @@ She's clearly attracted to you; even the most consummate actress would have diff <</replace>> <</link>> <<if _FS != "none">> -<br><<link "Emphasize her societal style with exhibitionism">> - <<replace "#result">> - You turn to face her straight on, and something about the look in your eye fills her with mixed apprehension and anticipation. You agree with her banter and praise her for being so forward-thinking, before transitioning to more direct praise of her style and then her body. You're speaking in a tone that cuts through the room, and by the time you kiss your willing conquest, there's not a person in the room who isn't paying attention. They all understand the message: this gathering is turning into something else, now. Those few who aren't willing to fuck in public withdraw, and everyone who didn't come with a sexual partner sends urgent messages to have appropriate slaves brought from their apartments. You make out with her for a while, letting everyone make arrangements, and then pull her clothes off, making sure her - <<switch _FS>> - <<case "Subjugationist" "Supremacist">> - superior body - <<if _FS == "Supremacist">> - <<set $arcologies[0].FSSupremacist += 5>> - <<else>> - <<set $arcologies[0].FSSubjugationist += 5>> - <</if>> - <<case "Gender Radicalist">> - tits and stiff dick - <<set $arcologies[0].FSGenderRadicalist += 5>> - <<case "Gender Fundamentalist">> - femininity - <<set $arcologies[0].FSGenderFundamentalist += 5>> - <<case "Repopulationist">> - <<if $arcologies[0].FSRepopulationFocusLaw == 1>> - fecund body - <<else>> - ready-to-be-bred body - <</if>> - <<set $arcologies[0].FSRepopulationFocus += 5>> - <<case "Eugenics">> - perfect body - <<set $arcologies[0].FSRestart += 5>> - <<case "Paternalist">> - appealing body - <<set $arcologies[0].FSPaternalist += 5>> - <<case "Degradationist">> - dominant form - <<set $arcologies[0].FSDegradationist += 5>> - <<case "Body Purist">> - natural body - <<set $arcologies[0].FSBodyPurist += 5>> - <<case "Transformation Fetishist">> - fake butt - <<set $arcologies[0].FSTransformationFetishist += 5>> - <<case "Youth Preferentialist">> - young body - <<set $arcologies[0].FSYouthPreferentialist += 5>> - <<case "Maturity Preferentialist">> - mature body - <<set $arcologies[0].FSMaturityPreferentialist += 5>> - <<case "Slimness Enthusiast">> - slender body - <<set $arcologies[0].FSSlimnessEnthusiast += 5>> - <<case "Asset Expansionist">> - curvaceous form - <<set $arcologies[0].FSAssetExpansionist += 5>> - <<case "Pastoralist">> - milk-fed assets - <<set $arcologies[0].FSPastoralist += 5>> - <<case "Physical Idealist">> - muscular body - <<set $arcologies[0].FSPhysicalIdealist += 5>> - <<case "Hedonistic">> - plump body - <<set $arcologies[0].FSHedonisticDecadence += 5>> - <<case "Chattel Religionist">> - divine sexuality - <<set $arcologies[0].FSChattelReligionist += 5>> - <<case "Roman Revivalist">> - elegant form - <<set $arcologies[0].FSRomanRevivalist += 5>> - <<case "Aztec Revivalist">> - well-built form - <<set $arcologies[0].FSAztecRevivalist += 5>> - <<case "Egyptian Revivalist">> - beautiful tanned body - <<set $arcologies[0].FSEgyptianRevivalist += 5>> - <<case "Arabian Revivalist" "Chinese Revivalist" "Edo Revivalist">> - graceful form - <<if _FS == "Edo Revivalist">> - <<set $arcologies[0].FSEdoRevivalist += 5>> - <<elseif _FS == "Arabian Revivalist">> - <<set $arcologies[0].FSArabianRevivalist += 5>> - <<else>> - <<set $arcologies[0].FSChineseRevivalist += 5>> - <</if>> - <<default>> - hot young body - <</switch>> - is obvious to everyone. The message is clear, and your guest of honor is the center of attention as you take her there in view of the arcology's leading citizens. Naturally, the story percolates, making it clear that there's nothing you won't do to @@.green;further acceptance of _FS principles.@@ - <</replace>> -<</link>> + <br><<link "Emphasize her societal style with exhibitionism">> + <<replace "#result">> + You turn to face her straight on, and something about the look in your eye fills her with mixed apprehension and anticipation. You agree with her banter and praise her for being so forward-thinking, before transitioning to more direct praise of her style and then her body. You're speaking in a tone that cuts through the room, and by the time you kiss your willing conquest, there's not a person in the room who isn't paying attention. They all understand the message: this gathering is turning into something else, now. Those few who aren't willing to fuck in public withdraw, and everyone who didn't come with a sexual partner sends urgent messages to have appropriate slaves brought from their apartments. You make out with her for a while, letting everyone make arrangements, and then pull her clothes off, making sure her + <<switch _FS>> + <<case "Subjugationist" "Supremacist">> + superior body + <<if _FS == "Supremacist">> + <<set $arcologies[0].FSSupremacist += 5>> + <<else>> + <<set $arcologies[0].FSSubjugationist += 5>> + <</if>> + <<case "Gender Radicalist">> + tits and stiff dick + <<set $arcologies[0].FSGenderRadicalist += 5>> + <<case "Gender Fundamentalist">> + femininity + <<set $arcologies[0].FSGenderFundamentalist += 5>> + <<case "Repopulationist">> + <<if $arcologies[0].FSRepopulationFocusLaw == 1>> + fecund body + <<else>> + ready-to-be-bred body + <</if>> + <<set $arcologies[0].FSRepopulationFocus += 5>> + <<case "Eugenics">> + perfect body + <<set $arcologies[0].FSRestart += 5>> + <<case "Paternalist">> + appealing body + <<set $arcologies[0].FSPaternalist += 5>> + <<case "Degradationist">> + dominant form + <<set $arcologies[0].FSDegradationist += 5>> + <<case "Body Purist">> + natural body + <<set $arcologies[0].FSBodyPurist += 5>> + <<case "Transformation Fetishist">> + fake butt + <<set $arcologies[0].FSTransformationFetishist += 5>> + <<case "Youth Preferentialist">> + young body + <<set $arcologies[0].FSYouthPreferentialist += 5>> + <<case "Maturity Preferentialist">> + mature body + <<set $arcologies[0].FSMaturityPreferentialist += 5>> + <<case "Slimness Enthusiast">> + slender body + <<set $arcologies[0].FSSlimnessEnthusiast += 5>> + <<case "Asset Expansionist">> + curvaceous form + <<set $arcologies[0].FSAssetExpansionist += 5>> + <<case "Pastoralist">> + milk-fed assets + <<set $arcologies[0].FSPastoralist += 5>> + <<case "Physical Idealist">> + muscular body + <<set $arcologies[0].FSPhysicalIdealist += 5>> + <<case "Hedonistic">> + plump body + <<set $arcologies[0].FSHedonisticDecadence += 5>> + <<case "Chattel Religionist">> + divine sexuality + <<set $arcologies[0].FSChattelReligionist += 5>> + <<case "Roman Revivalist">> + elegant form + <<set $arcologies[0].FSRomanRevivalist += 5>> + <<case "Aztec Revivalist">> + well-built form + <<set $arcologies[0].FSAztecRevivalist += 5>> + <<case "Egyptian Revivalist">> + beautiful tanned body + <<set $arcologies[0].FSEgyptianRevivalist += 5>> + <<case "Arabian Revivalist" "Chinese Revivalist" "Edo Revivalist">> + graceful form + <<if _FS == "Edo Revivalist">> + <<set $arcologies[0].FSEdoRevivalist += 5>> + <<elseif _FS == "Arabian Revivalist">> + <<set $arcologies[0].FSArabianRevivalist += 5>> + <<else>> + <<set $arcologies[0].FSChineseRevivalist += 5>> + <</if>> + <<default>> + hot young body + <</switch>> + is obvious to everyone. The message is clear, and your guest of honor is the center of attention as you take her there in view of the arcology's leading citizens. Naturally, the story percolates, making it clear that there's nothing you won't do to @@.green;further acceptance of _FS principles.@@ + <</replace>> + <</link>> <</if>> </span> diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw index d1c895fe414..badb6670460 100644 --- a/src/uncategorized/reMalefactor.tw +++ b/src/uncategorized/reMalefactor.tw @@ -141,7 +141,7 @@ <</if>> <<set $activeSlave = GenerateNewSlave("XX")>> <<set $activeSlave.origin = "You sentenced $him to enslavement as a punishment for fraud and theft.">> -<<set $activeSlave.career = "a criminal businesswoman">> +<<set $activeSlave.career = "a businesswoman">> <<set $activeSlave.devotion = random(-75,-60)>> <<set $activeSlave.trust = random(-15,0)>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> diff --git a/src/uncategorized/reMilfTourist.tw b/src/uncategorized/reMilfTourist.tw index 2f07fc5bb51..447c22ae369 100644 --- a/src/uncategorized/reMilfTourist.tw +++ b/src/uncategorized/reMilfTourist.tw @@ -6,7 +6,6 @@ <<set _milfSlave = $slaves[_milfed]>> <<run Enunciate(_milfSlave)>> - <<set $activeSlaveOneTimeMinAge = 36>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $one_time_age_overrides_pedo_mode = 1>> /* middle-aged */ @@ -102,7 +101,7 @@ <span id="result"> <<link "Decline politely">> <<replace "#result">> - <<setSpokenLocalPronouns _milfSlave $activeSlave>> + <<setSpokenLocalPronouns $activeSlave _milfSlave>> You have $assistantName instruct _milfSlave.slaveName to pass on your regrets, and add a message for _milfSlave.slaveName expressing confidence in $him to represent you and the arcology perfectly well without you. $He's @@.mediumaquamarine;affirmed@@ by your trust in $him. "<<Master>>," $he reports the next time you see $him, "that touri<<s>>t wa<<s>> really nice. Al<<s>>o, I got _him2 to have <<s>>e<<x>> with me, after all. <<He 2>> wa<<s>> all he<<s>>itant and blu<<sh>>y about doing it in public, but <<he 2>> got better after the fir<<s>>t time I ate _him2 out." $He looks pleased with $himself. "I bet <<he 2>> @@.green;tell<<s>> all <<his 2>> friend<<s>>@@ back home how much fun it i<<s>> here." <<run repX(500, "event")>> <<set $slaves[_milfed].trust += 4, $slaves[_milfed].counter.oral++>> diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index 792167594d5..d55afa25b97 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -942,8 +942,8 @@ <<case "DJ">> <<set $nickname = either("'Arcology Idol'", "'Bass Drop'", "'Bass Slut'", "'Bass'", "'Bassgirl'", "'Beatmatcher'", "'Booth'", "'Celebutante'", "'Club Idol'", "'Club Princess'", "'Club Queen'", "'Deejay'", "'Disc Jockey'", "'Discaire'", "'DJ Whore'", "'DJ'", "'EP'", "'LP'", "'Mixer'", "'Music Master'", "'Radio'", "'Record Player'", "'Subwoofers'", "'SuperBass'", "'Turntables'")>> <<set $situationDesc = "has a leadership role that requires decisiveness and discretion, but has to maintain a role of flirtatiousness and fun, at the same time. Other slaves marvel at how $he must give another slut orders one moment, and girlishly giggle at a prominent citizen the next.">> - <<set $applyDesc = "enjoys being one of the most idolized girls in the arcology, and is happy to learn that the role is part of $his name now.">> - <<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being one of the most idolized girls in the arcology and now wonders whether $he'll be allowed to keep doing so.">> + <<set $applyDesc = "enjoys being one of the most idolized <<= $girl>>s in the arcology, and is happy to learn that the role is part of $his name now.">> + <<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being one of the most idolized <<= $girl>>s in the arcology and now wonders whether $he'll be allowed to keep doing so.">> <<case "Recruiter">> <<set $nickname = either("'Abductor'", "'Agent'", "'Cam Queen'", "'Cam'", "'Camgirl'", "'Collector'", "'Employer'", "'Fraudster'", "'Headhunter'", "'Honeypot'", "'Honeytrap'", "'Interviewer'", "'Job Fair'", "'Kidnapper'", "'Recruiter'", "'Recruitment Tool'", "'Scout'", "'Slavecatcher'", "'Slaver'", "'Snake'", "'Spider'", "'Trapper'", "'Trickster'")>> @@ -959,7 +959,7 @@ <<case "Milkmaid">> <<set $nickname = either("'Cattle Driver'", "'Cowgirl'", "'Cowhand'", "'Cowpoke'", "'Cream Queen'", "'Dairy Queen'", "'Dairy'", "'Farm'", "'Milker'", "'Milking Machine'", "'Milkmaid'", "'Milktugger'", "'Milkwoman'", "'Rancher'", "'Squeezer'", "'Strong Hands'", "'Teat Puller'", "'Udder Lover'")>> - <<set $situationDesc = "has a physically demanding and emotionally rewarding role. It's hard work, hauling milk and shifting cows all day, but $his girls love $him. It's hard not to love someone when you depend on them so totally.">> + <<set $situationDesc = "has a physically demanding and emotionally rewarding role. It's hard work, hauling milk and shifting cows all day, but $his cattle love $him. It's hard not to love someone when you depend on them so totally.">> <<set $applyDesc = "enjoys being a milkmaid, despite the tough work, and is happy to learn that the role is part of $his name now.">> <<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a milkmaid, despite the tough work, and now wonders whether $he'll be allowed to keep doing so.">> diff --git a/src/uncategorized/reRelationshipAdvice.tw b/src/uncategorized/reRelationshipAdvice.tw index a3505eb4995..23834df248a 100644 --- a/src/uncategorized/reRelationshipAdvice.tw +++ b/src/uncategorized/reRelationshipAdvice.tw @@ -34,7 +34,7 @@ $He hesitates, so you prompt $him, asking if $he's having trouble with $his <<elseif $activeSlave.relationship == 4>> lover. <</if>> -$He quickly shakes $his head no. "N-no, <<Master>>, it's ju<<s>>t —" $He subsides into silence again, blushing and staring at $his feet. Comprehension dawning, you ask $him if +$He quickly shakes $his head no. "N-no, <<Master>>, it's ju<<s>>t —" $He subsides into silence again, blushing and <<if canSee($activeSlave)>>staring at $his feet<<else>>looking downwards<</if>>. Comprehension dawning, you ask $him if <<if $activeSlave.relationship == 2>> $he wants to be more than friends with $subSlave.slaveName. <<elseif $activeSlave.relationship == 3>> @@ -42,7 +42,7 @@ $He quickly shakes $his head no. "N-no, <<Master>>, it's ju<<s>>t —" $He subsi <<elseif $activeSlave.relationship == 4>> $he wants to make an honest _woman2 out of $subSlave.slaveName. <</if>> -$He nods $his head quickly, still staring at $his feet. $He shuts $his eyes tight and waits for you to weigh in on the situation. +$He nods $his head quickly, still <<if canSee($activeSlave)>>staring at $his feet<<else>>looking downwards<</if>>. $He shuts $his eyes tight and waits for you to weigh in on the situation. <span id="result"> <br><<link "Break them up">> diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw index fd7c3c9a16e..896f4afb3f6 100644 --- a/src/uncategorized/reShelterInspection.tw +++ b/src/uncategorized/reShelterInspection.tw @@ -52,11 +52,12 @@ <</if>> */ -<<run Enunciate(_Inspectee)>> <<setLocalPronouns _Inspectee>> <<setLocalPronouns $activeSlave 2>> <<setAssistantPronouns>> <<setPlayerPronouns>> +<<run Enunciate(_Inspectee)>> +<<setSpokenLocalPronouns _Inspectee $activeSlave>> <span id="artFrame"> /* 000-250-006 */ @@ -112,7 +113,7 @@ Your assistant announces a visitor in the entryway of your penthouse, and adds<< _HisA avatar turns a reproving blue and shrinks a little. <</switch>> <</if>> -Not waiting to be greeted, the inspector looks up at the nearest camera and demands to be let in. _He2's an older _woman2 with graying hair up in a bun, holding a tablet against _his2 chest like a shield. "I'm here to inspect _originSlave.slaveName,<<if _originSlave.slaveName != _Inspectee.slaveName>> or as you call $him, _Inspectee.slaveName,<</if>>" _he2 bellows up at the camera. +Not waiting to be greeted, the inspector looks up at the nearest camera and demands to be let in. _He2's an older _woman2 with graying hair up in a bun, holding a tablet against _his2 chest like a shield. "I'm here to in<<s>>pect _originSlave.slaveName,<<if _originSlave.slaveName != _Inspectee.slaveName>> or a<<s>> you call $him, _Inspectee.slaveName,<</if>>" _he2 bellows up at the camera. <br><br> @@ -120,7 +121,7 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <<link "Amusing. Enslave _him2">> <<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>> <<replace "#result">> - $assistantName ushers _him2 into your penthouse and keeps _him2 busy for the few minutes you need to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing. Fortunately, you're cleverer and richer than most, and you succeed. You have _him2 brought into your office, and you are pleased to see _him2. _He2's not young and _he2's not pretty, but _his2 suit cannot disguise _his2 big bottom, and _he2's using the tablet _he2 has clasped protectively against _his2 chest to conceal a huge pair of mature breasts. _He2 knows exactly what's happened, and fixes you with a gimlet stare. "In a couple of months," _he2 says with venom, "when you've filled me full of hormones and drugs and training, and I'm begging you to <<if $PC.dick == 1>>stick your tiny little dick up<<else>>fist<</if>> my asshole, remember this. It'll be conditioning and self-preservation and Stockholm Syndrome talking, not me. I think you're a <<if $PC.title == 1>>sad bastard<<else>>vile cunt<</if>>, and I always will." + $assistantName ushers _him2 into your penthouse and keeps _him2 busy for the few minutes you need to circumvent the Shelter's various legal and contractual defenses to prevent slaveowners from doing exactly what you're doing. Fortunately, you're cleverer and richer than most, and you succeed. You have _him2 brought into your office, and you are pleased to see _him2. _He2's not young and _he2's not pretty, but _his2 suit cannot disguise _his2 big bottom, and _he2's using the tablet _he2 has clasped protectively against _his2 chest to conceal a huge pair of mature breasts. _He2 knows exactly what's happened, and fixes you with a gimlet stare. "In a couple of month<<s>>," _he2 says with venom, "when you've filled me full of hormone<<s>> and drug<<s>> and training, and I'm begging you to <<if $PC.dick == 1>><<s>>tick your tiny little dick up<<else>>fi<<s>>t<</if>> my a<<ss>>hole, remember thi<<s>>. It'll be conditioning and <<s>>elf-pre<<s>>ervation and <<S>>tockholm <<S>>yndrome talking, not me. I think you're a <<if $PC.title == 1>><<s>>ad ba<<s>>tard<<else>>vile cunt<</if>>, and I alway<<s>> will." <<set $shelterAbuse += 10>> <<set $nextButton = "Continue">><<UpdateNextButton>> /* unlock Continue button */ <<include "New Slave Intro">> @@ -201,17 +202,17 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <<set $shelterAbuse += 10>> <<elseif _Inspectee.fetish == "mindbroken">> <<if _Inspectee.origin == "You got $him at the Slave Shelter. $He has never communicated anything about $his background, since $he arrived at the shelter with a broken mind.">> - Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know $he was like this when you got $him. Just — just keep trying, would you?" _He2 leaves, looking bitter. + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know <<he>> wa<<s>> like thi<<s>> when you got $him. Ju<<s>>t — ju<<s>>t keep trying, would you?" _He2 leaves, looking bitter. <<elseif _Inspectee.origin == "You got $him at the Slave Shelter. $He was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to $him.">> - Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know $he was like this when you got $him. Just — just keep trying, would you?" + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know <<he>> wa<<s>> like thi<<s>> when you got $him. Ju<<s>>t — ju<<s>>t keep trying, would you?" <<if _Inspectee.pussy > 3 && _Inspectee.bellySag > 1>> - _He2 gropes the slave's sagging middle before inspecting $his ruined pussy. "Still ruined I see." + _He2 gropes the slave's sagging middle before inspecting $his ruined pussy. "<<S>>till ruined, I <<s>>ee." <<elseif _Inspectee.pussy <= 3 && _Inspectee.bellySag > 1>> - _He2 gropes the slave's sagging middle before inspecting $his pussy. "Apart from the belly, $his pussy has recovered nicely." + _He2 gropes the slave's sagging middle before inspecting $his pussy. "Apart from the belly, <<his>> pu<<ss>>y ha<<s>> recovered ni<<c>>ely." <<elseif _Inspectee.pussy > 3 && _Inspectee.bellySag <= 1>> - _He2 gropes the slave's middle before inspecting $his ruined pussy. "$His stomach seems to have recovered, shame you did nothing for $his poor vagina." + _He2 gropes the slave's middle before inspecting $his ruined pussy. "<<His>> <<s>>tomach <<s>>eem<<s>> to have recovered; <<sh>>ame you did nothing for <<his>> poor vagina." <<else>> - _He2 runs _his2 hand across the slave's restored midriff, before inspecting $his pussy. "$He is looking much better, physically, though. That's worth noting." + _He2 runs _his2 hand across the slave's restored midriff, before inspecting $his pussy. "<<He>> i<<s>> looking much better, phy<<s>>ically, though. That'<<s>> worth noting." <<set $shelterAbuse-->> <</if>> _He2 leaves, looking bitter. @@ -225,50 +226,52 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <<if _inspectionContinues == 1>> <<switch _Inspectee.origin>> <<case "You got $him at the Slave Shelter. $He has never communicated anything about $his background, since $he arrived at the shelter with a broken mind.">> - The inspector asks some cursory questions and is shocked when $he responds. "$He came back?" _he2 mutters, "You restored $his mind, I can't believe it. This is incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt slaves from our shelter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse. + The inspector asks some cursory questions and is shocked when $he responds. "<<He>> came back?" _he2 mutters, "You re<<s>>tored <<his>> mind; I can't believe it. Thi<<s>> i<<s>> incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt <<s>>lave<<s>> from our <<sh>>elter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse. <<set _inspectionContinues = 0>> <<set $shelterAbuse -= 5>> <<case "You got $him at the Slave Shelter. It's not clear why $his previous owner cut $his arms and legs off.">> <<if _Inspectee.amp == _originSlave.amp>> Unsurprisingly, the poor $girl still lacks arms and legs, so the inspector just carries on. <<else>> - The inspector stares, dumbfounded, at pair of limbs now supporting _Inspectee.slaveName. "Most owners wouldn't go through the trouble... I think I've seen enough to know you're welcome to come back and take in another girl any time." _He2 leaves your penthouse in much better spirits than _he2 arrived in. + The inspector stares, dumbfounded, at pair of limbs now supporting _Inspectee.slaveName. "Mo<<s>>t owner<<s>> wouldn't go through the trouble... I think I've <<s>>een enough to know you're welcome to come back and take in another <<s>>lave any time." _He2 leaves your penthouse in much better spirits than _he2 arrived in. <<set _inspectionContinues = 0>> <<set $shelterAbuse -= 3>> <</if>> <<case "You got $him at the Slave Shelter. $His owner purposely blinded $him by dumping boiling water into $his eyes.">> - "I wish the scarring wasn't so bad, that way people wouldn't stare so much." + "I wi<<sh>> the <<s>>carring wa<<s>>n't so bad, that way people wouldn't <<s>>tare so much." <<if _Inspectee.eyes > _originSlave.eyes>> <<if canTalk(_Inspectee)>> + <<run Enunciate(_Inspectee)>> _Inspectee.slaveName quickly retorts with "But I like <<s>>eeing their eye<<s>>..." <<else>> _Inspectee.slaveName shakes $his head in response. <</if>> - The inspector gasps at the realization that $he can see again. "They look just like $his old photos too..." A tear comes to _his2 weary eye as _he2 writes out notes on _his2 tablet. "You're more than welcome to adopt slaves from our shelter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse. + <<run Enunciate($activeSlave)>> + The inspector gasps at the realization that $he can see again. "They look ju<<s>>t like <<his>> old photo<<s>> too..." A tear comes to _his2 weary eye as _he2 writes out notes on _his2 tablet. "You're more than welcome to adopt <<s>>lave<<s>> from our <<sh>>elter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse. <<set _inspectionContinues = 0>> <<set $shelterAbuse-->> <</if>> <<case "You got $him at the Slave Shelter. $He was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to $him.">> - The inspector asks some cursory questions and is shocked when $he responds. "$He came back?" _he2 mutters, "You restored $his mind, I can't believe it. This is incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt slaves from our shelter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse, even though _he2 forgot to check $his pussy. + The inspector asks some cursory questions and is shocked when $he responds. "<<He>> came back?" _he2 mutters, "You re<<s>>tored <<his>> mind; I can't believe it. Thi<<s>> i<<s>> incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt <<s>>lave<<s>> from our <<sh>>elter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse, even though _he2 forgot to check $his pussy. <<set _inspectionContinues = 0>> <<set $shelterAbuse -= 5>> <<case "You got $him at the Slave Shelter. $His previous owner forced $him to cut off $his dick and balls and cook them.">> <<if _Inspectee.dick > _originSlave.dick>> - "I see that you've given $him a replacement tool," _he2 says as _he2 reaches down and gives it an exploratory fondle, + "I <<s>>ee that you've given $him a repla<<c>>ement tool," _he2 says as _he2 reaches down and gives it an exploratory fondle, <<if canAchieveErection(_Inspectee)>> - "It even works, that's lovely." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. + "It even work<<s>>, that'<<s>> lovely." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. <<else>> - "It seems to be non-functional, but it's a nice gesture at least." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. + "It <<s>>eem<<s>> to be non-functional, but it'<<s>> a ni<<c>>e gesture at lea<<s>>t." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. <</if>> <<set _inspectionResult-->> <</if>> <<if _Inspectee.balls > _originSlave.balls && _Inspectee.scrotum>> <<if _Inspectee.dick > _originSlave.dick>> - "And these work too, right?" _he2 asks as _he2 points to $his dangling balls. "So $he has been fully restored; that's something." The inspector adds another positive note to the inspection. + "And the<<s>>e work too, right?" _he2 asks as _he2 points to $his dangling balls. "<<S>>o <<he>> ha<<s>> been fully re<<s>>tored; that'<<s>> <<s>>omething." The inspector adds another positive note to the inspection. <<set _inspectionResult-->> <<else>> - "I take it these testicles are more than just an implant? I'm sure $he appreciates the gesture, though what good are they without a penis?" The inspector shakes _his2 head and notes your attempt to undo the damages to _Inspectee.slaveName. + "I take it the<<s>>e testicle<<s>> are more than ju<<s>>t an implant? I'm <<s>>ure <<he>> appre<<c>>iate<<s>> the ge<<s>>ture, though what good are they without a peni<<s>>?" The inspector shakes _his2 head and notes your attempt to undo the damages to _Inspectee.slaveName. <</if>> <</if>> @@ -362,27 +365,27 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <<if _Inspectee.origin == "You got $him at the Slave Shelter. $He has never communicated anything about $his background, since $he arrived at the shelter with a broken mind.">> <<if _Inspectee.fetish == "mindbroken">> - Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know $he was like this when you got $him. Just — just keep trying, would you?" _He2 leaves, looking bitter. + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know <<he>> wa<<s>> like thi<<s>> when you got $him. Ju<<s>>t — ju<<s>>t keep trying, would you?" _He2 leaves, looking bitter. <<else>> - The inspector asks some cursory questions and is shocked when $he responds. "$He came back?" _he2 mutters, "You restored $his mind, I can't believe it. This is incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt slaves from our shelter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse. + The inspector asks some cursory questions and is shocked when $he responds. "<<He>> came back?" _he2 mutters, "You re<<s>>tored <<his>> mind; I can't believe it. Thi<<s>> i<<s>> incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt <<s>>lave<<s>> from our <<sh>>elter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse. <<set $shelterAbuse -= 5>> <</if>> <<elseif _Inspectee.origin == "You got $him at the Slave Shelter. $He was found unresponsive in the lower arcology with a gaping pussy and deflated belly. It is unclear what happened to $him.">> <<if _Inspectee.fetish == "mindbroken">> - Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know $he was like this when you got $him. Just — just keep trying, would you?" + Of course, the poor $girl is just as mindbroken as ever. The inspector asks some cursory questions and gives up. "Don't worry," _he2 says. "I know <<he>> wa<<s>> like thi<<s>> when you got $him. Ju<<s>>t — ju<<s>>t keep trying, would you?" <<if _Inspectee.pussy > 3 && _Inspectee.bellySag > 1>> - _He2 gropes the slave's sagging middle before inspecting $his ruined pussy. "Still ruined I see." + _He2 gropes the slave's sagging middle before inspecting $his ruined pussy. "<<S>>till ruined, I <<s>>ee." <<elseif _Inspectee.pussy <= 3 && _Inspectee.bellySag > 1>> - _He2 gropes the slave's sagging middle before inspecting $his pussy. "Apart from the belly, $his pussy has recovered nicely." + _He2 gropes the slave's sagging middle before inspecting $his pussy. "Apart from the belly, <<his>> pu<<ss>>y ha<<s>> recovered ni<<c>>ely." <<elseif _Inspectee.pussy > 3 && _Inspectee.bellySag <= 1>> - _He2 gropes the slave's middle before inspecting $his ruined pussy. "$His stomach seems to have recovered, shame you did nothing for $his poor vagina." + _He2 gropes the slave's middle before inspecting $his ruined pussy. "<<His>> <<s>>tomach <<s>>eem<<s>> to have recovered; <<sh>>ame you did nothing for <<his>> poor vagina." <<else>> - _He2 runs _his2 hand across the slave's restored midriff, before inspecting $his pussy. "$He is looking much better, physically, though. That's worth noting." + _He2 runs _his2 hand across the slave's restored midriff, before inspecting $his pussy. "<<He>> i<<s>> looking much better, phy<<s>>ically, though. That'<<s>> worth noting." <<set $shelterAbuse-->> <</if>> _He2 leaves, looking bitter. <<else>> - The inspector asks some cursory questions and is shocked when $he responds. "$He came back?" _he2 mutters, "You restored $his mind, I can't believe it. This is incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt slaves from our shelter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse, even though _he2 forgot to check $his pussy. + The inspector asks some cursory questions and is shocked when $he responds. "<<He>> came back?" _he2 mutters, "You re<<s>>tored <<his>> mind; I can't believe it. Thi<<s>> i<<s>> incredible." _He2 carries on while writing notes on _his2 tablet, "You're more than welcome to adopt <<s>>lave<<s>> from our <<sh>>elter." You swear _he2 seems in much better spirits as _he2 leaves your penthouse, even though _he2 forgot to check $his pussy. <<set $shelterAbuse -= 5>> <</if>> <<elseif _Inspectee.fetish == "mindbroken">> @@ -393,11 +396,16 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema <<elseif _Inspectee.devotion <= 20>> $He does not like you and isn't particularly terrified of you, so $he is not flattering. $He's not stupid enough to really criticize you, but $he is honest and makes no effort to conceal troubling particulars. The inspector takes copious notes. _He2 offers you a few choice words, makes notes on _his2 tablet, and storms out. <<elseif _Inspectee.anus > 2>> - $He cooperates with the inspector, who pulls on a pair of latex gloves and performs a complete examination. When _he2 pulls the $girl's buttocks apart and probes the slave's asshole, _he2 pulls _his2 hand away as if scalded. "Oh my God," _he2 says. "_Inspectee.birthName, what happened to your anus?" + $He cooperates with the inspector, who pulls on a pair of latex gloves and performs a complete examination. When _he2 pulls the $girl's buttocks apart and probes the slave's asshole, _he2 pulls _his2 hand away as if scalded. "Oh my God," _he2 says. "_Inspectee.birthName, what happened to your anu<<s>>?" <br><br> + <<run Enunciate(_Inspectee)>> <<if (_Inspectee.devotion < 10)>> <<if (_Inspectee.buttplug == "large plug") || (_Inspectee.buttplug == "huge plug") || (_Inspectee.buttplug == "long, large plug") || (_Inspectee.buttplug == "long, huge plug")>> - "W-well," $he says, "I wear a buttplug." The inspector frowns. "A buttplug shouldn't do that!" The slave looks worried and replies, "It'<<s>> kinda big? And I wear it all the time. B-but I like it! It d-doe<<s>>n't hurt. Well, anymore." The inspector is not amused. _He2 offers you a few choice words, makes notes on _his2 tablet, and storms out. + "W-well," $he says, "I wear a buttplug." The inspector frowns. + <<run Enunciate($activeSlave)>> + "A buttplug <<sh>>ouldn't do that!" + <<run Enunciate(_Inspectee)>> + The slave looks worried and replies, "It'<<s>> kinda big? And I wear it all the time. B-but I like it! It d-doe<<s>>n't hurt. Well, anymore." The inspector is not amused. _He2 offers you a few choice words, makes notes on _his2 tablet, and storms out. <<elseif (_Inspectee.assignment == "whore") || (_Inspectee.assignment == "work in the brothel") || (_Inspectee.assignment == "serve the public") || (_Inspectee.assignment == "serve in the club")>> "W-well," $he says, "I get fucked there at work." The inspector frowns. "How often!?" The slave looks worried and replies, "L-let me think. Four time<<s>> today? After the third time, it u<<s>>ually <<s>>top<<s>> clo<<s>>ing up again between cock<<s>>." The inspector is not amused. _He2 offers you a few choice words, makes notes on _his2 tablet, and storms out. <<elseif (_Inspectee.fetish == "buttslut") && (_Inspectee.fetishKnown == 1)>> @@ -407,11 +415,19 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema "Hey," $he protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love <<s>>e<<x>>! Don't judge me. I take cock in all my hole<<s>>, and I like it. I'm going to beg for butt<<s>>e<<x>> the moment you leave, you bitch." $He defiantly sticks $his rump out at you. The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. <<set $shelterAbuse -= 1>> <<else>> - "W-well," $he says, "I'm a <<s>>lave." The inspector frowns. "What does that have to do with it?" The slave looks worried and replies, "I-it'<<s>> a hole, right? I get fucked in all my hole<<s>>." The inspector is not amused. _He2 offers you a few choice words, makes notes on _his2 tablet, and storms out. + "W-well," $he says, "I'm a <<s>>lave." The inspector frowns. + <<run Enunciate($activeSlave)>> + "What doe<<s>> that have to do with it?" + <<run Enunciate(_Inspectee)>> + The slave looks worried and replies, "I-it'<<s>> a hole, right? I get fucked in all my hole<<s>>." The inspector is not amused. _He2 offers you a few choice words, makes notes on _his2 tablet, and storms out. <</if>> <<else>> <<if (_Inspectee.buttplug == "large plug") || (_Inspectee.buttplug == "huge plug") || (_Inspectee.buttplug == "long, large plug") || (_Inspectee.buttplug == "long, huge plug")>> - "I wear a buttplug!" $he says confidently. The inspector frowns. "A buttplug shouldn't do that!" The slave looks worried and replies, "It'<<s>> really big, and I wear it all the time. I like it! It keep<<s>> my hole ready for anything." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. + "I wear a buttplug!" $he says confidently. The inspector frowns. + <<run Enunciate($activeSlave)>> + "A buttplug <<sh>>ouldn't do that!" + <<run Enunciate(_Inspectee)>> + The slave looks worried and replies, "It'<<s>> really big, and I wear it all the time. I like it! It keep<<s>> my hole ready for anything." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. <<set $shelterAbuse -= 1>> <<elseif (_Inspectee.assignment == "whore") || (_Inspectee.assignment == "work in the brothel") || (_Inspectee.assignment == "serve the public") || (_Inspectee.assignment == "serve in the club")>> "I get fucked there at work!" $he says confidently. The inspector frowns. "How often!?" The slave thinks for a moment and replies, "Four time<<s>> today. After the third time, it u<<s>>ually <<s>>top<<s>> clo<<s>>ing up again between cock<<s>>. I'm good at my job!" The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. @@ -423,7 +439,11 @@ Not waiting to be greeted, the inspector looks up at the nearest camera and dema "Hey," $he protests, "that'<<s>> normal." The inspector looks incredulous. "What!?" The slave looks insulted and replies, "I love <<s>>e<<x>>! Don't judge me. I take cock in all my hole<<s>>, and I like it. I'm going to beg for butt<<s>>e<<x>> the moment you leave, you bitch." $He defiantly sticks $his rump out at you. The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. <<set $shelterAbuse -= 1>> <<else>> - "I'm a <<s>>lave," $he says confidently. The inspector frowns. "What does that have to do with it?" The slave beams and replies, "It'<<s>> a hole. I'm a good $girl, <<s>>o I get fucked in all my hole<<s>>." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. + "I'm a <<s>>lave," $he says confidently. The inspector frowns. + <<run Enunciate($activeSlave)>> + "What doe<<s>> that have to do with it?" + <<run Enunciate(_Inspectee)>> + The slave beams and replies, "It'<<s>> a hole. I'm a good $girl, <<s>>o I get fucked in all my hole<<s>>." The inspector looks deflated, and reluctantly makes a positive note on _his2 tablet. <<set $shelterAbuse -= 1>> <</if>> <</if>> diff --git a/src/uncategorized/reStaffedMorning.tw b/src/uncategorized/reStaffedMorning.tw index 547aa23d2bf..29535d22150 100644 --- a/src/uncategorized/reStaffedMorning.tw +++ b/src/uncategorized/reStaffedMorning.tw @@ -48,7 +48,7 @@ The bathroom door is open and the shower is running. Though the steam is beginni <<link "Leave them satisfied">> <<replace "#result">> <<if $PC.dick == 1>> - You begin to thrust gently into _bedSlaves[0].slaveName's mouth. The girls moan and giggle into you at the signal that you're not going to get up right this instant, and <<if (_bedSlaves[0].dick > 0) && (_bedSlaves[1].dick > 0)>>start jerking each other off harder, making lewd noises and humping each other's hands<<else>>really start giving each other proper handjobs, jerking around lewdly as their arousal builds<</if>>.<<if $PC.vagina == 1>> They always spare at least one hand for your cunt, despite your thrusting.<</if>> When you climax, they do, too, one after the other. They quickly switch mouth positions and suck you back to full mast so you can enjoy your shower. + You begin to thrust gently into _bedSlaves[0].slaveName's mouth. <<if $girl == _girl2>>The $girl<<else>>Your bedmate<</if>>s moan and giggle into you at the signal that you're not going to get up right this instant, and <<if (_bedSlaves[0].dick > 0) && (_bedSlaves[1].dick > 0)>>start jerking each other off harder, making lewd noises and humping each other's hands<<else>>really start giving each other proper handjobs, jerking around lewdly as their arousal builds<</if>>.<<if $PC.vagina == 1>> They always spare at least one hand for your cunt, despite your thrusting.<</if>> When you climax, they do, too, one after the other. They quickly switch mouth positions and suck you back to full mast so you can enjoy your shower. <<else>> You reach down and run a possessive hand across each slave's scalp, neck, and back, eliciting shivers. Then, you gently hook them under the armpits and pull them up a bit, without breaking their lip locks with your nipples, or forcing them to stop playing with your cunt. Each slave ends curled up, mostly face-down, with their mouths still sucking on your <<if $PC.boobs == 1>>boobs<<else>>chest<</if>> and their free hands trapped between their legs. They get the message and begin to look after themselves, too; their resultant moaning against your nipples grows when you reach down and start teasing their butts. The three of you climax more or less together, and you bounce up with undiminished arousal to enjoy your shower. <</if>> diff --git a/src/uncategorized/resFailure.tw b/src/uncategorized/resFailure.tw index 14cad039cc3..4177cb94071 100644 --- a/src/uncategorized/resFailure.tw +++ b/src/uncategorized/resFailure.tw @@ -687,6 +687,7 @@ <<else>> <<set $activeSlave.pregType = 1>> <</if>> + <<set $activeSlave.pregSource = -9>> <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<run SetBellySize($activeSlave)>> diff --git a/src/uncategorized/saLiveWithHG.tw b/src/uncategorized/saLiveWithHG.tw index fbf91f29239..ad2712dee4e 100644 --- a/src/uncategorized/saLiveWithHG.tw +++ b/src/uncategorized/saLiveWithHG.tw @@ -920,7 +920,7 @@ <<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20, $slaves[$i].health -= 40, $slaves[$i].amp = 1>> <</if>> <<if ($slaves[$i].balls > 0) && ($slaves[$i].devotion <= 50)>> - $HeadGirl.slaveName decides to have some once-only sadistic pleasure, and carefully straps $slaves[$i].slaveName into the surgery until $he's completely immobile. $HeadGirl.slaveName situates a mirror so the terrified girl can see $his own crotch, gets behind $him, and carefully sodomizes $him during the entire process of @@.red;castration.@@ $slaves[$i].slaveName is anesthetized down there and can't feel the brutal anal rape, but $his abuser orgasms repeatedly to $him @@.gold;weeping at the sight of being gelded and raped at once.@@ + $HeadGirl.slaveName decides to have some once-only sadistic pleasure, and carefully straps $slaves[$i].slaveName into the surgery until $he's completely immobile. $HeadGirl.slaveName situates <<if canSee($slaves[$i])>>a mirror so the terrified $girl can see $his own crotch<<else>>$him so that the terrified $girl can sense what part of $his body is being manipulated even through the anesthetics<</if>>, gets behind $him, and carefully sodomizes $him during the entire process of @@.red;castration.@@ $slaves[$i].slaveName is anesthetized down there and can't feel the brutal anal rape, but $his abuser orgasms repeatedly to $him @@.gold;weeping at the <<if canSee($slaves[$i])>>sight<<else>>muted sensation<</if>> of being gelded and raped at once.@@ <<set $slaves[$i].devotion -= 20, $slaves[$i].trust -= 20, $slaves[$i].health -= 20, $slaves[$i].balls = 0>> <</if>> <</if>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 4d50142be4f..f219ca609c7 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -200,7 +200,7 @@ <</if>> <<case 4>> <<if $slaves[$i].navelPiercing>> - $He sometimes stares at $his <<if $slaves[$i].navelPiercing > 1>>navel chain, turning this way and that to make it move, unconsciously @@.green;getting used to $his fuckable body.@@<<else>>little feminine navel piercing, and seems to think @@.green;$his lower half is kind of pretty.@@<</if>> + $He sometimes <<if canSee($slaves[$i])>>stares at<<else>>considers<</if>> $his <<if $slaves[$i].navelPiercing > 1>>navel chain, turning this way and that to make it move, unconsciously @@.green;getting used to $his fuckable body.@@<<else>>little feminine navel piercing, and seems to think @@.green;$his lower half is kind of pretty.@@<</if>> <<set $slaves[$i].attrXY += 1>> <</if>> <<case 5>> @@ -8303,7 +8303,7 @@ <<if $slaves[$i].breedingMark == 1 && $propOutcome == 1 && $eugenicsFullControl != 1>> <<if $slaves[$i].preg > $slaves[$i].pregData.normalBirth/13.33 || $slaves[$i].pregKnown == 1>> - <<if $slaves[$i].pregSource != -1>> + <<if $slaves[$i].pregSource != -1 && $slaves[$i].pregSource != -6>> $slaves[$i].slaveName's weekly health checkup revealed $he is pregnant with an unacceptable child. @@.red;Its life has been terminated, you have been fined <<print cashFormat(100000)>>, and your rep among the Elite has been severely damaged.@@ <<set $slaves[$i].preg = 0>> <<set $slaves[$i].pregType = 0>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index 2ed70a0f0e7..0af53999500 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -491,7 +491,7 @@ <<case "be your Head Girl">> //$He is your Head Girl and is not available for other work// <<case "recruit girls">> - //$He is recruiting girls and is not available for other work// + //$He is recruiting slaves and is not available for other work// <<case "be the Nurse">> //$He is the Nurse and is not available for other work// <<case "be the Attendant">> -- GitLab