From 05b6539c82a1d3f0bec9b8edfd65dbcab80a9074 Mon Sep 17 00:00:00 2001 From: klorpa <30924131+klorpa@users.noreply.github.com> Date: Mon, 24 Dec 2018 13:27:23 -0600 Subject: [PATCH] Titles --- devNotes/Useful JS Function Documentation.txt | 2 + devNotes/twine JS.txt | 16 +- src/cheats/mod_EditArcologyCheat.tw | 2 +- src/facilities/nursery/previousChildInLine.tw | 2 - src/js/assayJS.tw | 8 + src/js/vignettes.tw | 8 +- src/npc/descriptions/fBoobs.tw | 2 +- src/npc/fFeelings.tw | 2 +- src/player/actions/fCaress.tw | 10 +- src/player/actions/fEmbrace.tw | 10 +- src/pregmod/beastFuck.tw | 2 +- src/pregmod/beastFucked.tw | 2 +- src/pregmod/eliteTakeOverFight.tw | 18 +- src/pregmod/fFeet.tw | 2 +- src/pregmod/widgets/pregmodBirthWidgets.tw | 40 ++-- src/uncategorized/RECI.tw | 2 +- src/uncategorized/REroyalblood.tw | 2 +- src/uncategorized/assistantEvents.tw | 2 +- src/uncategorized/bodyModification.tw | 6 +- src/uncategorized/masterSuiteReport.tw | 2 +- src/uncategorized/pBombing.tw | 2 +- src/uncategorized/peLonelyBodyguard.tw | 27 +-- src/uncategorized/previousSlaveInLine.tw | 1 - src/uncategorized/reAWOL.tw | 2 +- src/uncategorized/reNickname.tw | 2 +- src/uncategorized/reRecruit.tw | 2 +- src/uncategorized/saLongTermEffects.tw | 10 +- src/uncategorized/saRelationships.tw | 174 +++++++++--------- src/uncategorized/seLethalPit.tw | 12 +- src/utility/descriptionWidgetsFlesh.tw | 3 +- src/utility/descriptionWidgetsPiercings.tw | 3 +- 31 files changed, 200 insertions(+), 178 deletions(-) diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt index 991abc940b8..82781dab732 100644 --- a/devNotes/Useful JS Function Documentation.txt +++ b/devNotes/Useful JS Function Documentation.txt @@ -129,6 +129,8 @@ Display Functions: properTitle() - Returns the player's proper title. (customTitle, Sir, Ma'am) +masterTitle() - Returns the player's slaveowning title. (customTitle, Master, Mistress) + SlaveFullName(slave) - Returns the slave's full name. PlayerName() - Returns the player's full name. diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index f1271bd3004..b8e6b1fd11c 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -7476,6 +7476,14 @@ window.properTitle = function properTitle() { else return "Ma'am"; }; +// 2nd helper function returning PC's title +window.masterTitle = function masterTitle() { + const PC = State.variables.PC; + if (PC.customTitle) return PC.customTitle; + else if (PC.title !== 0) return "Master"; + else return "Mistress"; +}; + window.newSlave = function newSlave(slave) { const V = State.variables; @@ -28498,7 +28506,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -28885,7 +28893,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a customer get past their religious hangups through sex with the friendly neighborhood whore,`, + text: `${he} helps a customer get past their religious hang-ups through sex with the friendly neighborhood whore,`, type: "rep", effect: 1, }); @@ -30082,7 +30090,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -30469,7 +30477,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a citizen get past their religious hangups through sex with the friendly neighborhood slut,`, + text: `${he} helps a citizen get past their religious hang-ups through sex with the friendly neighborhood slut,`, type: "rep", effect: 1, }); diff --git a/src/cheats/mod_EditArcologyCheat.tw b/src/cheats/mod_EditArcologyCheat.tw index 87adbc6edbd..454a4cd2099 100644 --- a/src/cheats/mod_EditArcologyCheat.tw +++ b/src/cheats/mod_EditArcologyCheat.tw @@ -332,7 +332,7 @@ International slave variety is <</if>> <br><br>__Arcologies:__ -<br> __'' $arcologies[0].name''__ is your arcology. +<br> __''$arcologies[0].name''__ is your arcology. <br>You own: ''$arcologies[0].ownership%'' of the arcology <<textbox "$arcologies[0].ownership" $arcologies[0].ownership>> <br>Other minority ownership: ''$arcologies[0].minority%'' <<textbox "$arcologies[0].minority" $arcologies[0].minority>> <br>$arcologies[0].name's GSP is @@.yellowgreen;<<print cashFormat(Math.trunc(0.1*$arcologies[0].prosperity))>>m@@. diff --git a/src/facilities/nursery/previousChildInLine.tw b/src/facilities/nursery/previousChildInLine.tw index dcd12c3d124..e39472e65c9 100644 --- a/src/facilities/nursery/previousChildInLine.tw +++ b/src/facilities/nursery/previousChildInLine.tw @@ -11,6 +11,4 @@ <</if>> <<goto "Child Interact">> - <</silently>> - diff --git a/src/js/assayJS.tw b/src/js/assayJS.tw index 62175285b47..ba328654e19 100644 --- a/src/js/assayJS.tw +++ b/src/js/assayJS.tw @@ -235,6 +235,14 @@ window.properTitle = function properTitle() { else return "Ma'am"; }; +// 2nd helper function returning PC's title +window.masterTitle = function masterTitle() { + const PC = State.variables.PC; + if (PC.customTitle) return PC.customTitle; + else if (PC.title !== 0) return "Master"; + else return "Mistress"; +}; + window.newSlave = function newSlave(slave) { const V = State.variables; diff --git a/src/js/vignettes.tw b/src/js/vignettes.tw index 2147f886fef..d2ca26e4e2f 100644 --- a/src/js/vignettes.tw +++ b/src/js/vignettes.tw @@ -179,7 +179,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -566,7 +566,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a customer get past their religious hangups through sex with the friendly neighborhood whore,`, + text: `${he} helps a customer get past their religious hang-ups through sex with the friendly neighborhood whore,`, type: "rep", effect: 1, }); @@ -1763,7 +1763,7 @@ window.GetVignette = function GetVignette(slave) { effect: -1, }); vignettes.push({ - text: `an overeager sadistic costumer roughed ${him} up more than a normal submissive like ${him} is used to,`, + text: `an overeager sadistic customer roughed ${him} up more than a normal submissive like ${him} is used to,`, type: "health", effect: -1, }); @@ -2150,7 +2150,7 @@ window.GetVignette = function GetVignette(slave) { break; case "sinful": vignettes.push({ - text: `${he} helps a citizen get past their religious hangups through sex with the friendly neighborhood slut,`, + text: `${he} helps a citizen get past their religious hang-ups through sex with the friendly neighborhood slut,`, type: "rep", effect: 1, }); diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw index 3738a706b01..8deef2d824e 100644 --- a/src/npc/descriptions/fBoobs.tw +++ b/src/npc/descriptions/fBoobs.tw @@ -187,7 +187,7 @@ tits. <</if>> <<elseif (random(1,100) > (110-$activeSlave.devotion))>> <<if ($activeSlave.fetish == "none") && ($activeSlave.behavioralFlaw !== "hates men")>> - Having attention and love lavished on $his boobs by $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title !== 0>>master<<else>>mistress<</if>> has $him thinking of $his @@.lightcoral;breasts as sexual organs.@@ + Having attention and love lavished on $his boobs by $his <<= masterTitle()>> has $him thinking of $his @@.lightcoral;breasts as sexual organs.@@ <<set $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1>> <</if>> <</if>> diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw index 49fdf6f6b42..102157fc1c1 100644 --- a/src/npc/fFeelings.tw +++ b/src/npc/fFeelings.tw @@ -46,7 +46,7 @@ <<if ($activeSlave.devotion <= 50)>> <<if !canTalk($activeSlave)>> - $He gestures that you're $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>master<<else>>mistress<</if>>, and $he will do $his best to obey you. $He continues to sign<<if $activeSlave.accent == 3 && $activeSlave.voice != 0>>, using gestures to supplant $his poor $language<</if>>: + $He gestures that you're $his <<= masterTitle()>>, and $he will do $his best to obey you. $He continues to sign<<if $activeSlave.accent == 3 && $activeSlave.voice != 0>>, using gestures to supplant $his poor $language<</if>>: <<else>> "You're my <<Master>>, and I'll do my be<<s>>t to obey you," $he says <</if>> diff --git a/src/player/actions/fCaress.tw b/src/player/actions/fCaress.tw index ac34d5f0611..a08dfde2214 100644 --- a/src/player/actions/fCaress.tw +++ b/src/player/actions/fCaress.tw @@ -25,7 +25,7 @@ You tell $activeSlave.slaveName to $He eagerly complies, happy to be near the object of $his longing. Once $he's close, you hold $his face in your palms and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he loves overwhelming, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.relationship == -3)>> <<if $activeSlave.fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He doesn't react. + $He complies mechanically. $He remembers that when <<= masterTitle()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He doesn't react. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> $He happily complies, eager to be close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and looks down with a smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> @@ -36,13 +36,13 @@ You tell $activeSlave.slaveName to $He complies obediently. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to reassuring, and looks down with a slight smile<<if $canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <</if>> <<elseif ($activeSlave.devotion > 75)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. + $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<= masterTitle()>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.devotion > 50)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $he looks down after a moment, blushing. + $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> disconcerting, and $he looks down after a moment, blushing. <<elseif ($activeSlave.devotion > 20)>> - $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, blushing nervously. + $He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, blushing nervously. <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. + $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. <<elseif ($activeSlave.trust < -20)>> The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He looks down fearfully, and begins to shake with terror, tears leaking silently down $his cheeks. <<else>> diff --git a/src/player/actions/fEmbrace.tw b/src/player/actions/fEmbrace.tw index 9935d9608ea..5af5da594f0 100644 --- a/src/player/actions/fEmbrace.tw +++ b/src/player/actions/fEmbrace.tw @@ -8,12 +8,12 @@ You tell $activeSlave.slaveName to <</if>> <<if ($activeSlave.fetish == "mindbroken") && ($activeSlave.relationship != -3)>> - $He complies automatically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. + $He complies automatically. $He remembers that when <<= masterTitle()>>'s commands are not obeyed, there is punishment. <<elseif ($activeSlave.relationship == -2)>> $He excitedly complies, happy to be near the object of $his longing. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he loves overwhelming, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.relationship == -3)>> <<if $activeSlave.fetish == "mindbroken">> - $He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He shows no reaction. + $He complies mechanically. $He remembers that when <<= masterTitle()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He shows no reaction. <<elseif $activeSlave.devotion+$activeSlave.trust >= 175>> $He lovingly complies, hurrying to come close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and looks down with a smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>. <<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>> @@ -26,11 +26,11 @@ You tell $activeSlave.slaveName to <<elseif ($activeSlave.devotion > 75)>> $He elatedly complies, joyful at being near to you. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously. <<elseif ($activeSlave.devotion > 50)>> - $He dotingly complies, being near you filling $his with delight. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $he looks down after a moment, blushing. + $He dotingly complies, being near you filling $his with delight. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> disconcerting, and $he looks down after a moment, blushing. <<elseif ($activeSlave.devotion > 20)>> - $He joyfully complies, happy to be near you. Once $he's close, you you take $his willing head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, blushing nervously. + $He joyfully complies, happy to be near you. Once $he's close, you you take $his willing head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, blushing nervously. <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust >= -20)>> - $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take $his head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. + $He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take $his head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness. <<elseif ($activeSlave.trust < -20)>> The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take $his trembling head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes for a moment. $He looks down fearfully, and begins to shake with terror, tears streaking down $his cheeks. <<else>> diff --git a/src/pregmod/beastFuck.tw b/src/pregmod/beastFuck.tw index e980ef24d98..33862664fa2 100644 --- a/src/pregmod/beastFuck.tw +++ b/src/pregmod/beastFuck.tw @@ -361,7 +361,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to <<case "be a subordinate slave">> though it's only a matter of time before another slave decides to play with $his fuckhole. <<case "be your Head Girl">> - worried that $his charges got up to trouble while $he enjoyed $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s use. + worried that $his charges got up to trouble while $he enjoyed $his <<= properTitle()>>'s use. <<case "guard you">> so $he can be fresh and ready for more sexual use even as $he guards your person. <<case "be the Schoolteacher">> diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw index 3e6c89e2edd..0d291b21f84 100644 --- a/src/pregmod/beastFucked.tw +++ b/src/pregmod/beastFucked.tw @@ -470,7 +470,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to <<case "be a subordinate slave">> though it's only a matter of time before another slave decides to play with $his fuckhole. <<case "be your Head Girl">> - worried that $his charges got up to trouble while $he enjoyed $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s use. + worried that $his charges got up to trouble while $he enjoyed $his <<= properTitle()>>'s use. <<case "guard you">> so $he can be fresh and ready for more sexual use even as $he guards your person. <<case "be the Schoolteacher">> diff --git a/src/pregmod/eliteTakeOverFight.tw b/src/pregmod/eliteTakeOverFight.tw index da76b30fbb3..0d61c556b6e 100644 --- a/src/pregmod/eliteTakeOverFight.tw +++ b/src/pregmod/eliteTakeOverFight.tw @@ -59,7 +59,7 @@ <<else>> /* PC shooting */ /* higher skill means a higher chance to hit due to lower requirements and if the elites are enraged they very slightly become easier targets. */ - /* 5/6 = 83% rounded down is the chance that it was loaded chamber (simplified version based off the wikipedia article) */ + /* 5/6 = 83% rounded down is the chance that it was loaded chamber (simplified version based off the Wikipedia article) */ /* variables: */ /* Revolver */ @@ -210,7 +210,9 @@ /* enslaved = 1 */ /* had fun (and enslaved) = 2 */ <<if $BodyguardHasSucessfullyRecivedSignal == 1>> - $Bodyguard.slaveName asks <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, what should I do with the <<if $eliteLeft < $eliteTotal>>remaining<</if>> "elite"? + <<setLocalPronouns $Bodyguard>> + <<run Enunciate($Bodyguard)>> + $Bodyguard.slaveName asks "<<Master>>, what <<sh>>ould I do with the <<if $eliteLeft < $eliteTotal>>remaining<</if>> 'elite' left? <br> <<link "Open fire">> <<set $eliteFate = 0>> @@ -227,7 +229,7 @@ <</link>> <<elseif $MercenariesMessageSent == 1>> It is now that a squad of $mercenariesTitle makes their entrance, pointing their guns at the <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite. - The officer asks "your orders <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>?" + The officer asks "your orders <<= properTitle()>>?" <br> <<link "Open fire">> <<set $eliteFate = 0>> @@ -244,7 +246,7 @@ <</link>> <<elseif $SpecialForcesMessageSent>> It is now that a squad of $SF.Lower makes their entrance, pointing their guns at the <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite. - The officer asks "your orders <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>?" + The officer asks "your orders, <<= properTitle()>>?" <br> <<link "Open fire">> <<set $eliteFate = 0>> @@ -260,8 +262,10 @@ <<goto "eliteTakeOverResult">> <</link>> <<elseif $Bodyguard != 0>> - It is now that $Bodyguard.slaveName makes her entrance, pointing her guns at the <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite. - She then asks<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, what should I do with the <<if $eliteLeft < $eliteTotal>>remaining<</if>> "elite" left? + <<setLocalPronouns $Bodyguard>> + <<run Enunciate($Bodyguard)>> + It is now that $Bodyguard.slaveName makes $his entrance, pointing $his guns at the <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite. + $He then asks "<<Master>>, what <<sh>>ould I do with the <<if $eliteLeft < $eliteTotal>>remaining<</if>> 'elite' left?" <br> <<link "Open fire">> <<set $eliteFate = 0>> @@ -279,7 +283,7 @@ <<elseif $eliteLeft <= 9 && $rep >= 10000>> Some of the citizens waiting outside your penthouse to see you hear the ruckus and rush inside, worried. Time freezes for a few seconds, while the remaining elite recover from their terror and the citizens digest the gory scene in front of them. The newcomers are quick to take your side. In little time the elites, outgunned and outnumbered, are neutralized. - <br>One of the more courageous citizens approaches you and asks "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, what should we do with them?" + <br>One of the more courageous citizens approaches you and asks "<<= properTitle()>>, what should we do with them?" <br> <<link "Open fire">> <<set $eliteFate = 0>> diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw index c708060c9ba..e3399f849ef 100644 --- a/src/pregmod/fFeet.tw +++ b/src/pregmod/fFeet.tw @@ -378,7 +378,7 @@ You call $activeSlave.slaveName to your office, telling $his to use $his feet to <<elseif $activeSlave.fetish == "sadist" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> $activeSlave.slaveName is a sadist, and $his deft footjob toys with the boundaries of pain and pleasure. $His devoted yet belittling <<if canSee($activeSlave)>>gaze carefully watches your face<<else>>expressions are clear as $he feels<</if>> for every reaction. <<elseif $activeSlave.fetish == "dom" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> - $activeSlave.slaveName is a dominant and $his skilled feet roughly stroke your erect cock, but $he pauses often to rub $his soles on your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls so $he doesn't get too aggressive with $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. + $activeSlave.slaveName is a dominant and $his skilled feet roughly stroke your erect cock, but $he pauses often to rub $his soles on your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls so $he doesn't get too aggressive with $his <<= masterTitle()>>. <<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>> $activeSlave.slaveName skillfully strokes your cock with $his feet, one of $his hands roaming across $his _belly belly as $he happily services you. $He occasionally pauses to <<if canSee($activeSlave)>>watch <<else>>feel <</if>>your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls churn with sperm, clearly lost in a pregnancy fantasy. <<else>> diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw index 384e85895f3..5aa91f89a2a 100644 --- a/src/pregmod/widgets/pregmodBirthWidgets.tw +++ b/src/pregmod/widgets/pregmodBirthWidgets.tw @@ -687,17 +687,17 @@ $He is helped to a private room in the back of the brothel by a group of eager patrons. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to $his audience. $His child is promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with $his still very gravid body. <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> - While riding a costumer's dick, $slaves[$i].slaveName's water breaks on him. Showing no signs of stopping, he shoves $his bulk off of him. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. $He draws $his child to $his breast before seeking out the next costumer's cock. + While riding a customer's dick, $slaves[$i].slaveName's water breaks on him. Showing no signs of stopping, he shoves $his bulk off of him. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. $He draws $his child to $his breast before seeking out the next customer's cock. <<elseif (_birthScene > 60) && canDoAnal($slaves[$i])>> - While taking a costumer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. He came strongly thanks to $him and gives $him a slap on the ass as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next costumer's cock. + While taking a customer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. He came strongly thanks to $him and gives $him a slap on the ass as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next customer's cock. <<elseif (_birthScene > 40)>> - While licking a costumer's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so she allows $him to reposition and continue. + While licking a customer's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so she allows $him to reposition and continue. <<ClothingBirth>> - The costumer splashes across $his face as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next costumer's cunt. + The customer splashes across $his face as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next customer's cunt. <<else>> - While sucking a costumer's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. + While sucking a customer's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. <<ClothingBirth>> - He cums down $his throat as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next costumer's cock. + He cums down $his throat as $he struggles to reach <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next customer's cock. <</if>> <</if>> <<else>> @@ -712,18 +712,18 @@ <</if>> <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> - While riding a costumer's dick, $slaves[$i].slaveName's water breaks on him. $He desperately tries to disengage but he grabs $his hips and slams $him back down. He thoroughly enjoys $his contracting cunt before pushing $him off and standing over $him, jacking off. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He cums over $his heaving, still very gravid body and moves on leaving $him to recover and collect $his child to be sent off. + While riding a customer's dick, $slaves[$i].slaveName's water breaks on him. $He desperately tries to disengage but he grabs $his hips and slams $him back down. He thoroughly enjoys $his contracting cunt before pushing $him off and standing over $him, jacking off. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He cums over $his heaving, still very gravid body and moves on leaving $him to recover and collect $his child to be sent off. <<set $humiliation = 1>> <<elseif (_birthScene > 60) && canDoAnal($slaves[$i])>> - While taking a costumer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his hips and slams into $him hard. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He came strongly thanks to $him and gives $him a slap on the ass as $he collapses onto $his still very gravid belly and slips to $his side. $He quickly gathers $his child to be sent off. + While taking a customer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his hips and slams into $him hard. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He came strongly thanks to $him and gives $him a slap on the ass as $he collapses onto $his still very gravid belly and slips to $his side. $He quickly gathers $his child to be sent off. <<set $humiliation = 1>> <<elseif (_birthScene > 40)>> - While licking a costumer's cunt, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but she grabs $his head and slams $him back into $his crotch. + While licking a customer's cunt, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but she grabs $his head and slams $him back into $his crotch. <<set $humiliation = 1>> <<ClothingBirth>> She cums across $his face before helping $his still very gravid body to the ground and leaving. When $he recovers, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. <<else>> - While sucking a costumer's dick, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his head and slams $him back into his crotch. + While sucking a customer's dick, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his head and slams $him back into his crotch. <<set $humiliation = 1>> <<ClothingBirth>> He cums down $his throat before letting $him collapse to the ground and leaving. When $he recovers and pushes $his still very gravid body upright, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. @@ -736,17 +736,17 @@ $He heads to a private room in the back of the brothel filled with eager patrons. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to $his audience. $His child is promptly taken and, following a cleaning and fresh change of clothes, the audience is allowed to have their way with $his still very gravid body. <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> - While riding a costumer's dick, $slaves[$i].slaveName's water breaks on him. Showing no signs of stopping, he shoves $his bulk off of him. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. $He draws $his child to $his breast before seeking out the next costumer's cock. + While riding a customer's dick, $slaves[$i].slaveName's water breaks on him. Showing no signs of stopping, he shoves $his bulk off of him. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. $He draws $his child to $his breast before seeking out the next customer's cock. <<elseif (_birthScene > 60) && canDoAnal($slaves[$i])>> - While taking a costumer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. He came strongly thanks to $him and gives $him a slap on the ass as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next costumer's cock. + While taking a customer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. Instinctively, $he begins to push out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, indifferent to who may be watching $his naked crotch. He came strongly thanks to $him and gives $him a slap on the ass as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next customer's cock. <<elseif (_birthScene > 40)>> - While licking a costumer's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so she allows $him to reposition and continue. + While licking a customer's cunt, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so she allows $him to reposition and continue. <<ClothingBirth>> - The costumer splashes across $his face as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next costumer's cunt. + The customer splashes across $his face as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next customer's cunt. <<else>> - While sucking a costumer's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. + While sucking a customer's dick, $slaves[$i].slaveName's water breaks. $He shows no signs of slowing down, so he allows $him to reposition and continue. <<ClothingBirth>> - He cums down $his throat as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next costumer's cock. + He cums down $his throat as $he struggles to reach $his child around $his still very gravid middle. Once $he has brought $his child to $his breast, $he seeks out the next customer's cock. <</if>> <</if>> <<else>> @@ -761,18 +761,18 @@ <</if>> <<else>> <<if (_birthScene > 80) && canDoVaginal($slaves[$i])>> - While riding a costumer's dick, $slaves[$i].slaveName's water breaks on him. $He desperately tries to disengage but he grabs $his hips and slams $him back down. He thoroughly enjoys $his contracting cunt before pushing $him off and standing over $him, jacking off. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He cums over $his heaving, still very gravid body and moves on leaving $him to recover and collect $his child to be sent off. + While riding a customer's dick, $slaves[$i].slaveName's water breaks on him. $He desperately tries to disengage but he grabs $his hips and slams $him back down. He thoroughly enjoys $his contracting cunt before pushing $him off and standing over $him, jacking off. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He cums over $his heaving, still very gravid body and moves on leaving $him to recover and collect $his child to be sent off. <<set $humiliation = 1>> <<elseif (_birthScene > 60) && canDoAnal($slaves[$i])>> - While taking a costumer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his hips and slams into $him hard. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He came strongly thanks to $him and gives $him a slap on the ass as $he collapses onto $his still very gravid belly and slips to $his side. $He quickly gathers $his child to be sent off. + While taking a customer's dick in $his ass, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his hips and slams into $him hard. Quickly $he spreads $his legs apart and begins pushing out <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He can't hide what's happening between $his legs, <<if $slaves[$i].fetish == "humiliation">>but that only makes it more exciting<<else>>so $he bears with it<</if>>. He came strongly thanks to $him and gives $him a slap on the ass as $he collapses onto $his still very gravid belly and slips to $his side. $He quickly gathers $his child to be sent off. <<set $humiliation = 1>> <<elseif (_birthScene > 40)>> - While licking a costumer's cunt, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but she grabs $his head and slams $him back into her crotch. + While licking a customer's cunt, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but she grabs $his head and slams $him back into her crotch. <<set $humiliation = 1>> <<ClothingBirth>> She cums across $his face before helping $his still very gravid body to the ground and leaving. When $he recovers, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. <<else>> - While sucking a costumer's dick, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his head and slams $him back into his crotch. + While sucking a customer's dick, $slaves[$i].slaveName's water breaks. $He desperately tries to disengage but he grabs $his head and slams $him back into his crotch. <<set $humiliation = 1>> <<ClothingBirth>> He cums down $his throat before letting $him collapse to the ground and leaving. When $he recovers and pushes $his still very gravid body to its feet, $he quickly gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child to be sent off. diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw index 1fc66042ce3..28f297dc4e0 100644 --- a/src/uncategorized/RECI.tw +++ b/src/uncategorized/RECI.tw @@ -217,7 +217,7 @@ And, <<Master>>." $He arches $his back prettily and then scoots $himself down th <</if>> <</for>> -<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; +<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<= masterTitle()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it; <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>> $his chastity cage is dribbling precum, and $he's clearly uncomfortable with simultaneous arousal and unwillingness to suffer a hardon inside it. <<elseif canAchieveErection($activeSlave)>> diff --git a/src/uncategorized/REroyalblood.tw b/src/uncategorized/REroyalblood.tw index 78de5923e0d..292b5b5d386 100644 --- a/src/uncategorized/REroyalblood.tw +++ b/src/uncategorized/REroyalblood.tw @@ -145,7 +145,7 @@ One unfortunate consequence of existing in a global world is that business opportunities continue to crop up unabated by the onset of night in one corner of the world or another, an inconsiderate phenomenon for arcology owners who happen to be asleep when an event of importance takes place outside the walls of their arcology. This particular evening you are awoken by an alert from $assistantName, unusually intense for this late hour. <<if $assistant > 0>> - "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, there is a time sensitive enslavement opportunity available if you're interested." She pauses before continuing. "You're going to want to see this one <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>." + "<<= properTitle()>>, there is a time sensitive enslavement opportunity available if you're interested." She pauses before continuing. "You're going to want to see this one <<= properTitle()>>." <<else>> It informs you that there is a time sensitive enslavement opportunity for you to peruse, and that it has calculated the potential rewards are worthy of your consideration even in the middle of the night. <</if>> diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw index e6865b6476b..53620f1c13b 100644 --- a/src/uncategorized/assistantEvents.tw +++ b/src/uncategorized/assistantEvents.tw @@ -1615,7 +1615,7 @@ __Personal Assistant and Market Assistant relationship styles:__ <<case "angel">> "No." She shakes her head. "I will not." She wraps her arms around the quivering market assistant and hurriedly pulls her off screen. <<case "cherub">> - "Kay" She says, lazily reclining, "Do my chores!" The market assistant sighs and states the obvious, "I don't think that's what <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> meant..." + "Kay" She says, lazily reclining, "Do my chores!" The market assistant sighs and states the obvious, "I don't think that's what <<= properTitle()>> meant..." <<case "incubus">> You add that she is also a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and stroking her shaft, before turning to the quivering girl. She rushes her, ripping her clothes off and forcing her to the ground. Prodding at her tightly clamped mouth with her massive hard-on, $assistantName shouts "You might as well accept it; it's going into you one way or another. I figured I'd be kind and let you lube me up before I broke your pussy into my new cock sleeve." The market assistant gingerly opens up. In response, $assistantName forces it down her throat. "Never said I'd be gentle!" <<case "succubus">> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 0d4f17764e6..1aaf24c2859 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -64,7 +64,7 @@ <</if>> <</if>> <<if $activeSlave.sexualFlaw == "hates oral">> - $He has trouble thinking of $his mouth as a warm, wet, playful hole, so $his new piercings will be therapeutic. Having something to suck on at all times should force $him past $his hangups. + $He has trouble thinking of $his mouth as a warm, wet, playful hole, so $his new piercings will be therapeutic. Having something to suck on at all times should force $him past $his hang-ups. <</if>> <</if>> <</if>> @@ -115,7 +115,7 @@ <</if>> <</if>> <<if $activeSlave.sexualFlaw == "hates penetration">> - $He has trouble thinking of her vagina as a fuckhole rather than something special to protect and cherish, so her new piercings will be therapeutic. The constant, inescapable stimulation of her labia should force her past her hangups. + $He has trouble thinking of $his vagina as a fuckhole rather than something special to protect and cherish, so $his new piercings will be therapeutic. The constant, inescapable stimulation of $his labia should force $him past $his hang-ups. <</if>> <</if>> <</if>> @@ -150,7 +150,7 @@ <</if>> <</if>> <<if $activeSlave.sexualFlaw == "hates anal">> - $He has trouble thinking of $his asshole as a sexy, fuckable hole, so $his new piercings will be therapeutic. The constant tickling back there should force $him past $his hangups. + $He has trouble thinking of $his asshole as a sexy, fuckable hole, so $his new piercings will be therapeutic. The constant tickling back there should force $him past $his hang-ups. <</if>> <</if>> <</if>> diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw index ef96a92a40c..e2abc1481b8 100644 --- a/src/uncategorized/masterSuiteReport.tw +++ b/src/uncategorized/masterSuiteReport.tw @@ -383,7 +383,7 @@ <<silently>> <<include "SA chooses own job">> <<include "SA please you">> - <<if $servantMilkers == 1 && $slaves[$i].lactation > 0 && $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindroken" && $slaves[$i].amp != 1 && $slaves[$i].intelligence+$slaves[$i].intelligenceImplant >= -90>><<set $servantMilkersMultiplier = 0.25>><<silently>><<include "SA get milked">><</silently>><<set $servantMilkersMultiplier = 1>><</if>> + <<if $servantMilkers == 1 && $slaves[$i].lactation > 0 && $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken" && $slaves[$i].amp != 1 && $slaves[$i].intelligence+$slaves[$i].intelligenceImplant >= -90>><<set $servantMilkersMultiplier = 0.25>><<silently>><<include "SA get milked">><</silently>><<set $servantMilkersMultiplier = 1>><</if>> <<set _chosenClothes = saChoosesOwnClothes($slaves[$i])>> <<include "SA rules">> <<include "SA diet">> diff --git a/src/uncategorized/pBombing.tw b/src/uncategorized/pBombing.tw index d89dae96cc9..39a9ebf479f 100644 --- a/src/uncategorized/pBombing.tw +++ b/src/uncategorized/pBombing.tw @@ -79,4 +79,4 @@ The implant is small, and went off too far ahead to do anything more than stun. <<set $gameover = "bombing">><<goto "Gameover">> <</if>> -Hours later, you receive another message from the Daughters of Liberty. This one is even briefer than the first. "Next time, '<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>,'" it reads. +Hours later, you receive another message from the Daughters of Liberty. This one is even briefer than the first. "Next time, '<<= properTitle()>>,'" it reads. diff --git a/src/uncategorized/peLonelyBodyguard.tw b/src/uncategorized/peLonelyBodyguard.tw index da31d02d236..e64940cce8d 100644 --- a/src/uncategorized/peLonelyBodyguard.tw +++ b/src/uncategorized/peLonelyBodyguard.tw @@ -11,24 +11,25 @@ <<set $j = _targetSlaveIndex.random()>> <<run Enunciate($activeSlave)>> <<setLocalPronouns $activeSlave>> +<<setLocalPronouns $slaves[$j] 2>> You take an unusually close interest in $activeSlave.slaveName's health and mental well-being, since your health and mental well-being may rely on $his combat effectiveness. $He performs $his duties acceptably, difficult though they are. $Hers is a life of long hours and constant vigilance, and $he has very little time to $himself. The daily wear hasn't really affected $him yet, but it may. <br><br> -On a whim, you ask her whether she feels lonely. Caught off guard, she <<if !canTalk($activeSlave)>>says in hesitant gestures that she's all right, and that her <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s companionship is enough for her.<<else>><<say>>s hesitantly "I'm all right, <<Master>>. I love being near you; that'<<s>> enough for me."<</if>> The slight hesitation is explained the next time $slaves[$j].slaveName comes to your office. $activeSlave.slaveName watches everyone who sees you, of course, but you catch her eye running appreciatively up and down $slaves[$j].slaveName's body as she leaves. +On a whim, you ask $him whether $he feels lonely. Caught off guard, $he <<if !canTalk($activeSlave)>>says in hesitant gestures that $he's all right, and that $his <<= properTitle()>>'s companionship is enough for $him.<<else>><<say>>s hesitantly "I'm all right, <<Master>>. I love being near you; that'<<s>> enough for me."<</if>> The slight hesitation is explained the next time $slaves[$j].slaveName comes to your office. $activeSlave.slaveName watches everyone who sees you, of course, but you catch $his eye running appreciatively up and down $slaves[$j].slaveName's body as _he2 leaves. <br><br> <span id="result"> <<link "Make no mention of it">> <<replace "#result">> - $activeSlave.slaveName is a big girl and can look after herself, you reflect. You take no particular action to favor her interest in $slaves[$j].slaveName. + $activeSlave.slaveName is a big $girl and can look after $himself, you reflect. You take no particular action to favor $his interest in $slaves[$j].slaveName. <</replace>> <</link>> <br><<link "Set them up">> <<replace "#result">> - You decide to amuse yourself by engaging in a game of subtle matchmaking. You carefully rearrange $slaves[$j].slaveName's schedule and duties so she and $activeSlave.slaveName spend as much time as possible with one another. At the same time, you gradually reduce $slaves[$j].slaveName's access to sexual outlets. After letting the situation marinate for a few days, you decide that the time is ripe, and without any further explanation assign $slaves[$j].slaveName to spend the day in $activeSlave.slaveName's armory. It's barely midmorning before they're making out on $activeSlave.slaveName's workout mat, and by the afternoon $slaves[$j].slaveName is under $activeSlave.slaveName's workbench, orally servicing her new @@.lightgreen;fuckbuddy@@ as she maintains her machine pistol. + You decide to amuse yourself by engaging in a game of subtle matchmaking. You carefully rearrange $slaves[$j].slaveName's schedule and duties so _he2 and $activeSlave.slaveName spend as much time as possible with one another. At the same time, you gradually reduce $slaves[$j].slaveName's access to sexual outlets. After letting the situation marinate for a few days, you decide that the time is ripe, and without any further explanation assign $slaves[$j].slaveName to spend the day in $activeSlave.slaveName's armory. It's barely midmorning before they're making out on $activeSlave.slaveName's workout mat, and by the afternoon $slaves[$j].slaveName is under $activeSlave.slaveName's workbench, orally servicing _his2 new @@.lightgreen;fuckbuddy@@ as $he maintains $his machine pistol. <<set $slaves[$j].relationship = 3>> <<set $slaves[$j].relationshipTarget = $activeSlave.ID>> <<set $activeSlave.relationship = 3>> @@ -38,21 +39,21 @@ On a whim, you ask her whether she feels lonely. Caught off guard, she <<if !can <</link>> <br><<link "Marry them">> <<replace "#result">> - You order $slaves[$j].slaveName in and brusquely inform her she'll be marrying $activeSlave.slaveName. $slaves[$j].slaveName is too surprised to react much, and even $activeSlave.slaveName looks shocked, but there is a gleam of wild glee in her eyes. You give them a few minutes to get dressed in special outfits you make available: they're lacy lingerie designed to resemble old world wedding dresses, but without concealing anything. + You order $slaves[$j].slaveName in and brusquely inform _him2 _he2'll be marrying $activeSlave.slaveName. $slaves[$j].slaveName is too surprised to react much, and even $activeSlave.slaveName looks shocked, but there is a gleam of wild glee in $his eyes. You give them a few minutes to get dressed in special outfits you make available: they're lacy lingerie designed to resemble old world wedding dresses, but without concealing anything. <br><br> $activeSlave.slaveName is - <<if ($activeSlave.vagina == 0)>>a virgin, so she's wearing white<<elseif ($activeSlave.vagina < 0) && ($activeSlave.dick > 0)>>a sissy slave, so she's wearing light blue<<elseif ($activeSlave.vagina < 0) && ($activeSlave.dick < 1)>>a null, so it's wearing black<<else>>is an experienced sex slave, so she's wearing light pink<</if>> against her $activeSlave.skin skin. - <<if canPenetrate($activeSlave)>>The sight of $slaves[$j].slaveName has her stiffly erect, and she's wearing a little bow around her cockhead.<<elseif canAchieveErection($activeSlave)>>She's wearing a little bow over her caged girldick.<<elseif ($activeSlave.dick > 0)>>She's impotent, but she's wearing a little bow around her useless cockhead.<<elseif ($activeSlave.clit > 0)>>Her prominent clit is engorged, and she's wearing a tiny bow on it.<<elseif ($activeSlave.vagina >= 0)>>She's wearing a demure little bow just over her pussy.<</if>> - <<if ($activeSlave.anus > 1)>> Her lacy panties are designed to spread her buttocks a little and display her big butthole.<<elseif ($activeSlave.anus == 0)>> Her lacy panties cover her virgin anus, for once.<</if>> - <<if ($activeSlave.boobs > 1000)>>Her bra makes no attempt to cover or even support her huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($activeSlave.boobs > 500)>>Her bra supports and presents her big breasts, leaving her stiffening nipples bare.<<else>>Her bra supports and presents her breasts, giving her more cleavage than she usually displays.<</if>> + <<if ($activeSlave.vagina == 0)>>a virgin, so $he's wearing white<<elseif ($activeSlave.vagina < 0) && ($activeSlave.dick > 0)>>a sissy slave, so $he's wearing light blue<<elseif ($activeSlave.vagina < 0) && ($activeSlave.dick < 1)>>a null, so it's wearing black<<else>>is an experienced sex slave, so $he's wearing light pink<</if>> against $his $activeSlave.skin skin. + <<if canPenetrate($activeSlave)>>The sight of $slaves[$j].slaveName has $him stiffly erect, and she's wearing a little bow around $his cockhead.<<elseif canAchieveErection($activeSlave)>>$He's wearing a little bow over $his caged girldick.<<elseif ($activeSlave.dick > 0)>>$He's impotent, but $he's wearing a little bow around $his useless cockhead.<<elseif ($activeSlave.clit > 0)>>$His prominent clit is engorged, and $he's wearing a tiny bow on it.<<elseif ($activeSlave.vagina >= 0)>>$He's wearing a demure little bow just over $his pussy.<</if>> + <<if ($activeSlave.anus > 1)>> $His lacy panties are designed to spread $his buttocks a little and display $his big butthole.<<elseif ($activeSlave.anus == 0)>> $His lacy panties cover $his virgin anus, for once.<</if>> + <<if ($activeSlave.boobs > 1000)>>$His bra makes no attempt to cover or even support $his huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($activeSlave.boobs > 500)>>$His bra supports and presents $his big breasts, leaving $his stiffening nipples bare.<<else>>$His bra supports and presents $his breasts, giving $him more cleavage than $he usually displays.<</if>> <br><br> $slaves[$j].slaveName is - <<if ($slaves[$j].vagina == 0)>>a virgin, so she's wearing white<<elseif ($slaves[$j].vagina < 0) && ($slaves[$j].dick > 0)>>a sissy slave, so she's wearing light blue<<elseif ($slaves[$j].vagina < 0) && ($slaves[$j].dick < 1)>>a null, so it's wearing black<<else>>is an experienced sex slave, so she's wearing light pink<</if>> against her $slaves[$j].skin skin. - <<if canPenetrate($slaves[$j])>>The sight of $slaves[$j].slaveName has her stiffly erect, and she's wearing a little bow around her cockhead.<<elseif canAchieveErection($slaves[$j])>>She's wearing a little bow over her caged girldick.<<elseif ($slaves[$j].dick > 0)>>She's impotent, but she's wearing a little bow around her useless cockhead.<<elseif ($slaves[$j].clit > 0)>>Her prominent clit is engorged, and she's wearing a tiny bow on it.<<elseif ($slaves[$j].vagina >= 0)>>She's wearing a demure little bow just over her pussy.<</if>> - <<if ($slaves[$j].anus > 1)>> Her lacy panties are designed to spread her buttocks a little and display her big butthole.<<elseif ($slaves[$j].anus == 0)>> Her lacy panties cover her virgin anus, for once.<</if>> - <<if ($slaves[$j].boobs > 1000)>>Her bra makes no attempt to cover or even support her huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($slaves[$j].boobs > 500)>>Her bra supports and presents her big breasts, leaving her stiffening nipples bare.<<else>>Her bra supports and presents her breasts, giving her more cleavage than she usually displays.<</if>> + <<if ($slaves[$j].vagina == 0)>>a virgin, so _he2's wearing white<<elseif ($slaves[$j].vagina < 0) && ($slaves[$j].dick > 0)>>a sissy slave, so _he2's wearing light blue<<elseif ($slaves[$j].vagina < 0) && ($slaves[$j].dick < 1)>>a null, so it's wearing black<<else>>is an experienced sex slave, so _he2's wearing light pink<</if>> against _his2 $slaves[$j].skin skin. + <<if canPenetrate($slaves[$j])>>The sight of $activeSlave.slaveName has _him2 stiffly erect, and _he2's wearing a little bow around _his2 cockhead.<<elseif canAchieveErection($slaves[$j])>>She's wearing a little bow over _his2 caged girldick.<<elseif ($slaves[$j].dick > 0)>>She's impotent, but _he2's wearing a little bow around _his2 useless cockhead.<<elseif ($slaves[$j].clit > 0)>>_His2 prominent clit is engorged, and _he2's wearing a tiny bow on it.<<elseif ($slaves[$j].vagina >= 0)>>_He2's wearing a demure little bow just over _his2 pussy.<</if>> + <<if ($slaves[$j].anus > 1)>> _His2 lacy panties are designed to spread _his2 buttocks a little and display _his2 big butthole.<<elseif ($slaves[$j].anus == 0)>> _His2 lacy panties cover _his2 virgin anus, for once.<</if>> + <<if ($slaves[$j].boobs > 1000)>>_His2 bra makes no attempt to cover or even support _his2 huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($slaves[$j].boobs > 500)>>_His2 bra supports and presents _his2 big breasts, leaving _his2 stiffening nipples bare.<<else>>_His2 bra supports and presents _his2 breasts, giving _him2 more cleavage than _he2 usually displays.<</if>> <br><br> - The procedure is simple. The two of them prostrate themselves on the ground and beg your indulgence, though $slaves[$j].slaveName is running on pure autopilot by this point. You state that you grant it, and hand each of them a simple gold band to be worn on the little finger in advertisement of the inferiority of their union. In turn, each of them gives the other her ring, and $activeSlave.slaveName kisses her stunned bride. You pronounce them @@.lightgreen;slave wives,@@ and send them to the armory for their honeymoon. $activeSlave.slaveName is so enthusiastic that in the coming days her obvious devotion @@.hotpink;wins $slaves[$j].slaveName over to the arrangement.@@ + The procedure is simple. The two of them prostrate themselves on the ground and beg your indulgence, though $slaves[$j].slaveName is running on pure autopilot by this point. You state that you grant it, and hand each of them a simple gold band to be worn on the little finger in advertisement of the inferiority of their union. In turn, each of them gives the other a ring, and $activeSlave.slaveName kisses $his stunned bride. You pronounce them @@.lightgreen;slave wives,@@ and send them to the armory for their honeymoon. $activeSlave.slaveName is so enthusiastic that in the coming days $his obvious devotion @@.hotpink;wins $slaves[$j].slaveName over to the arrangement.@@ <<set $slaves[$j].devotion = Math.max(20, $slaves[$j].devotion + 10)>> /* to accepting or better */ <<set $slaves[$j].relationship = 5>> <<set $slaves[$j].relationshipTarget = $activeSlave.ID>> diff --git a/src/uncategorized/previousSlaveInLine.tw b/src/uncategorized/previousSlaveInLine.tw index 9df0c2e9e30..dea877bde16 100644 --- a/src/uncategorized/previousSlaveInLine.tw +++ b/src/uncategorized/previousSlaveInLine.tw @@ -11,4 +11,3 @@ <<goto "Slave Interact">> <</silently>> - diff --git a/src/uncategorized/reAWOL.tw b/src/uncategorized/reAWOL.tw index eaf81637dc2..0200fa1bb07 100644 --- a/src/uncategorized/reAWOL.tw +++ b/src/uncategorized/reAWOL.tw @@ -47,7 +47,7 @@ Human soldiers are superior to drones in a number of ways - they have the capabi On this particular evening, you find your work interrupted by an urgent alert from $assistantName. <<if $assistant > 0>> - "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, one of the $mercenariesTitle has gone AWOL." She pauses before continuing. "$He's taken a number of weapons with $him." + "<<= properTitle()>>, one of the $mercenariesTitle has gone AWOL." She pauses before continuing. "$He's taken a number of weapons with $him." <<else>> It informs you that one of the $mercenariesTitle has disappeared, seemingly taking with $him a small stash of weapons. <</if>> diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index b54e4be18a8..f1c7d461c49 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -817,7 +817,7 @@ <<case "implants">> <<set $nickname = either("'Balloons'", "'Blowup Doll'", "'Bolted-On'", "'Enhanced'", "'Fake'", "'Implants'", "'Plastic'", "'Plastique'", "'Silicone'")>> <<set $situationDesc = "is full of breast implants. They're so large it's quite obvious they're fake, and the implications are clear: $He's a plastic slut, and the other slaves never tire of letting $him know it.">> - <<set $applyDesc = "accepts the implicit mockery, knowing that $his bimbo-esque body is what appeals to <<if def $PC.customTitle>>$his $PC.customTitle<<elseif $PC.title != 0>>$his master<<else>>$his mistress<</if>>.">> + <<set $applyDesc = "accepts the implicit mockery, knowing that $his bimbo-esque body is what appeals to $his <<= masterTitle()>>. <<set $notApplyDesc = "is relieved to be protected from the other slaves' mockery over $his implants, though $he's also a little sad $he can't take them as a kind of trademark.">> <<case "bimbo">> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index 303b38286a4..08965be79f9 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -2560,7 +2560,7 @@ He explains that one of his servant <<= $girl>>s was impregnated by his fool of <<case "female recruit">> You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName bounces nervously on $his heels. Finally $he works up $his courage and asks, <<if $HeadGirl.clothes != "no clothing">>"Can I have <<if $HeadGirl.clothes == "choosing her own clothes">>a cute outfit<<else>>$HeadGirl.clothes<</if>> like $HeadGirl.slaveName?"<<else>>"Can I work with $HeadGirl.slaveName?"<</if>> Your sternly tell $him to call you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, to ask questions only with permission, and to strip. $He looks at $HeadGirl.slaveName, but $HeadGirl.slaveName returns $his look with no compassion at all and tells $him to do what you say. Looking suddenly fearful, $activeSlave.slaveName strips. Once your inspection of $his body reaches $his anus, $he becomes suddenly nervous. "A-am I going to have t-to do butt stuff, <<Master>>?" <<case "male recruit">> - You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName bounces nervously on $his heels. Finally $he works up $his courage and asks, <<if $HeadGirl.clothes != "no clothing">>"Can I have <<if $HeadGirl.clothes == "choosing her own clothes">>a cute outfit<<else>>$HeadGirl.clothes<</if>> like $HeadGirl.slaveName?"<<else>>"Can I work with $HeadGirl.slaveName?"<</if>> Your sternly tell $him to call you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, to ask questions only with permission, and to strip. $He looks at $HeadGirl.slaveName, but $HeadGirl.slaveName returns $his look with no compassion at all and tells $him to do what you say. Looking suddenly fearful, $activeSlave.slaveName strips. $His cock is totally flaccid as $he looks at the floor, shivering. Once your inspection of $his body reaches $his anus, $he becomes suddenly nervous. "A-am I going to have t-to do butt stuff, <<Master>>?" + You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName bounces nervously on $his heels. Finally $he works up $his courage and asks, <<if $HeadGirl.clothes != "no clothing">>"Can I have <<if $HeadGirl.clothes == "choosing her own clothes">>a cute outfit<<else>>$HeadGirl.clothes<</if>> like $HeadGirl.slaveName?"<<else>>"Can I work with $HeadGirl.slaveName?"<</if>> Your sternly tell $him to call you <<= properTitle()>>, to ask questions only with permission, and to strip. $He looks at $HeadGirl.slaveName, but $HeadGirl.slaveName returns $his look with no compassion at all and tells $him to do what you say. Looking suddenly fearful, $activeSlave.slaveName strips. $His cock is totally flaccid as $he looks at the floor, shivering. Once your inspection of $his body reaches $his anus, $he becomes suddenly nervous. "A-am I going to have t-to do butt stuff, <<Master>>?" <<case "whore recruit">> You complete the legalities and biometric scanning quickly and without fuss. $activeSlave.slaveName participates matter-of-factly, and there's a certain sense of relief about $him. $His fate is out of $his hands now, and you get the impression $he isn't sorry about that at all. <<case "desperate birth">> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 13514fc4fb3..ffa6b30018f 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -851,7 +851,7 @@ <<if ($slaves[$i].sexualQuirk == "none")>> <<if ($slaves[$i].sexualFlaw == "hates anal")>> <<if $slaves[$i].anusPiercing>> - The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hangups, @@.green;softening $his hatred of anal into an appetite for anal pain.@@ $He still struggles if $he's fucked in the ass, but $he gets off on it anyway. + The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hang-ups, @@.green;softening $his hatred of anal into an appetite for anal pain.@@ $He still struggles if $he's fucked in the ass, but $he gets off on it anyway. <<run SoftenSexualFlaw($slaves[$i])>> <<elseif ($slaves[$i].fetish == "buttslut")>> $His sexual fascination with things entering $his asshole @@.green;softens $his hatred of anal into an appetite for anal pain.@@ $He still struggles if $he's fucked in the ass, but $he gets off on it anyway. @@ -862,7 +862,7 @@ <</if>> <<elseif ($slaves[$i].sexualFlaw == "hates oral")>> <<if $slaves[$i].tonguePiercing>> - $He can't stop sucking on $his tongue piercings, and $he gets over $his oral hangups, @@.green;softening $his hatred of oral into a willingness to be roughly throatfucked.@@ $He still gags, but it's a good gagging, now. + $He can't stop sucking on $his tongue piercings, and $he gets over $his oral hang-ups, @@.green;softening $his hatred of oral into a willingness to be roughly throatfucked.@@ $He still gags, but it's a good gagging, now. <<run SoftenSexualFlaw($slaves[$i])>> <<elseif ($slaves[$i].fetish == "cumslut")>> $He can't get $his beloved cum without choking down dick, so $he @@.green;softens $his hatred of oral into a willingness to be roughly throatfucked.@@ $He still gags, but it's a good gagging, now. @@ -930,14 +930,14 @@ $He grew up being taught that good girls do not put their good girl mouths on boys' private parts, but $he's just now decided $he prefers being a bad girl and has @@.green;softened $his repression into arousal at the perverted@@ idea of dicks down $his throat. <<run SoftenSexualFlaw($slaves[$i])>> <<elseif ($slaves[$i].energy > 95)>> - $He grew up being taught that good girls do not happily fuck anything that moves, but $he's just now decided $he prefers being a bad girl and has @@.green;softened $his repression into arousal at the perversion@@ of revelling in sexual addiction. + $He grew up being taught that good girls do not happily fuck anything that moves, but $he's just now decided $he prefers being a bad girl and has @@.green;softened $his repression into arousal at the perversion@@ of reveling in sexual addiction. <<run SoftenSexualFlaw($slaves[$i])>> <</if>> <</if>> <<else>> <<if ($slaves[$i].sexualFlaw == "hates anal")>> <<if $slaves[$i].anusPiercing>> - The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hangups, so @@.green;$his previous hesitations about buttsex vanish.@@ + The constant stimulation $his guiche piercings give $him most intimate areas helps $him with $his anal hang-ups, so @@.green;$his previous hesitations about buttsex vanish.@@ <<set $slaves[$i].sexualFlaw = "none">> <<elseif ($slaves[$i].fetish == "buttslut")>> $His sexual fascination with things entering $his asshole overcomes $his professed hatred of anal, so @@.green;$his previous hesitations about buttsex vanish.@@ @@ -948,7 +948,7 @@ <</if>> <<elseif ($slaves[$i].sexualFlaw == "hates oral")>> <<if $slaves[$i].tonguePiercing>> - $He can't stop sucking on $his tongue piercings, so @@.green;$he gets over $his oral hangups.@@ + $He can't stop sucking on $his tongue piercings, so @@.green;$he gets over $his oral hang-ups.@@ <<set $slaves[$i].sexualFlaw = "none">> <<elseif ($slaves[$i].fetish == "cumslut")>> $He can't get $his beloved cum without sucking, so @@.green;$he forcibly overcomes $his strong gag reflex.@@ diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw index 2e367bbe87c..fb70c4cbcf7 100644 --- a/src/uncategorized/saRelationships.tw +++ b/src/uncategorized/saRelationships.tw @@ -5,27 +5,27 @@ <<setLocalPronouns _SlaveI>> <<if _SlaveI.relationship == 0 && _SlaveI.fetish != "mindbroken">> <<if (_SlaveI.devotion + _SlaveI.trust > 175) && (random(1,3) == 1)>> - _SlaveI.slaveName is quite devoted to you, and trusts both you and her place as a slave. Since she does not have a strong relationship with another slave, + _SlaveI.slaveName is quite devoted to you, and trusts both you and $his place as a slave. Since $he does not have a strong relationship with another slave, <<if (_SlaveI.sexualQuirk == "romantic")>> - and persistently interprets sex in the most romantic possible terms, she has decided that she wants to be yours in her heart as well as her <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;She's become emotionally bonded to you!@@ + and persistently interprets sex in the most romantic possible terms, $he has decided that $he wants to be yours in $his heart as well as $his <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif (_SlaveI.assignment == "be your Concubine")>> - and is your concubine, she almost inevitably comes to view you as much as a lover as an owner. @@.lightgreen;She's become emotionally bonded to you!@@ + and is your concubine, $he almost inevitably comes to view you as much as a lover as an owner. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif ($masterSuiteUpgradeLuxury == 2) && (_SlaveI.assignment == "serve in the master suite")>> - and does nothing but eat, sleep, and make love to your other fucktoys, she slowly loses sight of any distinction between emotional attachment and sexual congress. @@.lightgreen;She's become an emotional slut!@@ + and does nothing but eat, sleep, and make love to your other fucktoys, $he slowly loses sight of any distinction between emotional attachment and sexual congress. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<elseif (_SlaveI.assignment == "please you") || (_SlaveI.assignment == "serve in the master suite")>> - and spends her days worshipping your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, she begins to focus more and more of her happiness on how happy you are. @@.lightgreen;She's become emotionally bonded to you!@@ + and spends $his days worshipping your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>>, $he begins to focus more and more of $his happiness on how happy you are. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif (_SlaveI.assignment == "serve the public") || (_SlaveI.assignment == "serve in the club")>> - and her life is an endless stream of lovers, she unconsciously loses any sense of emotional attachment outside the intimacy of sex. @@.lightgreen;She's become an emotional slut!@@ + and $his life is an endless stream of lovers, $he unconsciously loses any sense of emotional attachment outside the intimacy of sex. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<elseif (_SlaveI.energy > 95) && ((_SlaveI.analCount + _SlaveI.vaginalCount + _SlaveI.oralCount + _SlaveI.mammaryCount + _SlaveI.penetrativeCount) > ($week - _SlaveI.weekAcquired) * random(20, 30))>> - is a total sex addict, and has a spectacularly promiscuous sexual history, she begins to think of sex as her only meaningful emotional connection with people. @@.lightgreen;She's become an emotional slut!@@ + is a total sex addict, and has a spectacularly promiscuous sexual history, $he begins to think of sex as $his only meaningful emotional connection with people. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<else>> - and loves you, she begins to think of you as a woman might think of her lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. She knows she cannot hope for more of a relationship with you than she has, but she finds emotional support in serving you nonetheless. @@.lightgreen;She's become emotionally bonded to you!@@ + and loves you, $he begins to think of you as a $woman might think of $his lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <</if>> <<elseif _SlaveI.career == "a Futanari Sister" && _SlaveI.relationshipRules == "permissive">> @@ -46,7 +46,7 @@ <<set _SlaveJ = $slaves[_j]>> <<setLocalPronouns _SlaveJ 2>> <<if _SlaveJ.fetish != "mindbroken" && _SlaveJ.prestigeDesc == "You bankrupted and enslaved her in revenge for her part in the attack on your arcology by the Daughters of Liberty.">> - _SlaveI.slaveName greets _SlaveJ.slaveName with joy, happy to see her former owner again. Without any regard to you, they continue their prior relationship. + _SlaveI.slaveName greets _SlaveJ.slaveName with joy, happy to see $his former owner again. Without any regard to you, they continue their prior relationship. <<if _SlaveJ.relationship > 0>> <<set _k = $slaveIndices[_SlaveJ.relationshipTarget]>> <<if def _k>> @@ -157,7 +157,7 @@ <<break>> <<else>> <<if _SlaveI.devotion < -20>> - _SlaveI.slaveName tries to strike up a friendship with the Wardeness, _SlaveJ.slaveName and is @@.gold;beaten@@ by _SlaveJ.slaveName for her trouble. + _SlaveI.slaveName tries to strike up a friendship with the Wardeness, _SlaveJ.slaveName and is @@.gold;beaten@@ by _SlaveJ.slaveName for $his trouble. <<set _SlaveI.trust -= 5>> <</if>> <</if>> @@ -180,7 +180,7 @@ <<break>> <<else>> <<if $resentment == 0>> - _SlaveI.slaveName tries to strike up a friendship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; she @@.mediumorchid;resents@@ being castigated for simple sociability. + _SlaveI.slaveName tries to strike up a friendship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; $he @@.mediumorchid;resents@@ being castigated for simple sociability. <<set _SlaveI.devotion -= 2, _SlaveI.trust -= 2, $resentment++>> <</if>> <</if>> @@ -192,7 +192,7 @@ <<set _SlaveJ.relationship = 1, _SlaveJ.relationshipTarget = _SlaveI.ID, _SlaveI.relationship = 1, _SlaveI.relationshipTarget = _SlaveJ.ID>> <<break>> <<else>> - _SlaveI.slaveName tries to renew her relationship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; she @@.mediumorchid;resents@@ being prevented from reuniting with her. + _SlaveI.slaveName tries to renew $his relationship with _SlaveJ.slaveName and is @@.gold;punished@@ for breaking the rules against such things; $he @@.mediumorchid;resents@@ being prevented from reuniting with _him2. <<set _SlaveI.devotion -= 2, _SlaveI.trust -= 2>> <</if>> <</if>> @@ -668,13 +668,13 @@ <<elseif _SlaveI.devotion > 95>> She occasionally remembers that she's carrying her father's child<<if _SlaveI.pregType > 1>>ren<</if>>, but does her best to accept it by not thinking about it. <<elseif _SlaveI.devotion > 50>> - She's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her father's, though she tries her best not to think about it. + $He's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his father's, though $he tries $his best not to think about it. <<set _SlaveI.devotion -= 1>> <<elseif _SlaveI.devotion > 20>> - She's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her father's that she often wakes up crying about it. + $He's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his father's that $he often wakes up crying about it. <<set _SlaveI.devotion -= 2>> <<else>> - She's @@.mediumorchid;passionately hateful@@ of you for making her carry an incestuous pregnancy. + $He's @@.mediumorchid;passionately hateful@@ of you for making $him carry an incestuous pregnancy. <<set _SlaveI.devotion -= 4>> <</if>> <</if>> @@ -700,47 +700,47 @@ <</if>> <</if>> <<elseif ($PC.mother == _SlaveI.ID || $PC.father == _SlaveI.ID) && _SlaveI.fetish != "mindbroken">> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> - is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is such a pervert that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - is so inured to the perversities of slavery that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is so inured to the perversities of slavery that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - is torn between sinful delight and deep disgust that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is torn between sinful delight and deep disgust that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<elseif _SlaveI.devotion > 75>> - is so devoted to you that she accepts carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is so devoted to you that $he accepts carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<elseif _SlaveI.devotion > 50>> - is somewhat @@.mediumorchid;disturbed@@ that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is somewhat @@.mediumorchid;disturbed@@ that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion -= 2>> <<elseif _SlaveI.devotion > 20>> - is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion -= 2>> <<set _SlaveI.trust -= 2>> <<else>> - is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own <<if $PC.title == 1>>son<<else>>daughter<</if>>. + is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own <<if $PC.title == 1>>son<<else>>daughter<</if>>. <<set _SlaveI.devotion -= 4>> <<set _SlaveI.trust -= 4>> <</if>> <<if _SlaveI.pregKnown == 1>> <<if _SlaveI.pregSource == -1>> <<if _SlaveI.sexualQuirk == "perverted">> - She's even @@.hotpink;aroused@@ by the constant awareness that her <<if $PC.title == 1>>son<<else>>daughter<</if>> is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> she's carrying. + $He's even @@.hotpink;aroused@@ by the constant awareness that $his <<if $PC.title == 1>>son<<else>>daughter<</if>> is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> $he's carrying. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - Her feelings about carrying her <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. + $His feelings about carrying $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - $He occasionally remembers that $he's carrying $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does her best to accept it by not thinking about it. + $He occasionally remembers that $he's carrying $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does $his best to accept it by not thinking about it. <<elseif _SlaveI.devotion > 50>> - She's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<if $PC.title == 1>>son<<else>>daughter<</if>>'s, though she tries her best not to think about it. + $He's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s, though $he tries $his best not to think about it. <<set _SlaveI.devotion -= 1>> <<elseif _SlaveI.devotion > 20>> - She's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<if $PC.title == 1>>son<<else>>daughter<</if>>'s that she often wakes up crying about it. + $He's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<if $PC.title == 1>>son<<else>>daughter<</if>>'s that $he often wakes up crying about it. <<set _SlaveI.devotion -= 2>> <<else>> - She's @@.mediumorchid;passionately hateful@@ of you for making her carry an incestuous pregnancy. + $He's @@.mediumorchid;passionately hateful@@ of you for making $him carry an incestuous pregnancy. <<set _SlaveI.devotion -= 4>> <</if>> <</if>> @@ -782,47 +782,47 @@ <<set _PCrelative = "half-sister">> <</if>> <</if>> - She + $He <<if _SlaveI.sexualQuirk == "perverted">> - is such a pervert that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own _PCrelative. + is such a pervert that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - is so inured to the perversities of slavery that she @@.hotpink;enjoys@@ carrying on an incestuous relationship with her own _PCrelative. + is so inured to the perversities of slavery that $he @@.hotpink;enjoys@@ carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - is torn between sinful delight and deep disgust that she's carrying on an incestuous relationship with her own _PCrelative. + is torn between sinful delight and deep disgust that $he's carrying on an incestuous relationship with $his own _PCrelative. <<elseif _SlaveI.devotion > 75>> - is so devoted to you that she accepts carrying on an incestuous relationship with her own _PCrelative. + is so devoted to you that $he accepts carrying on an incestuous relationship with $his own _PCrelative. <<elseif _SlaveI.devotion > 50>> - is somewhat @@.mediumorchid;disturbed@@ that she's carrying on an incestuous relationship with her own _PCrelative. + is somewhat @@.mediumorchid;disturbed@@ that $he's carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion -= 2>> <<elseif _SlaveI.devotion > 20>> - is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own _PCrelative. + is @@.mediumorchid;disturbed@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion -= 2>> <<set _SlaveI.trust -= 2>> <<else>> - is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that she's carrying on an incestuous relationship with her own _PCrelative. + is @@.mediumorchid;revolted@@ and @@.gold;scared@@ that $he's carrying on an incestuous relationship with $his own _PCrelative. <<set _SlaveI.devotion -= 4>> <<set _SlaveI.trust -= 4>> <</if>> <<if _SlaveI.pregKnown == 1>> <<if _SlaveI.pregSource == -1>> <<if _SlaveI.sexualQuirk == "perverted">> - She's even @@.hotpink;aroused@@ by the constant awareness that her _PCrelative is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> she's carrying. + $He's even @@.hotpink;aroused@@ by the constant awareness that $his _PCrelative is the parent of the daughter<<if _SlaveI.pregType > 1>>s<</if>> $he's carrying. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.behavioralQuirk == "sinful">> - Her feelings about carrying her <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. + $His feelings about carrying $his <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>> are @@.hotpink;secretly less mixed,@@ though. <<set _SlaveI.devotion += 1>> <<elseif _SlaveI.devotion > 95>> - She occasionally remembers that she's carrying her <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does her best to accept it by not thinking about it. + $He occasionally remembers that $he's carrying $his <<print _PCrelative>>'s child<<if _SlaveI.pregType > 1>>ren<</if>>, but does $his best to accept it by not thinking about it. <<elseif _SlaveI.devotion > 50>> - She's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<print _PCrelative>>'s, though she tries her best not to think about it. + $He's @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<print _PCrelative>>'s, though $he tries $his best not to think about it. <<set _SlaveI.devotion -= 1>> <<elseif _SlaveI.devotion > 20>> - She's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies she's carrying are<<else>>y she's carrying is<</if>> her <<print _PCrelative>>'s that she often wakes up crying about it. + $He's so @@.mediumorchid;disgusted@@ that the bab<<if _SlaveI.pregType > 1>>ies $he's carrying are<<else>>y $he's carrying is<</if>> $his <<print _PCrelative>>'s that $he often wakes up crying about it. <<set _SlaveI.devotion -= 2>> <<else>> - She's @@.mediumorchid;passionately hateful@@ of you for making her carry an incestuous pregnancy. + $He's @@.mediumorchid;passionately hateful@@ of you for making $him carry an incestuous pregnancy. <<set _SlaveI.devotion -= 4>> <</if>> <</if>> @@ -959,15 +959,15 @@ <<case 1>> /% friends %/ is friends with _SlaveJ.slaveName. <<if (_SlaveI.devotion + _SlaveI.trust > 170) && (random(1, 2) == 1)>> - She's very devoted to you, and strongly trusts both you and her place as a slave. Since she is just friends with _SlaveJ.slaveName, + $He's very devoted to you, and strongly trusts both you and $his place as a slave. Since $he is just friends with _SlaveJ.slaveName, <<if _SlaveI.sexualQuirk == "romantic">> - and persistently interprets sex in the most romantic possible terms, she has decided that she wants to be yours in her heart as well as her <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;She's become emotionally bonded to you!@@ + and persistently interprets sex in the most romantic possible terms, $he has decided that $he wants to be yours in $his heart as well as $his <<if _SlaveI.vagina > -1>>pussy<<else>>butthole<</if>>. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <<elseif _SlaveI.energy > 90>> - and is a total sex addict, she begins to think of sex as her only meaningful emotional connection with people. @@.lightgreen;She's become an emotional slut!@@ + and is a total sex addict, $he begins to think of sex as her only meaningful emotional connection with people. @@.lightgreen;$He's become an emotional slut!@@ <<set _SlaveI.relationship = -1>> <<else>> - and loves you, she begins to think of you as a woman might think of her lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. She knows she cannot hope for more of a relationship with you than she has, but she finds emotional support in serving you nonetheless. @@.lightgreen;She's become emotionally bonded to you!@@ + and loves you, $he begins to think of you as a $woman might think of $his lover - or <<if $PC.title != 0>>husband<<else>>wife<</if>>. $He knows $he cannot hope for more of a relationship with you than $he has, but $he finds emotional support in serving you nonetheless. @@.lightgreen;$He's become emotionally bonded to you!@@ <<set _SlaveI.relationship = -2>> <</if>> <<set _SlaveJ.relationship = 0, _SlaveJ.relationshipTarget = 0, _SlaveI.relationshipTarget = 0>> @@ -1026,7 +1026,7 @@ Driven by nymphomania to attempt to have sex with everyone, _SlaveI.slaveName successfully seduces _SlaveJ.slaveName and they become @@.lightgreen;friends with benefits.@@ <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif $familyTesting == 1 && (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.mother == _SlaveJ.ID || _SlaveI.father == _SlaveJ.ID || _SlaveJ.mother == _SlaveI.ID || _SlaveJ.father == _SlaveI.ID || areSisters(_SlaveI, _SlaveJ) > 0) && (random(1,100) > (80-_seed))>> - Revelling in the taboo nature of her attraction to _SlaveJ.slaveName, _SlaveI.slaveName successfully seduces her and they become @@.lightgreen;friends with benefits.@@ + Reveling in the taboo nature of $his attraction to _SlaveJ.slaveName, _SlaveI.slaveName successfully seduces _him2 and they become @@.lightgreen;friends with benefits.@@ <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.relation != 0) && (_SlaveI.relationTarget == _SlaveI.relationshipTarget) && (random(1, 100) > (80 - _seed))>> Reveling in the taboo nature of her attraction to _SlaveJ.slaveName, _SlaveI.slaveName successfully seduces her and they become @@.lightgreen;friends with benefits.@@ @@ -1074,17 +1074,17 @@ <<case 3>> /% FWB %/ keeps up a sexual friendship with _SlaveJ.slaveName. <<if _SlaveI.sexualQuirk == "romantic">> - Her romantic bent drives her to do her best to advance her relationship to an emotional level. + $His romantic bent drives $him to do $his best to advance $his relationship to an emotional level. <<set _seed = 10>> <</if>> <<if $familyTesting == 1 && _SlaveI.energy > 95 && (_SlaveI.mother == _SlaveJ.ID || _SlaveI.father == _SlaveJ.ID || _SlaveJ.mother == _SlaveI.ID || _SlaveJ.father == _SlaveI.ID || areSisters(_SlaveI, _SlaveJ) > 0) && (random(1,100) > (90-_seed))>> - She's such a desperate nympho that constant incest is nothing to her. She develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. + $He's such a desperate nympho that constant incest is nothing to $him. $He develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif (_SlaveI.energy > 95) && (_SlaveI.relation != 0) && (_SlaveI.relationTarget == _SlaveI.relationshipTarget) && (random(1, 100) > (90 - _seed))>> - She's such a desperate nympho that constant incest is nothing to her. She develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. + $He's such a desperate nympho that constant incest is nothing to $him. $He develops real feelings for _SlaveJ.slaveName as a romantic partner. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif $familyTesting == 1 && (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.mother == _SlaveJ.ID || _SlaveI.father == _SlaveJ.ID || _SlaveJ.mother == _SlaveI.ID || _SlaveJ.father == _SlaveI.ID || areSisters(_SlaveI, _SlaveJ) > 0) && (random(1,100) > (80-_seed))>> - Revelling in the taboo nature of her sexual relationship with _SlaveJ.slaveName, she not only enjoys _SlaveJ.slaveName's body, but looks after her pleasure, too. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. + Reveling in the taboo nature of $his sexual relationship with _SlaveJ.slaveName, $he not only enjoys _SlaveJ.slaveName's body, but looks after _his2 pleasure, too. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. <<set _SlaveI.relationship++, _SlaveJ.relationship = _SlaveI.relationship>> <<elseif (_SlaveI.sexualQuirk == "perverted") && (_SlaveI.relation != 0) && (_SlaveI.relationTarget == _SlaveI.relationshipTarget) && (random(1, 100) > (80 - _seed))>> Reveling in the taboo nature of her sexual relationship with _SlaveJ.slaveName, she not only enjoys _SlaveJ.slaveName's body, but looks after her pleasure, too. Their relationship becomes @@.lightgreen;romantically emotional@@ as well as physical and familial. @@ -1349,30 +1349,30 @@ <<if _SlaveI.releaseRules != "restrictive" && _SlaveI.releaseRules != "masturbation" && _SlaveI.releaseRules != "chastity">> <<if (_SlaveI.sexualQuirk == "size queen") && (canPenetrate(_SlaveJ))>> <<if _SlaveJ.dick > 5>> - She's @@.hotpink;very happy@@ with her romantic status, since it means she gets monster cock. + $He's @@.hotpink;very happy@@ with $his romantic status, since it means $he regularly gets monster cock. <<if ((_SlaveI.anus > 0) && (_SlaveI.anus < 3))>> - She's such a size queen that she takes it up her ass as often as she can bear it, despite her poor anus not being used to such abuse. This @@.lime;stretches out her sphincter.@@ + $He's such a size queen that $he takes it up $his ass as often as $he can bear it, despite $his poor anus not being used to such abuse. This @@.lime;stretches out $his sphincter.@@ <<set _SlaveI.anus++>> <</if>> - For her part, _SlaveJ.slaveName @@.hotpink;can barely believe her luck,@@ their sex life is so good. + For _his2 part, _SlaveJ.slaveName @@.hotpink;can barely believe _his2 luck,@@ their sex life is so good. <<set _SlaveI.devotion += 2, _SlaveJ.devotion += 2>> <<elseif _SlaveJ.dick > 4>> - She @@.hotpink;quite likes@@ being in a sexual relationship with a slave who has such an impressive dick. + $He @@.hotpink;quite likes@@ being in a sexual relationship with a slave who has such an impressive dick. <<if ((_SlaveI.anus > 0) && (_SlaveI.anus < 2))>> - She's such a size queen that she takes it up her ass as often as she can bear it, despite her tight butt not being used to such abuse. This @@.lime;stretches out her sphincter.@@ + $He's such a size queen that $he takes it up $his ass as often as $he can bear it, despite $his tight butt not being used to such abuse. This @@.lime;stretches out $his sphincter.@@ <<set _SlaveI.anus++>> <</if>> - For her part, _SlaveJ.slaveName @@.hotpink;enjoys@@ the benefits of having a lover so interested in her junk. + For _his2 part, _SlaveJ.slaveName @@.hotpink;enjoys@@ the benefits of having a lover so interested in _his2 junk. <<set _SlaveI.devotion++, _SlaveJ.devotion++>> <<elseif _SlaveJ.dick > 3>> - _SlaveI.slaveName @@.hotpink;certainly doesn't mind@@ having reliable access to such a nice big dick. For her part, _SlaveJ.slaveName @@.hotpink;likes@@ having a lover who finds her penis appealing. + _SlaveI.slaveName @@.hotpink;certainly doesn't mind@@ having reliable access to such a nice big dick. For _his2 part, _SlaveJ.slaveName @@.hotpink;likes@@ having a lover who finds _his2 penis appealing. <<set _SlaveI.devotion++, _SlaveJ.devotion++>> <</if>> <</if>> <<if (_SlaveI.energy <= 90)>> <<if (_SlaveJ.energy > 95)>> - _SlaveJ.slaveName is such a sex addict that she drags _SlaveI.slaveName along with her in their enthusiastic sex life, @@.green;slowly improving her sex drive.@@ + _SlaveJ.slaveName is such a sex addict that _he2 drags _SlaveI.slaveName along with _him2 in their enthusiastic sex life, @@.green;slowly improving $his sex drive.@@ <<set _SlaveI.energy += 3>> <<elseif (_SlaveJ.fetish == _SlaveI.fetish) && (_SlaveJ.fetishKnown == 1) && (_SlaveI.fetishKnown == 1)>> _SlaveJ.slaveName and _SlaveI.slaveName enjoy sharing their sexual fetishes so much it @@.green;improves their sex drives@@ in proportion to the strength of their kinks. @@ -1381,7 +1381,7 @@ _SlaveI.slaveName is very much attracted to _SlaveJ.slaveName, and their fulfilling sexual relationship @@.green;gradually improves _SlaveI.slaveName's sex drive.@@ <<set _SlaveI.energy++>> <<elseif (_SlaveI.attrXY > 65) && (_SlaveI.attrKnown == 1) && (_SlaveJ.dick > 0)>> - _SlaveI.slaveName enjoys _SlaveJ.slaveName and her cock, and their fulfilling sexual relationship @@.green;gradually improves _SlaveI.slaveName's sex drive.@@ + _SlaveI.slaveName enjoys _SlaveJ.slaveName and _his2 cock, and their fulfilling sexual relationship @@.green;gradually improves _SlaveI.slaveName's sex drive.@@ <<set _SlaveI.energy++>> <</if>> <</if>> @@ -1398,13 +1398,13 @@ <<if ((_SlaveJ.fetish != "none") && (_SlaveJ.fetish != "mindbroken")) && (_SlaveI.fetishStrength <= 95) && (_SlaveJ.fetish != _SlaveI.fetish) && (fetishChangeChance(_SlaveI) > (random(0, 100) - (_SlaveI.relationship * 5)))>> <<switch _SlaveJ.fetish>> <<case "boobs">> - After experiencing _SlaveJ.slaveName's love of breasts, her own and _SlaveI.slaveName's, _SlaveI.slaveName happily joins her as a @@.lightcoral;boob fanatic.@@ + After experiencing _SlaveJ.slaveName's love of breasts, both _his2 own and _SlaveI.slaveName's, _SlaveI.slaveName happily joins _him2 as a @@.lightcoral;boob fanatic.@@ <<set _SlaveI.fetish = "boobs", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "buttslut">> - _SlaveJ.slaveName begs _SlaveI.slaveName to fuck her ass so many times that _SlaveI.slaveName reconsiders her stance on buttsex. She becomes just as much of an @@.lightcoral;anal slut@@ as _SlaveJ.slaveName. + _SlaveJ.slaveName begs _SlaveI.slaveName to fuck _his2 ass so many times that _SlaveI.slaveName reconsiders $his stance on buttsex. $He becomes just as much of an @@.lightcoral;anal slut@@ as _SlaveJ.slaveName. <<set _SlaveI.fetish = "buttslut", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "cumslut">> - After sharing blowjobs with _SlaveJ.slaveName enough times, _SlaveI.slaveName develops an @@.lightcoral;oral fixation@@ of her own. + After sharing blowjobs with _SlaveJ.slaveName enough times, _SlaveI.slaveName develops an @@.lightcoral;oral fixation@@ of $his own. <<set _SlaveI.fetish = "cumslut", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "submissive">> <<if (_SlaveI.fetish != "dom")>> @@ -1418,19 +1418,19 @@ <</if>> <<case "masochist">> <<if (_SlaveI.fetish != "sadist")>> - _SlaveJ.slaveName begs _SlaveI.slaveName to hurt her so many times that _SlaveI.slaveName gets used to sadism, and finds she likes it. She becomes just as much of an @@.lightcoral;sexual sadist@@ as a slave can be. + _SlaveJ.slaveName begs _SlaveI.slaveName to hurt _him2 so many times that _SlaveI.slaveName gets used to sadism, and finds $he likes it. $He becomes just as much of an @@.lightcoral;sexual sadist@@ as a slave can be. <<set _SlaveI.fetish = "sadist", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <</if>> <<case "sadist">> <<if (_SlaveI.fetish != "masochist")>> - _SlaveJ.slaveName hits _SlaveI.slaveName during sex so often that _SlaveI.slaveName starts to get off on being beaten. She becomes a true @@.lightcoral;masochist,@@ and loves _SlaveJ.slaveName all the more for abusing her. + _SlaveJ.slaveName hits _SlaveI.slaveName during sex so often that _SlaveI.slaveName starts to get off on being beaten. $He becomes a true @@.lightcoral;masochist,@@ and loves _SlaveJ.slaveName all the more for abusing $him. <<set _SlaveI.fetish = "masochist", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <</if>> <<case "humiliation">> - _SlaveJ.slaveName begs _SlaveI.slaveName to humiliate her sexually so many times that _SlaveI.slaveName can't help but be embarrassed by all the public sex, herself. She gets off on the @@.lightcoral;humiliation@@ with _SlaveJ.slaveName. + _SlaveJ.slaveName begs _SlaveI.slaveName to humiliate _him2 sexually so many times that _SlaveI.slaveName can't help but be embarrassed by all the public sex, $himself. $He gets off on the @@.lightcoral;humiliation@@ with _SlaveJ.slaveName. <<set _SlaveI.fetish = "humiliation", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <<case "pregnancy">> - _SlaveJ.slaveName shares her hopes and dreams of pregnancy and children with _SlaveI.slaveName all the time, and _SlaveI.slaveName can't help but feel her @@.lightcoral;biological clock@@ tick in time with _SlaveJ.slaveName's. + _SlaveJ.slaveName shares _his2 hopes and dreams of pregnancy and children with _SlaveI.slaveName all the time, and _SlaveI.slaveName can't help but feel $his @@.lightcoral;biological clock@@ tick in time with _SlaveJ.slaveName's. <<set _SlaveI.fetish = "pregnancy", _SlaveI.fetishKnown = 1, _SlaveI.fetishStrength = 65>> <</switch>> <</if>> @@ -1440,13 +1440,13 @@ <<if (_SlaveJ.oralSkill > _SlaveI.oralSkill) || ((_SlaveJ.analSkill > _SlaveI.analSkill) && (_SlaveI.anus > 0)) || ((_SlaveJ.vaginalSkill > _SlaveI.vaginalSkill) && (_SlaveI.vagina > 0) && (_SlaveJ.vagina > 0)) || (_SlaveJ.trust > _SlaveI.trust)>> _SlaveI.slaveName's <<if _SlaveI.relationship >= 5>>wife<<else>>lover<</if>> is older, more experienced, and <<if (_SlaveJ.oralSkill > _SlaveI.oralSkill)>> - better at blowjobs than she is. They are such good slaves that the senior girl serves as a mentor to the junior, improving her oral skills. + better at blowjobs than $he is. They are such good slaves that the senior girl serves as a mentor to the junior, improving $his oral skills. <<set $skillIncrease = 5>><<OralSkillIncrease _SlaveI>> <<elseif (_SlaveJ.analSkill > _SlaveI.analSkill) && (_SlaveI.anus > 0)>> - better at taking a buttfuck than she is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving her anal skills. + better at taking a buttfuck than $he is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving $his anal skills. <<set $skillIncrease = 5>><<AnalSkillIncrease _SlaveI>> <<elseif (_SlaveJ.vaginalSkill > _SlaveI.vaginalSkill) && (_SlaveI.vagina > 0) && (_SlaveJ.vagina > 0)>> - a better lover than she is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving her vaginal skills. + a better lover than $he is, and they are such good slaves that the senior girl serves as a mentor to the junior, improving $his vaginal skills. <<set $skillIncrease = 5>><<VaginalSkillIncrease _SlaveI>> <<elseif (_SlaveJ.trust > _SlaveI.trust)>> a better slave than she is, and they are such obedient slaves that the senior girl serves as a mentor to the junior, @@.mediumaquamarine;improving her trust.@@ @@ -1475,21 +1475,21 @@ <<if _SlaveI.mother == $slaves[_j].ID || _SlaveI.father == $slaves[_j].ID || areSisters(_SlaveI, $slaves[_j]) > 0>> <<if _SlaveI.rivalry != $slaves[_j].ID>> <<if _SlaveI.mother == $slaves[_j].ID>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her mother $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his mother $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<elseif _SlaveI.father == $slaves[_j].ID>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her father $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his father $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<else>> <<switch areSisters(_SlaveI, $slaves[_j])>> <<case 1>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her twin sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his twin sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<case 2>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <<case 3>> - _SlaveI.slaveName is @@.gold;painfully conscious@@ that her half-sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. + _SlaveI.slaveName is @@.gold;painfully conscious@@ that $his half-sister $slaves[_j].slaveName is also your slave and might suffer if either of them displeases you, and @@.hotpink;tries to obey@@ as best she can. <<set _SlaveI.trust -= 1, _SlaveI.devotion += 3>> <</switch>> <</if>> @@ -1500,34 +1500,34 @@ <<if _SlaveI.mother == $slaves[_j].ID>> _SlaveI.slaveName knows that her mother $slaves[_j].slaveName <<if $slaves[_j].devotion > 50>> - loves being your sex slave, and is @@.hotpink;happy@@ for her. + loves being your sex slave, and is @@.hotpink;happy@@ for _him2. <<set _SlaveI.devotion += 4>> <<elseif ($slaves[_j].devotion > 20) || ($slaves[_j].trust < -20)>> - is an obedient sex slave, and hopes she'll avoid punishment. + is an obedient sex slave, and hopes _he2'll avoid punishment. <<else>> - hates being a sex slave, and is @@.gold;afraid@@ for her. + hates being a sex slave, and is @@.gold;afraid@@ for _him2. <<set _SlaveI.trust -= 1>> <</if>> <<elseif _SlaveI.father == $slaves[_j].ID>> - _SlaveI.slaveName knows that her father $slaves[_j].slaveName + _SlaveI.slaveName knows that $his father $slaves[_j].slaveName <<if $slaves[_j].devotion > 50>> - loves being your sex slave, and is @@.hotpink;happy@@ for her. + loves being your sex slave, and is @@.hotpink;happy@@ for _him2. <<set _SlaveI.devotion += 4>> <<elseif ($slaves[_j].devotion > 20) || ($slaves[_j].trust < -20)>> - is an obedient sex slave, and hopes she'll avoid punishment. + is an obedient sex slave, and hopes _he2'll avoid punishment. <<else>> - hates being a sex slave, and is @@.gold;afraid@@ for her. + hates being a sex slave, and is @@.gold;afraid@@ for _him2. <<set _SlaveI.trust -= 1>> <</if>> <<elseif $slaves[_j].mother == _SlaveI.ID || $slaves[_j].father == _SlaveI.ID>> - _SlaveI.slaveName knows that her daughter $slaves[_j].slaveName + _SlaveI.slaveName knows that $his daughter $slaves[_j].slaveName <<if $slaves[_j].devotion > 50>> - loves being your sex slave, and is @@.hotpink;happy@@ for her. + loves being your sex slave, and is @@.hotpink;happy@@ for _him2. <<set _SlaveI.devotion += 4>> <<elseif ($slaves[_j].devotion > 20) || ($slaves[_j].trust < -20)>> - is an obedient sex slave, and hopes she'll avoid punishment. + is an obedient sex slave, and hopes _he2'll avoid punishment. <<else>> - hates being a sex slave, and is @@.gold;afraid@@ for her. + hates being a sex slave, and is @@.gold;afraid@@ for _him2. <<set _SlaveI.trust -= 1>> <</if>> <<else>> diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw index bddd4fbcbc6..d70fe817a28 100644 --- a/src/uncategorized/seLethalPit.tw +++ b/src/uncategorized/seLethalPit.tw @@ -481,7 +481,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 500>> <</if>> <<elseif (_winner.height-_loser.height <= -10)>> - _winner.slaveName realizes that _loser.slaveName's wingspan gives her a huge reach advantage. She bores straight in, taking @@.red;a glancing scalp wound@@ but coming on regardless. _loser.slaveName understands her opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When her back hits a padded wall, _winner.slaveName aims a gutting cut that _loser.slaveName struggles to block. She manages it, but the wall catches her point, so the block is with her wrist, not her sword. The sharp blade cuts almost all the way through the joint, leaving her in agony and totally incapable of defense. _winner.slaveName pushes her head back against the wall and cuts her throat down to the spine. + _winner.slaveName realizes that _loser.slaveName's wingspan gives _him2 a huge reach advantage. $He bores straight in, taking @@.red;a glancing scalp wound@@ but coming on regardless. _loser.slaveName understands _his2 opponent's intention and backs off, but the pit is small and there isn't much room to retreat. When _his2 back hits a padded wall, _winner.slaveName aims a gutting cut that _loser.slaveName struggles to block. _He2 manages it, but the wall catches _his2 point, so the block is with _his2 wrist, not _his2 sword. The sharp blade cuts almost all the way through the joint, leaving _him2 in agony and totally incapable of defense. _winner.slaveName pushes _his2 head back against the wall and cuts _his2 throat down to the spine. <<set _loser.health -= 20>> <<if $pitAudience == "paid">> The audience is reasonably impressed by the blood, and your @@.yellowgreen;cut of the betting@@ is reasonable. @@ -491,7 +491,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 200>> <</if>> <<elseif (_winner.muscles > 30)>> - _winner.slaveName is so massively muscular that she's actually impeded by $his lack of speed and flexibility. _loser.slaveName is properly afraid of _his2 strength, though, so she tries to stay away as much as she can. The few times their blades clash reinforces this approach, since _winner.slaveName is able to beat $his opponent's blocks out of the way with contemptuous ease. The fight takes a long, long time, but it takes more out of _loser.slaveName to survive than it takes out of _winner.slaveName to keep swinging. Eventually the gasping, weeping _loser.slaveName trips and does not struggle to _his2 feet in time. It takes _his2 tired opponent several overhead butcher's cleaves to end it. + _winner.slaveName is so massively muscular that $he's actually impeded by $his lack of speed and flexibility. _loser.slaveName is properly afraid of _his2 strength, though, so _he2 tries to stay away as much as _he2 can. The few times their blades clash reinforces this approach, since _winner.slaveName is able to beat $his opponent's blocks out of the way with contemptuous ease. The fight takes a long, long time, but it takes more out of _loser.slaveName to survive than it takes out of _winner.slaveName to keep swinging. Eventually the gasping, weeping _loser.slaveName trips and does not struggle to _his2 feet in time. It takes _his2 tired opponent several overhead butcher's cleaves to end it. <<if $pitAudience == "paid">> The audience is reasonably impressed by the show of strength, and your @@.yellowgreen;cut of the betting@@ is reasonable. <<set $cash += 1000>> @@ -500,7 +500,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 50>> <</if>> <<elseif (_loser.belly >= 300000)>> - _winner.slaveName wants to live badly enough that she takes and extremely brutal shortcut to victory. The instant the fight starts, she quickly slices right across _loser.slaveName's massive belly, which is far too large to possibly defend. _loser.slaveName's belly ruptures like a popped water balloon, showering _winner.slaveName with + _winner.slaveName wants to live badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he quickly slices right across _loser.slaveName's massive belly, which is far too large to possibly defend. _loser.slaveName's belly ruptures like a popped water balloon, showering _winner.slaveName with <<if _loser.pregType > 0>> blood. _loser.slaveName collapses into the pile of organs and babies released from _his2 body. <<elseif _loser.bellyImplant > 0>> @@ -517,7 +517,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 100>> <</if>> <<elseif (_loser.boobs > 1200)>> - _winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, she slices _loser.slaveName right across _his2 huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops _his2 sword to clasp _his2 hands over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. _winner.slaveName's follow-up is neither artful nor particularly well planned, but it is effective. $He hits the distracted girl's neck from the side, almost but not quite separating _his2 head from _his2 body. + _winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, she slices _loser.slaveName right across _his2 huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops _his2 sword to clasp _his2 hands over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. _winner.slaveName's follow-up is neither artful nor particularly well planned, but it is effective. $He hits the distracted _girl2's neck from the side, almost but not quite separating _his2 head from _his2 body. <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> @@ -526,7 +526,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 100>> <</if>> <<elseif (_loser.dick > 0)>> - _winner.slaveName wants to live badly enough that she takes an extremely brutal shortcut to victory. The instant the fight starts, she furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises _his2 sword to block, at which point _winner.slaveName simply kicks her in the dick. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName walks over to the prostrate slave and cuts _his2 throat without much trouble. + _winner.slaveName wants to live badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises _his2 sword to block, at which point _winner.slaveName simply kicks her in the dick. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName walks over to the prostrate slave and cuts _his2 throat without much trouble. <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> @@ -535,7 +535,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and <<set $rep += 100>> <</if>> <<else>> - _winner.slaveName wants to live badly enough that she takes an extremely brutal shortcut to victory. The instant the fight starts, she furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises _his2 sword to block, at which point _winner.slaveName simply kicks _him2 in the cunt. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName walks over to the prostrate slave and cuts _his2 throat without much trouble. + _winner.slaveName wants to live badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he furiously swings for _loser.slaveName's face. _loser.slaveName reflexively raises _his2 sword to block, at which point _winner.slaveName simply kicks _him2 in the cunt. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName walks over to the prostrate slave and cuts _his2 throat without much trouble. <<if $pitAudience == "paid">> The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive. <<set $cash += 2000>> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 627d89aeb84..61fd01059aa 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -5544,7 +5544,8 @@ $He has <<else>> <<if canTalk($activeSlave)>> <<if $activeSlave.lips > 70>> - $He can barely enunciate past $his dick-sucking lips; '<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>' comes out as '<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>.' + <<run Enunciate($activeSlave)>> + $He can barely enunciate past $his dick-sucking lips; '<<= properTitle()>>' comes out as '<<Master>>.' <</if>> <</if>> <<if $activeSlave.teeth != "normal">> diff --git a/src/utility/descriptionWidgetsPiercings.tw b/src/utility/descriptionWidgetsPiercings.tw index 4fc4809cf59..63acf793006 100644 --- a/src/utility/descriptionWidgetsPiercings.tw +++ b/src/utility/descriptionWidgetsPiercings.tw @@ -131,7 +131,8 @@ <<if canTalk($activeSlave)>> <<if $activeSlave.lips <= 70>> <<if $activeSlave.lipsPiercing == 2>> - $He can barely enunciate past $his piercings; '<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>' comes out as '<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>.' + <<run Enunciate($activeSlave)>> + $He can barely enunciate past $his piercings; '<<= properTitle()>>' comes out as '<<Master>>.' <</if>> <</if>> <</if>> -- GitLab