From e222d3c7058226fbab8f5df69b6901e5acecf2eb Mon Sep 17 00:00:00 2001 From: klorpa <30924131+klorpa@users.noreply.github.com> Date: Thu, 30 May 2019 23:53:41 -0500 Subject: [PATCH] Hands --- src/endWeek/saServeThePublic.js | 9 ++- src/facilities/nursery/nurseryReport.tw | 2 +- src/js/eventSelectionJS.js | 4 +- src/js/walkPastJS.js | 2 +- src/npc/agent/agentCompany.tw | 2 +- src/npc/descriptions/fBoobs.tw | 2 +- src/npc/descriptions/fVagina.tw | 16 ++--- src/uncategorized/RESS.tw | 64 +++++++++---------- .../REresistantmotherdaughter.tw | 2 +- src/uncategorized/reMilfTourist.tw | 2 +- src/uncategorized/reShowerPunishment.tw | 2 +- src/uncategorized/reStandardPunishment.tw | 8 +-- 12 files changed, 61 insertions(+), 54 deletions(-) diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js index dbfc5aef7a0..5ada9d9ace9 100644 --- a/src/endWeek/saServeThePublic.js +++ b/src/endWeek/saServeThePublic.js @@ -245,7 +245,14 @@ window.saServeThePublic = (function saServeThePublic() { } r += `. Most of them `; if (slave.sexQuality > 15) { - r += `were putty in ${his} hands.`; + r += `were putty in ${his} hand`; + if (slave.missingArms !== 1 && slave.missingArms !== 2) { + r += `s`; + if (slave.missingArms === 3) { + r += `, so to speak`; + } + } + r += `.`; } else if (slave.sexQuality > 10) { r += `greatly enjoyed ${his} services.`; } else if (slave.sexQuality > 5) { diff --git a/src/facilities/nursery/nurseryReport.tw b/src/facilities/nursery/nurseryReport.tw index 625ee08ab13..1a919ee597f 100644 --- a/src/facilities/nursery/nurseryReport.tw +++ b/src/facilities/nursery/nurseryReport.tw @@ -65,7 +65,7 @@ <<set _idleBonus++>> */ <<elseif ($Matron.fetishKnown == 1)>> - $Matron.slaveName can't keep $his hands to $himself, preventing the slaves in the nursery from relaxing completely. + $Matron.slaveName can't keep $his hand<<if ($Matron.missingArms == 0)>>s<</if>> to $himself, preventing the slaves in the nursery from relaxing completely. <</if>> <<if ($Matron.visualAge > 35)>> $His apparent maturity encourages the slaves in the nursery to relax and pour out their troubles to $him. diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js index 0c1c73adcda..32725b928c6 100644 --- a/src/js/eventSelectionJS.js +++ b/src/js/eventSelectionJS.js @@ -2,7 +2,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) { /* STANDARD EVENTS */ if (eventSlave.fetish !== "mindbroken") { - if (canWalk(eventSlave)) { + if (slave.missingArms !== 3 && slave.missingLegs !== 3) { if (canTalk(eventSlave)) { if (State.variables.RECockmilkInterceptionIDs.length > 1 || (State.variables.RECockmilkInterceptionIDs.length === 1 && eventSlave.ID !== State.variables.RECockmilkInterceptionIDs[0])) { if (eventSlave.devotion > 20) { @@ -1867,7 +1867,7 @@ window.generateRandomEventPoolServant = function(eventSlave) { /* STANDARD EVENTS */ if (eventSlave.fetish !== "mindbroken") { - if (canWalk(eventSlave)) { + if (slave.missingArms !== 3 && slave.missingLegs !== 3) { if (canTalk(eventSlave)) { if (State.variables.RECockmilkInterceptionIDs.length > 1 || (State.variables.RECockmilkInterceptionIDs.length === 1 && eventSlave.ID !== State.variables.RECockmilkInterceptionIDs[0])) { if (eventSlave.devotion > 20) { diff --git a/src/js/walkPastJS.js b/src/js/walkPastJS.js index 64cba6aa15b..81ebb0daf8f 100644 --- a/src/js/walkPastJS.js +++ b/src/js/walkPastJS.js @@ -1081,7 +1081,7 @@ window.loverSlave = function(activeSlave) { t += `sleeping in bed together, with the shorter ${name} curled under ${his} ${activeSlaveRel}.`; } else if (activeSlave.amp === 1) { t += `sleeping in bed together; ${partnerName} is using ${his2} limbless ${activeSlaveRel} as a pillow.`; - } else if (_partnerSlave.missingArms !== 3) { + } else if (activeSlave.missingArms !== 3 && _partnerSlave.missingArms !== 3) { t += `resting in bed together, holding hands in their sleep.`; } else { t += `sleeping quietly in bed together.`; diff --git a/src/npc/agent/agentCompany.tw b/src/npc/agent/agentCompany.tw index 363c1501b78..adc6385f7c9 100644 --- a/src/npc/agent/agentCompany.tw +++ b/src/npc/agent/agentCompany.tw @@ -31,7 +31,7 @@ Working in $activeArcology.name's penthouse office, $subSlave.slaveName gets a v _His2 question is answered when you bring $activeSlave.slaveName in close, putting $him in $subSlave.slaveName's view. $subSlave.slaveName's <<= App.Desc.eyeColor($subSlave)>> eyes fly open with pleased surprise, but before _he2 can speak, $activeSlave.slaveName goes first. <<if !canTalk($activeSlave)>> - Unable to speak $himself, $he simply makes a heart shape with $his hands in view of the video call, and blows $his <<if $activeSlave.relationship == 4>>lover<<else>>wife<</if>> a kiss. + Unable to speak $himself, $he simply makes a heart shape with $his hand<<if $activeSlave.missingArms == 0>>s<</if>> in view of the video call, and blows $his <<if $activeSlave.relationship == 4>>lover<<else>>wife<</if>> a kiss. <<else>> <<run Enunciate($activeSlave)>> "Hi <<if $activeSlave.relationship == 4>>lover<<else>><<s>>weetheart<</if>>," $he <<say>>s in a syrupy tone. "Mi<<ss>> me?" diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw index 86856b6f224..d2b5a7e101e 100644 --- a/src/npc/descriptions/fBoobs.tw +++ b/src/npc/descriptions/fBoobs.tw @@ -128,7 +128,7 @@ tits. You set $his nearly helpless body on the floor and then scoot your hips under the massive weight of $his tits. The heft feels nice against you, and you worm a naughty hand under there to play with yourself in the warm cave formed by your pelvis and $his udders. <</if>> <<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1) && ($PC.dick == 1)>> - $He comes over hurriedly, already presenting $his breasts. $He gives you a titjob with $his lubricated cleavage while you sit at your desk, playing with $his own nipples and moaning with pleasure.<<if $PC.vagina == 1>> $He does $his best to push $his sternum hard against you, giving your pussy some stimulation, too.<</if>> As you get close to orgasm, you push $his hands away and take over, + $He comes over hurriedly, already presenting $his breasts. $He gives you a titjob with $his lubricated cleavage while you sit at your desk, playing with $his own nipples and moaning with pleasure.<<if $PC.vagina == 1>> $He does $his best to push $his sternum hard against you, giving your pussy some stimulation, too.<</if>> As you get close to orgasm, you push $his hand<<if $activeSlave.missingArms == 0>>s<</if>> away and take over, <<if $activeSlave.nipples == "fuckable">> running your fingers around the lip of $his $activeSlave.nipples nipples. When you finish, you drive them in, hard, <<else>> diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw index 67cf42a32e0..3cae37b782b 100644 --- a/src/npc/descriptions/fVagina.tw +++ b/src/npc/descriptions/fVagina.tw @@ -270,7 +270,7 @@ You call $him over so you can <<elseif $activeSlave.belly >= 300000>> $He does $his best to not suffocate you with $his massive belly or knock you out with it as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into $him. You get a face full of implant with each downward motion; <<else>> - $He puts $his hands on your chest and leans forward as you continue to thrust <<if _fSpeed > 75>>hard<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>tenderly<</if>> upwards; + $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>leans forward as you continue to thrust <<if _fSpeed > 75>>hard<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>tenderly<</if>> upwards; <</if>> <<elseif (_fPosition <= 60)>> /* doggy-style */ <<if $activeSlave.bellyPreg >= 300000>> @@ -282,11 +282,11 @@ You call $him over so you can <</if>> <<elseif (_fPosition <= 80)>> /* reverse cowgirl */ <<if $activeSlave.bellyPreg >= 300000>> - You may have to spread your legs extra wide to accommodate $his impressive baby bump, but the angle and pressure it puts on you feels amazing. $He puts $his hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; + You may have to spread your legs extra wide to accommodate $his impressive baby bump, but the angle and pressure it puts on you feels amazing. $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; <<elseif $activeSlave.belly >= 300000>> - You may have to spread your legs extra wide to accommodate $his impressive belly, but the angle and pressure it puts on you feels amazing. $He puts $his hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; + You may have to spread your legs extra wide to accommodate $his impressive belly, but the angle and pressure it puts on you feels amazing. $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; <<else>> - $He puts $his hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards; + $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards; <</if>> <<else>> /* wheelbarrow */ <<if $activeSlave.belly >= 600000>> @@ -420,7 +420,7 @@ You call $him over so you can <<elseif $activeSlave.belly >= 300000>> $He does $his best to not suffocate you with $his massive belly or knock you out with it as you thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> into $him. You get a face full of implant with each downward motion; <<else>> - $He puts $his hands on your chest and leans forward as you continue to thrust <<if _fSpeed > 75>>hard<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>tenderly<</if>> upwards; + $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>leans forward as you continue to thrust <<if _fSpeed > 75>>hard<<elseif _fSpeed > 50>>vigorously<<elseif _fSpeed > 25>>steadily<<else>>tenderly<</if>> upwards; <</if>> <<elseif (_fPosition <= 60)>> /* doggy-style */ <<if $activeSlave.bellyPreg >= 300000>> @@ -432,11 +432,11 @@ You call $him over so you can <</if>> <<elseif (_fPosition <= 80)>> /* reverse cowgirl */ <<if $activeSlave.bellyPreg >= 300000>> - You may have to spread your legs extra wide to accommodate $his impressive baby bump, but the angle and pressure it puts on you feels amazing. $He puts $his hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; + You may have to spread your legs extra wide to accommodate $his impressive baby bump, but the angle and pressure it puts on you feels amazing. $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; <<elseif $activeSlave.belly >= 300000>> - You may have to spread your legs extra wide to accommodate $his impressive belly, but the angle and pressure it puts on you feels amazing. $He puts $his hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; + You may have to spread your legs extra wide to accommodate $his impressive belly, but the angle and pressure it puts on you feels amazing. $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards, in return you caress $his distended sides; <<else>> - $He puts $his hands on your chest and starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards; + $He <<if $activeSlave.missingArms != 3>>puts $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on your chest and <</if>>starts to lean back as you continue to thrust <<if _fSpeed > 75>>hard and fast<<elseif _fSpeed > 50>>firmly and vigorously<<elseif _fSpeed > 25>>steadily<<else>>slowly and tenderly<</if>> upwards; <</if>> <<else>> /* wheelbarrow */ <<if $activeSlave.belly >= 600000>> diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 6ddd6be6d10..254d800fde7 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -202,14 +202,14 @@ $He was mindbroken, but seems to have snapped out of it due to a deep love of yo Finishing your work, you lean back for a well-deserved break. Your peace is quickly disturbed by several loud smashes from down the penthouse hall. As you get up from your desk, you hear somebody running down the hallway, and before you know it, <<EventNameLink>> is inside. $He is looking quite treacherous and <<if $activeSlave.skill.combat > 0>>relatively confident<<else>>somewhat unsure<</if>>. $He quickly reaches in to grab you, <<if ($PC.career == "gang")>> <<if ($personalArms != 0)>> - but when you point your handgun towards $him, $he stutters back with $his hands pointing upwards. + but when you point your handgun towards $him, $he stutters back with $his hand<<if $activeSlave.missingArms == 0>>s<</if>> pointing upwards. <<else>> but you just have to reach for your trusty handgun to make the slave step back in fear. <</if>> <<set $mutinery = 0>> <<elseif ($PC.career == "mercenary")>> <<if ($personalArms != 0)>> - but you quickly draw the weapon you always keep close at hand, forcing the slave to put $his hands on the back of $his head. + but you quickly draw the weapon you always keep close at hand, forcing the slave to put $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on the back of $his head. <<else>> but you quickly grab $his arm, pull it towards you and lock it in $his back, pushing $him over the desk. <</if>> @@ -235,7 +235,7 @@ Finishing your work, you lean back for a well-deserved break. Your peace is quic <<if $PC.boobs > 0>> as $he gropes your chest <<else>> - as $he runs $his hands over your body + as $he runs $his hand<<if $activeSlave.missingArms == 0>>s<</if>> over your body <</if>> in a desperate attempt at taking control. <<if $HeadGirl != 0>> @@ -516,7 +516,7 @@ As $he staggers to a halt in front of your desk, <<else>> $his motion <</if>> -provides just enough stimulation that $he climaxes. $His hands ball into fists at $his sides and $his torso pitches forward involuntarily, +provides just enough stimulation that $he climaxes. $His <<if $activeSlave.missingArms == 0>>hands ball into fists at $his sides<<else>>hand balls into a fist at $his side<</if>> and $his torso pitches forward involuntarily, <<if (($activeSlave.balls > 3) && ($activeSlave.hormoneBalance < -20)) || ($activeSlave.balls >= 10)>> a ridiculous, pent-up torrent of cum shooting out <<if $activeSlave.dick > 0>> @@ -730,7 +730,7 @@ $He notices your approach with a start and <</if>> You shake your head no, for the moment, and just enjoy the view. After a few minutes of silent mutual enjoyment of the pretty sunrise, $he steals a sidelong glance at you, a hesitant, questioning look on $his face. You tell $him to ask $his question, whatever it is, and $he <<if !canTalk($activeSlave)>> - carefully uses $his hands to ask if $he can hold your hand. + carefully uses $his hand<<if $activeSlave.missingArms == 0>>s<</if>> to ask if $he can hold your hand. <<else>> <<say>>s, "<<Master>>, may I plea<<s>>e hold your hand?" <</if>> @@ -1812,7 +1812,7 @@ $He constantly passes by your desk as you work, going back and forth between the <<else>> walks <</if>> -gingerly, supporting $his udders with both hands<<if $activeSlave.belly >= 10000>> and $his _belly <<if $activeSlave.belly >= 3000>>pregnant<<else>>rounded<</if>> belly<</if>>, <<if $activeSlave.nipples == "inverted">>wincing<<else>>dribbling a little milk<</if>> as $he goes. The other way, $he has a distinctly relieved expression and $his breasts are much saggier. +gingerly, supporting $his udders with both hand<<if $activeSlave.missingArms == 0>>s<</if>><<if $activeSlave.belly >= 10000>> and $his _belly <<if $activeSlave.belly >= 3000>>pregnant<<else>>rounded<</if>> belly<</if>>, <<if $activeSlave.nipples == "inverted">>wincing<<else>>dribbling a little milk<</if>> as $he goes. The other way, $he has a distinctly relieved expression and $his breasts are much saggier. <<case "whore rebellious">> @@ -2333,7 +2333,7 @@ You complete the final rep of your first workout of the day, rack the bar, and j $His <<= App.Desc.eyeColor($activeSlave)>> eyes track up your torso comically until $he's looking into your eyes. $He stares dumbly at you for a moment before realizing what $he's doing and blushing with embarrassment. $He's reasonably well broken, but is still coming to terms with $his sexual place as a $desc. In particular, $he hasn't gotten used to the effects of $his training, the slave food, and the atmosphere in the penthouse, all of which are serving to fuel an acceleration of $his sex drive. <<if !canTalk($activeSlave)>> - $He uses shaky hands to ask you to fuck $him, + $He uses shaky <<if $activeSlave.missingArms == 0>>hands<<else>>gestures<</if>> to ask you to fuck $him, <<else>> "<<S>>orry, <<Master>>, I was ju<<s>>t, um, pa<<ss>>ing by and I thought, um, I <<s>>aw, um, <<s>>orry <<Master>>, I'm going now," $he babbles, <</if>> @@ -2616,7 +2616,7 @@ You decide to stop by to see $his method at work. By the time you arrive, $he's <<if canPenetrate($activeSlave) && $activeSlave.prostate > 0>> pushes a couple of fingers up $his own ass to use prostate stimulation to force $himself hard again, and once this is accomplished, happily turns to select a slow eater to fuck. <<else>> - languidly plays with $himself, running $his hands over the various vulnerable butts before picking a victim to roughly finger fuck. + languidly plays with $himself, running $his hand<<if $activeSlave.missingArms == 0>>s<</if>> over the various vulnerable butts before picking a victim to roughly finger fuck. <</if>> <<case "forbidden masturbation">> @@ -7352,7 +7352,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<else>> cups your nice little buttocks <</if>> - before bending you over, bringing $his hands to your + before bending you over, bringing $his hand<<if $activeSlave.missingArms == 0>>s<</if>> to your <<if $PC.title == 0>> wide hips <<else>> @@ -8996,7 +8996,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<else>> squealing, "Ye<<s>> plea<<s>>e, <<Master>>!" <</if>> - $He stops wanking and takes $his hands away, laying $himself wide for you like a horny human buffet. You make a show of selecting, but decide on $his + $He stops wanking and takes $his hand<<if $activeSlave.missingArms == 0>>s<</if>> away, laying $himself wide for you like a horny human buffet. You make a show of selecting, but decide on $his <<if canDoVaginal($activeSlave)>> <<if $activeSlave.vagina > 2>> slutty pussy. @@ -9317,7 +9317,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<replace "#result">> <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>>, as usual, has to give the stupid slut considerable coaching to get $him to your office without getting lost. This is a near-miraculous imbecility, as the penthouse is expressly designed to make it nearly impossible to get anywhere from anywhere else without passing by the office door. $He understands orders to <<if $PC.dick == 0>>perform cunnilingus<<else>>suck a dick<</if>>, though, and gets down to it eagerly enough. When $he finishes the job, <<if $PC.dick == 0>>wipes $his mouth<<else>>$he busily swallows every drop of your ejaculate<</if>> and then looks up at you doubtfully. <<if !canTalk($activeSlave)>> - $He slowly spells out a question with $his hands, asking if $he's a good slave. + $He slowly spells out a question with $his hand<<if $activeSlave.missingArms == 0>>s<</if>>, asking if $he's a good slave. <<else>> $He mumbles a hesitant question: "<<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>, am I a good <<s>>lave?" <</if>> @@ -9658,7 +9658,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <br><<link "Train $him to be a skilled anal bottom">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and buttfuck $him every chance you get, teaching $him the finer points of taking a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up the butt. You focus entirely on your pleasure, teaching $him how to use $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anal ring to extract orgasms from cocks. This experience was hard for $him but has increased $his anal skill. + $He obeys your orders to keep $his hand<<if $activeSlave.missingArms == 0>>s<</if>> off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and buttfuck $him every chance you get, teaching $him the finer points of taking a <<if $PC.dick == 0>>strap-on<<else>>dick<</if>> up the butt. You focus entirely on your pleasure, teaching $him how to use $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anal ring to extract orgasms from cocks. This experience was hard for $him but has increased $his anal skill. <<= SkillIncrease.Anal($activeSlave, 10)>> <<= VCheck.Anal(9)>> <</replace>> @@ -9667,7 +9667,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <br><<link "Train $him to orgasm anally">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He obeys your orders to keep $his hands off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and fuck $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anus every chance you get, keeping $him desperately aroused and desperately sodomized. After some days of this, $he finally reaches a point of desperate arousal that permits $him to orgasm to prostate stimulation alone. + $He obeys your orders to keep $his hand<<if $activeSlave.missingArms == 0>>s<</if>> off $his dick, but can't hide $his disappointment and frustration. You keep a close watch on $him, and fuck $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>loose<<else>>tight<</if>> anus every chance you get, keeping $him desperately aroused and desperately sodomized. After some days of this, $he finally reaches a point of desperate arousal that permits $him to orgasm to prostate stimulation alone. <<= VCheck.Anal(9)>> <<if random(1,100) > 50>> <<set $activeSlave.fetishStrength = 10, $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1>> @@ -10675,7 +10675,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<elseif $activeSlave.dick > 0 && !($activeSlave.chastityPenis)>> <<if canAchieveErection($activeSlave)>> <<if $activeSlave.dick > 4>> - wraps $his hands around $his huge erection. + wraps $his hand<<if $activeSlave.missingArms == 0>>s<</if>> around $his huge erection. <<elseif canDoAnal($activeSlave) && $activeSlave.prostate > 0>> wraps a hand around $his throbbing erection and reaches around to finger $his butt and stimulate $his prostate.$his <<else>> @@ -10683,7 +10683,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <</if>> <<else>> <<if $activeSlave.dick > 4>> - dives for $his huge, soft cock with both hands. + dives for $his huge, soft cock with <<if $activeSlave.missingArms == 0>>both hands<<else>>$his hand<</if>>. <<else>> reaches down to fondle $his limp dick. <</if>> @@ -10697,7 +10697,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<elseif $activeSlave.chastityVagina == 1>> reaches around to finger $his butt, since $his pussy's in chastity. <<else>> - dives for $his pussy with both hands. + dives for $his pussy with <<if $activeSlave.missingArms == 0>>both hands<<else>>$his hand<</if>>. <</if>> <</if>> <<elseif $activeSlave.vagina == -1 && $activeSlave.dick == 0>> @@ -10707,7 +10707,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He reaches down and around to rub $his <<if canDoAnal($activeSlave)>>anus and <</if>>perineum. <</if>> <<else>> - brings $his hands to $his breasts to <<if $activeSlave.nipples != "fuckable">>tease $his erect<<else>>finger $his swollen<</if>> nipples. + brings $his hand<<if $activeSlave.missingArms == 0>>s<</if>> to $his breasts to <<if $activeSlave.nipples != "fuckable">>tease $his erect<<else>>finger $his swollen<</if>> nipples. <</if>> <br><br> $He's extremely pent up, and orgasms twice with <<if $PC.dick == 1>>your dick in $his mouth<<if $PC.vagina == 1>> first and $his tongue quivering along your pussylips second<</if>><<else>>$his mouth on your cunt<</if>>. The mental effects of this formative little experience are impossible to control with precision. Over the next few days, you notice that whenever <<if canSee($activeSlave)>>$he sees you<<else>>you see $him<</if>>, @@ -11595,7 +11595,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<replace "#result">> $activeSlave.slaveName is face-down on a special bench much like one used for massages<<if $activeSlave.belly >= 1500>>, though with a hole for $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> to fit into<</if>>, with $his breasts hanging down so the milkers can work away at $his nipples. As such, $his back and ass are on display as $he grunts and groans with relief. $He starts at your hand on $his back but <<if $activeSlave.devotion > 20>>quickly<<else>>slowly<</if>> relaxes. <<if canDoVaginal($activeSlave)>> - The stimulation of the milking has $his soaking wet, and $he whimpers with pleasure as you enter $his sopping pussy. $He's so wet that $his plentiful vaginal secretions make it + The stimulation of the milking has $him soaking wet, and $he whimpers with pleasure as you enter $his sopping pussy. $He's so wet that $his plentiful vaginal secretions make it <<if canDoAnal($activeSlave)>> very easy for you to switch <<if $PC.dick == 0>>your strap-on<<else>>your dick<</if>> to the cow's butt. <<= VCheck.Both()>> @@ -11607,7 +11607,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He This milk cow's vagina is protected by a chastity belt, but $his butthole isn't. You fuck it<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair. <<= VCheck.Anal()>> <<else>> - Perversely, this milk cow has no pussy, so you spit on $his ass and sodomize $his<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair. + Perversely, this milk cow has no pussy, so you spit on $his ass and sodomize $him<<if $PC.dick == 0>> with a strap-on<</if>> instead as $he bucks and grinds against the chair. <<= VCheck.Anal()>> <</if>> When $he comes, the milkers detect $his orgasm to your fucking and shunt the milk into different reservoirs. Though you've never been able to taste much difference, there's a belief out there that 'milk-cum', the squirts of milk a slave milk $girl produces when climaxing with $his <<= WrittenMaster()>>, have special aphrodisiac powers. @@.yellowgreen;It can be sold at a special premium.@@ Naturally, @@.hotpink;$his devotion to you has also increased.@@ @@ -12046,16 +12046,16 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<replace "#result">> You bake a simple cake while patiently explaining birthdays. $He slowly remembers, and <<if canSee($activeSlave)>>looks repeatedly at the date display<<else>>focuses intently on the date as $he repeats it to $himself<</if>> to ingrain $his birthday back in $his mind. When the cake is done, you quickly dust it with confectionary sugar, stand a hot wax candle in the middle of it, and invite $him to think of a wish and blow it out. $He sits on your lap and the two of you take turns feeding each other warm cake. When the cake is gone $he gets up to do the dishes and you turn to go. As you go, $he asks <<if ($activeSlave.lips > 70)>>through $his massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>through $his inconvenient oral piercings, <</if>>"<<Master>>, may I tell you what my wi<<sh>> wa<<s>>?" You nod, and $he kneels on the kitchen chair with $his eyes closed, <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $his hands spreading $his buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>." + $his hand<<if $activeSlave.missingArms == 0>>s<</if>> spreading $his buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>." <<= VCheck.Both()>> <<elseif canDoVaginal($activeSlave)>> - $his hands spreading $his buttocks; $his pussy moist and inviting. "Take me, <<Master>>." + $his hand<<if $activeSlave.missingArms == 0>>s<</if>> spreading $his buttocks; $his pussy moist and inviting. "Take me, <<Master>>." <<= VCheck.Vaginal()>> <<elseif canDoAnal($activeSlave)>> - $his hands spreading $his buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>." + $his hand<<if $activeSlave.missingArms == 0>>s<</if>> spreading $his buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>." <<= VCheck.Anal()>> <<else>> - hands to $his breasts, and mouth wide open. "To ta<<s>>te you, <<Master>>." + hand<<if $activeSlave.missingArms == 0>>s<</if>> to $his breasts, and mouth wide open. "To ta<<s>>te you, <<Master>>." <<set $activeSlave.counter.oral++, $oralTotal++>> <</if>> $He feels so much @@.hotpink;closer to you@@ than before. @@ -13463,7 +13463,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<else>> <<if $activeSlave.belly > 20>>gingerly lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>bulk onto it,<</if>> and fucks $his little ass open on the dildo. You keep $him up there until $his legs give out<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 190>>and $his <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>weight pins $him on the toy;<<else>>, and<</if>> then let $him lie down on <</if>> - the couch, telling $him to keep working the dildo with $his hands or suffer another whipping. After $he's had $his ass filled for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and be a good little anal slave. @@.gold;$He fears you,@@ and @@.lime;$his butthole has been broken in.@@ + the couch, telling $him to keep working the dildo with $his hand<<if $activeSlave.missingArms == 0>>s<</if>> or suffer another whipping. After $he's had $his ass filled for a good while, $he has no trouble taking a <<if $PC.dick == 0>>strap-on<<else>>real dick<</if>> for the first time, and is by this point too exhausted to do anything but lie there and be a good little anal slave. @@.gold;$He fears you,@@ and @@.lime;$his butthole has been broken in.@@ <<set $activeSlave.trust -= 5, $activeSlave.anus = 1>> <<= VCheck.Anal()>> <</replace>> @@ -16144,7 +16144,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <</if>> <<case "pregnant fairy">> <<if $activeSlave.height < 35>> - <<if $activeSlave.dick > 0>>lying on _hisA back as $activeSlave.slaveName gently thrusts into _himA, legs locked around $his waist. $activeSlave.slaveName enjoys running $his hands over the fairy's pregnant belly as $he leans in to suckle on the fairy's breasts. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, the pregnant belly swelling a little larger with every ejaculation.<<else>>legs tied to one another as they scissor gently, covered in sexual fluids from the waist down. $activeSlave.slaveName enjoys rubbing and kissing the pregnant belly from time to time. Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>> + <<if $activeSlave.dick > 0>>lying on _hisA back as $activeSlave.slaveName gently thrusts into _himA, legs locked around $his waist. $activeSlave.slaveName enjoys running $his hand<<if $activeSlave.missingArms == 0>>s<</if>> over the fairy's pregnant belly as $he leans in to suckle on the fairy's breasts. Below this, the slave $himself is thrusting into a 'realistic' tiny fairy doll, the pregnant belly swelling a little larger with every ejaculation.<<else>>legs tied to one another as they scissor gently, covered in sexual fluids from the waist down. $activeSlave.slaveName enjoys rubbing and kissing the pregnant belly from time to time. Below this, the slave $himself is grinding away between a 'realistic' tiny fairy doll's legs.<</if>> <<else>> cradling _hisA belly as _heA's being eaten out by an avatar of $activeSlave.slaveName, who is being double penetrated by a couple of vines. Below this, the slave $himself is performing oral on a 'realistic' tiny fairy doll pussy while being penetrated by two flexible dildos. They're an ejaculating model, and it's filled $him so completely that each thrust sends a gush of fake cum down $his legs to join the puddle on the floor. <<set $activeSlave.counter.oral++, $oralTotal++>> @@ -16671,7 +16671,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<if $activeSlave.belly >= 300000>> pull $him over $his _belly belly with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. <<else>> - fetch a pair of low stools, make $him kneel on one, and put $his hands on the other, so $he's on all fours with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. + fetch a pair of low stools, make $him kneel on one, and put $his hand<<if $activeSlave.missingArms == 0>>s<</if>> on the other, so $he's on all fours with $his udders hanging beneath $his<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. <</if>> <br><br> You swing a bucket under $his nipples and milk $him by hand, as though $he were a cow. This isn't exactly what $he had in mind, but the feeling of your hands on $his nipples, tugging the streams of milk out of $him and into the bucket beneath <<if $activeSlave.fetish == "boobs">>brings $him very close to orgasm<<else>>eventually relaxes $him<</if>>. Seeing this, you muse aloud, as though to yourself, that a little farmyard bestiality wouldn't hurt, since there's no one here but you and a dairy cow. Pawing the cow's behind possessively, you finger $him aggressively before deciding on @@ -17069,9 +17069,9 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<replace "#result">> You put as much quiet authority into your voice as you can, and explain to $him that $he is required to take $his drugs up $his ass. You do not explain any of the actual reasons why you require slaves to submit to daily machine anal, but couch your quiet explanation in terms of $his life as a slave. You tell $him that taking a solid buttfuck from a machine first thing in the morning is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he <<if $activeSlave.belly >= 300000>> - shifts onto $his _belly belly, uses $his hands to brace $himself against the impending pounding, and scoots towards the phallus. + shifts onto $his _belly belly, uses $his hand<<if $activeSlave.missingArms == 0>>s<</if>> to brace $himself against the impending pounding, and scoots towards the phallus. <<else>> - gets to $his knees, using $his hands to spread $his cheeks for the phallus. + gets to $his knees, using $his hand<<if $activeSlave.missingArms == 0>>s<</if>> to spread $his cheeks for the phallus. <</if>> Sensing that it's being offered an anus, it gently pushes inside $his rectum. Its strokes get longer and faster, <<if $activeSlave.anus > 2>>until $he's groaning under the sodomy despite $his loose ass<<elseif $activeSlave.anus > 1>>quickly gaping $his big butthole and making $him groan<<else>>making $him gasp as it stretches $his poor little asshole<</if>>. <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>$He doesn't manage to groan for long, though, since the kitchen extends another phallus to feed $him $his breakfast. Before long, $he's being spitroasted by machines.<</if>> @@ -18492,7 +18492,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <br><<link "Weight $his breasts as punishment">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You announce that you're resolved to continue growing $his breasts, and they need to be stretched out to accommodate the growth. The statement is absurd, but $he's experienced enough to know not to question it, and to @@.gold;be afraid.@@ $He's right to fear. You secure $him with $his hands over $his head, using the wrist shackles placed high on the office walls for this purpose. Then you + You announce that you're resolved to continue growing $his breasts, and they need to be stretched out to accommodate the growth. The statement is absurd, but $he's experienced enough to know not to question it, and to @@.gold;be afraid.@@ $He's right to fear. You secure $him with $his hand<<if $activeSlave.missingArms == 0>>s<</if>> over $his head, using the wrist shackles placed high on the office walls for this purpose. Then you <<if $activeSlave.nipples == "inverted">>cruelly pop $his inverted nipples out and<</if>> <<if $activeSlave.nipplesPiercing == 0>> attach a clip to each of <<if $activeSlave.nipples == "inverted">>them<<else>>$his nipples<</if>>. The clips aren't painful, not yet, but they're very robust, and the reason is immediately apparent to $him. @@ -18501,7 +18501,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<else>> give each of $his nipple rings a tug to ensure it's ready to bear some serious pulling. <</if>> - You hang a weight from each, eliciting a moan of pain. $activeSlave.slaveName struggles against the restraints that hold $his hands up high, desperately trying to find a comfortable way to stand, but it's impossible and the motion sets $his udders swaying, making the weights pulling at $his nipples even more uncomfortable. + You hang a weight from each, eliciting a moan of pain. $activeSlave.slaveName struggles against the restraints that hold $his hand<<if $activeSlave.missingArms == 0>>s<</if>> up high, desperately trying to find a comfortable way to stand, but it's impossible and the motion sets $his udders swaying, making the weights pulling at $his nipples even more uncomfortable. <<switch $activeSlave.boobShape>> <<case "perky">> $His perky tits do their best to retain their pointy shape despite the tugging. @@ -18856,9 +18856,9 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He <<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 2)>> used for reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's enormous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his cervix. The slave is gigantically pregnant. You tell $activeSlave.slaveName that this is the vaginal treatment $he can expect when pregnant; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the dildo retracts from the cow's gaping cunt, you grab the horrified slave's hands and push them to its gravid middle just in time for $him to feel a massive contraction.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants $his womb converted into an industrial component, <<elseif ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && ($dairyPregSetting == 3)>> - used for mass reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within $his are visibly forced to bulge the skin covering $his straining womb by their sisters. You tell $activeSlave.slaveName that this is the treatment $he can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the cow takes the huge dildo absentmindedly, you grab the horrified slave's hands and push them to its gravid middle forcing $him to feel the children squirming within its packed womb. $He squeals in terror at the feeling of so many babies moving under $his fingers.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants to become an industrial breeder, + used for mass reproduction by the machines, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as a dildo the size of $his forearm fucks the slave's cavernous cunt, keeping it as gaped as possible to ease birth and constantly ejaculating preparatory drugs against $his tortured cervix. The slave is absolutely enormous, more a taut sphere of a belly than a person; so pregnant that the children within $his are visibly forced to bulge the skin covering $his straining womb by their sisters. You tell $activeSlave.slaveName that this is the treatment $he can expect when pregnant here; when impregnation is required, the dildos ejaculate more than a liter of cum a minute.<<if !canSee($activeSlave)>> As the cow takes the huge dildo absentmindedly, you grab the horrified slave's hand<<if $activeSlave.missingArms == 0>>s<</if>> and push <<if $activeSlave.missingArms == 0>>them<<else>>it<</if>> to its gravid middle, forcing $him to feel the children squirming within its packed womb. $He squeals in terror at the feeling of so many babies moving under $his fingers.<</if>> You run a hand down to $activeSlave.slaveName's own middle and, patting it gently, tell $him that unless $he wants to become an industrial breeder, <<else>> - drained of $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to $his absurd nipples tug and pull with industrial power. $He can't <<if canSee($activeSlave)>>look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso<<else>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<</if>>. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.<<if !canSee($activeSlave)>> You force the horrified slave's hands onto its breasts so that $he may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.<</if>> You run a hand over to $activeSlave.slaveName's own breast and, teasing $his nipple, tell $him that unless $he wants to experience that twice a day, + drained of $his milk, you tell $activeSlave.slaveName to pay close attention. $He <<if canSee($activeSlave)>>watches<<elseif canHear($activeSlave)>>listens<<else>>freezes<</if>> in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to $his absurd nipples tug and pull with industrial power. $He can't <<if canSee($activeSlave)>>look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso<<else>>shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated<</if>>. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.<<if !canSee($activeSlave)>> You force the horrified slave's hand<<if $activeSlave.missingArms == 0>>s<</if>> onto its breasts so that $he may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.<</if>> You run a hand over to $activeSlave.slaveName's own breast and, teasing $his nipple, tell $him that unless $he wants to experience that twice a day, <</if>> $he had better behave $himself. $He nods furiously, @@.gold;terrified beyond the ability to speak.@@ <<set $activeSlave.trust -= 8>> diff --git a/src/uncategorized/REresistantmotherdaughter.tw b/src/uncategorized/REresistantmotherdaughter.tw index d884abad69e..d3c394fb258 100644 --- a/src/uncategorized/REresistantmotherdaughter.tw +++ b/src/uncategorized/REresistantmotherdaughter.tw @@ -32,7 +32,7 @@ $slaves[$i].slaveName and $his daughter are both having trouble getting acclimat <span id="result"> <br><<link "Spend the evening gently acclimating them to your ownership">> <<replace "#result">> - Though neither of the two vehemently protests your decision to have them both join you in bed, furtive uneasy glances are exchanged between the two. Since they're already naked, they clamber onto your bed before you and reluctantly kneel facing each other, leaving enough space between them for you and for them to avert their eyes to avoid the other's nakedness. They clearly assume you would start by using one of them, so they're quite taken aback when you remain standing at the edge of the bed and suggest that $slaves[$i].slaveName play with $his daughter. $slaves[$j].slaveName awkwardly flounders a little as _his2 mother's hands roam about _his2 body, but does not reel back from the intimate touching. In time you instruct $slaves[$j].slaveName to pleasure _his2 mother, but still decline to join the incestuous union unfolding on your sheets. You extend the foreplay for hours, bringing both mother and daughter to such a state of naked arousal that they begin grinding against each other uninhibitedly. They are both so desperate for release that they do not object when you finally decide to join them, instead eagerly moving to include you in their coupling. What started with $slaves[$j].slaveName awkwardly kneeling unmoving while _his2 mother sucked _his2 nipples ends with $slaves[$j].slaveName on all fours getting fucked by you while orally pleasuring $slaves[$i].slaveName. You gaze over at $slaves[$i].slaveName and $he moans and licks $his lips enticingly back at you as $slaves[$j].slaveName moans into $his fuckhole. + Though neither of the two vehemently protests your decision to have them both join you in bed, furtive uneasy glances are exchanged between the two. Since they're already naked, they clamber onto your bed before you and reluctantly kneel facing each other, leaving enough space between them for you and for them to avert their eyes to avoid the other's nakedness. They clearly assume you would start by using one of them, so they're quite taken aback when you remain standing at the edge of the bed and suggest that $slaves[$i].slaveName play with $his daughter. $slaves[$j].slaveName awkwardly flounders a little as _his2 mother's <<if $slaves[$i].missingArms == 0>>hands roam<<elseif $slaves[$i].missingArms != 3>>hand roams<</if>> about _his2 body, but does not reel back from the intimate touching. In time you instruct $slaves[$j].slaveName to pleasure _his2 mother, but still decline to join the incestuous union unfolding on your sheets. You extend the foreplay for hours, bringing both mother and daughter to such a state of naked arousal that they begin grinding against each other uninhibitedly. They are both so desperate for release that they do not object when you finally decide to join them, instead eagerly moving to include you in their coupling. What started with $slaves[$j].slaveName awkwardly kneeling unmoving while _his2 mother sucked _his2 nipples ends with $slaves[$j].slaveName on all fours getting fucked by you while orally pleasuring $slaves[$i].slaveName. You gaze over at $slaves[$i].slaveName and $he moans and licks $his lips enticingly back at you as $slaves[$j].slaveName moans into $his fuckhole. @@.mediumaquamarine;They have both become more trusting of you.@@ <<set $slaves[$i].trust += 4, $slaves[$j].trust += 4, $slaves[$i].counter.oral += 1, $slaves[$j].counter.oral += 1, $oralTotal += 2>> diff --git a/src/uncategorized/reMilfTourist.tw b/src/uncategorized/reMilfTourist.tw index 03b9b435bb4..9e5ad308d67 100644 --- a/src/uncategorized/reMilfTourist.tw +++ b/src/uncategorized/reMilfTourist.tw @@ -117,7 +117,7 @@ <<else>> "Having <<s>>e<<x>> with <<s>>lave<<s>> doe<<s>> not make you a le<<s>>bian," $he purrs. "It'<<s>> different here. Plea<<s>>e, <</if>> - fuck me. It'll be fun!" The tourist turns to stare at _him2, and _he2 offers just the right kind of plaintive expression. "O-okay," the tourist says in a tiny voice, and _milfSlave.slaveName giggles, hugging _him2 from behind. $He cups one of the tourist's breasts, and snakes $his other hand down the front of _his2 pants. "Here!?" the tourist gasps, staring straight at you and blushing even harder. You tell _him2 that that's how you do things in the Free Cities: enjoying a slave is nothing to be ashamed of. _He2 looks doubtful, but _he2 doesn't try to escape from _milfSlave.slaveName's roving hands, either. Your presence continues to bother _him2 until _milfSlave.slaveName distracts _him2 by getting _him2 to cuddle on the couch and make out, providing enough of a distraction that _he2 gets over _his2 inhibitions and orgasms rather immodestly. + fuck me. It'll be fun!" The tourist turns to stare at _him2, and _he2 offers just the right kind of plaintive expression. "O-okay," the tourist says in a tiny voice, and _milfSlave.slaveName giggles, hugging _him2 from behind. $He cups one of the tourist's breasts, and snakes $his other hand down the front of _his2 pants. "Here!?" the tourist gasps, staring straight at you and blushing even harder. You tell _him2 that that's how you do things in the Free Cities: enjoying a slave is nothing to be ashamed of. _He2 looks doubtful, but _he2 doesn't try to escape from _milfSlave.slaveName's roving hand<<if _milfSlave.missingArms == 0>>s<</if>>, either. Your presence continues to bother _him2 until _milfSlave.slaveName distracts _him2 by getting _him2 to cuddle on the couch and make out, providing enough of a distraction that _he2 gets over _his2 inhibitions and orgasms rather immodestly. <br><br> You offer _him2 some liquid courage as _he2 recovers, but _he2's rapidly getting over _his2 hesitation. As the alcohol suffuses _him2, _he2 starts stealing glances at _milfSlave.slaveName, who for $his part is being as seductive as humanly possible. Finally, the tourist mouths 'fuck it' silently, reaches over, and openly gropes the slave's ass. _milfSlave.slaveName giggles and shifts lewdly, ensuring that the tourist's hand makes a thorough tour of everything the slave has. The tourist tentatively sinks a couple of fingers into $him, and the slave shamelessly slides $himself onto the invading digits, begging to be fucked. You make a party of it, with the various slaves who come and go over the course of the evening treated to the sight of $him getting fucked by the tourist. _He2 drunkenly promises you to @@.green;tell all _his2 friends@@ how awesome your arcology is at one point, though _he2 has to take _his2 mouth off one of _milfSlave.slaveName's nipples to do so. <<set $slaves[_milfed].trust += 4, $slaves[_milfed].counter.oral += 3, $slaves[_milfed].counter.anal += 3>> diff --git a/src/uncategorized/reShowerPunishment.tw b/src/uncategorized/reShowerPunishment.tw index 92590901688..dc18bacd638 100644 --- a/src/uncategorized/reShowerPunishment.tw +++ b/src/uncategorized/reShowerPunishment.tw @@ -76,7 +76,7 @@ $activeSlave.slaveName is being very thorough. When you first appeared, $he was You strip off your suit and enter the shower. By the time you get in, $HeadGirl.slaveName's sponge scrub is almost done. _He2 turns to greet you with half-lidded eyes, well pleased with _his2 thorough scrubbing. _His2 $HeadGirl.skin shines with wet cleanliness, and _his2 $HeadGirl.nipples nipples begin to <<if $HeadGirl.nipples == "fuckable">>swell with arousal<<else>>stiffen<</if>> as _he2 sees your gaze take in _his2 nude body. _He2 brusquely orders $activeSlave.slaveName to scrub you, too, anticipating your intention. The rough, exfoliating sensation of the sponge is indeed delightful, and you close your eyes to savor the feeling as the slave rubs it up and down your calves and then the backs of your knees. <br><br> <<if $HGSeverity > 0>> - You detect tremors of fear in the slave's hands; $he knows that $he hasn't extirpated $his misbehavior, whatever it was, just yet. You let your Head Girl manage that, however, and _he2 does. When $activeSlave.slaveName is stuck in one position for a short time by the need to wash your thighs, you hear a gasp and open your eyes to the sight of your Head Girl crouched behind $him, giving $him an anal fingerfuck. When $activeSlave.slaveName is done washing you, your Head Girl holds the slave's head to your + You detect tremors of fear in the slave's hand<<if $activeSlave.missingArms == 0>>s<</if>>; $he knows that $he hasn't extirpated $his misbehavior, whatever it was, just yet. You let your Head Girl manage that, however, and _he2 does. When $activeSlave.slaveName is stuck in one position for a short time by the need to wash your thighs, you hear a gasp and open your eyes to the sight of your Head Girl crouched behind $him, giving $him an anal fingerfuck. When $activeSlave.slaveName is done washing you, your Head Girl holds the slave's head to your <<else>> When the washing reaches your shoulders, it becomes clumsier, and $activeSlave.slaveName's wet body begins to bump gently against your torso. Opening your eyes, you see that your Head Girl is taking $him as $he finishes your bath. $activeSlave.slaveName is doing $his best to do a good job as $he's fucked, and $he manages it reasonably well. When $he's done, $HeadGirl.slaveName pushes $his head down towards your <</if>> diff --git a/src/uncategorized/reStandardPunishment.tw b/src/uncategorized/reStandardPunishment.tw index 5bfdedd66ea..1d382a082f0 100644 --- a/src/uncategorized/reStandardPunishment.tw +++ b/src/uncategorized/reStandardPunishment.tw @@ -110,7 +110,7 @@ <<else>> making no move towards it. $He knows that active resistance will merely extend $his sentence, and lets you stuff $his sobbing body inside. Once $he's in, <</if>> - <<if canTalk($activeSlave)>>$he begs tearfully<<elseif $activeSlave.voice != 0>>$he tries frantically to beg<<else>>$he uses $his hands to supplicate you<</if>> as you close the lid with exquisite slowness. The harshest thing you do is keep silent, not giving $him any indication of when $he's getting out. When you finally let $him out, $he's @@.gold;almost crazy with fear@@ of ever going back in the box and, for now, @@.hotpink;willing to do almost anything@@ to avoid it. + <<if canTalk($activeSlave)>>$he begs tearfully<<elseif $activeSlave.voice != 0>>$he tries frantically to beg<<else>>$he uses $his hand<<if $activeSlave.missingArms == 0>>s<</if>> to supplicate you<</if>> as you close the lid with exquisite slowness. The harshest thing you do is keep silent, not giving $him any indication of when $he's getting out. When you finally let $him out, $he's @@.gold;almost crazy with fear@@ of ever going back in the box and, for now, @@.hotpink;willing to do almost anything@@ to avoid it. <<set $activeSlave.devotion += 4>> <<set $activeSlave.trust -= 4>> <</replace>> @@ -121,15 +121,15 @@ <<link "Give $him a solid whipping">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Since you use whipping as a standard slave punishment, there are many sets of restraints set high up on the walls for the purpose. You order $him to place $his hands in one of them, and $he + Since you use whipping as a standard slave punishment, there are many sets of restraints set high up on the walls for the purpose. You order $him to place $his hand<<if $activeSlave.missingArms == 0>>s<</if>> in one of them, and $he <<if $activeSlave.devotion > 20>> sobs with fear but obeys, obviously hoping you'll be reasonable. <<elseif $activeSlave.trust < -20>> starts to cry but doesn't let that stop $him from hurriedly obeying. $He knows that resistance will earn $him more strokes. <<else>> - breaks down and makes no move to obey, but does not resist as you take $his wrists in your hands and lift them into the restraints. + breaks down and makes no move to obey, but does not resist as you take $his wrist<<if $activeSlave.missingArms == 0>>s<</if>> in your hands and lift them into the restraints. <</if>> - The shackles can be moved up or down, and you move them up, raising the shivering, frightened $desc to the tips of $his toes. $He struggles a little to find $his balance, and is distracted when the first stroke lands on $his $activeSlave.skin buttocks. Your leather instrument is exquisitely designed and balanced to produce pain without breaking the skin or leaving a permanent mark. You tell $him to count, and $he <<if canTalk($activeSlave)>>gasps "one" through $his agony<<elseif $activeSlave.voice != 0>>grunts once, doing $his best<<else>>sticks up one finger despite $his restrained hands<</if>>. You flog $his bottom until it's pleasantly warm to the touch, and then let $him down. $He's @@.mediumaquamarine;relieved@@ at your moderation. + The shackles can be moved up or down, and you move them up, raising the shivering, frightened $desc to the tips of $his toes. $He struggles a little to find $his balance, and is distracted when the first stroke lands on $his $activeSlave.skin buttocks. Your leather instrument is exquisitely designed and balanced to produce pain without breaking the skin or leaving a permanent mark. You tell $him to count, and $he <<if canTalk($activeSlave)>>gasps "one" through $his agony<<elseif $activeSlave.voice != 0>>grunts once, doing $his best<<else>>sticks up one finger despite $his restrained hand<<if $activeSlave.missingArms == 0>>s<</if>><</if>>. You flog $his bottom until it's pleasantly warm to the touch, and then let $him down. $He's @@.mediumaquamarine;relieved@@ at your moderation. <<set $activeSlave.trust += 4>> <</replace>> <</link>> -- GitLab